0% found this document useful (0 votes)
24 views6 pages

Numerical Methods in Civil Engineering

The document provides an overview of numerical methods and algorithms used in solving mathematical problems, focusing on concepts like numerical analysis, stable algorithms, and various iteration methods. It details specific methods such as the Bisection Method, False Position Method, and Newton-Raphson Method, along with their applications. Additionally, it includes problem-solving examples related to these numerical methods.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views6 pages

Numerical Methods in Civil Engineering

The document provides an overview of numerical methods and algorithms used in solving mathematical problems, focusing on concepts like numerical analysis, stable algorithms, and various iteration methods. It details specific methods such as the Bisection Method, False Position Method, and Newton-Raphson Method, along with their applications. Additionally, it includes problem-solving examples related to these numerical methods.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

LYCEUM OF THE PHILIPPINE UNIVERSITY- LAGUNA

COLLEGE OF ENGINEERING AND COMPUTER STUDIES


BACHELOR OF SCIENCE IN CIVIL ENGINEERING

NUMERICAL SOLUTION – COMPETENCY APPRAISAL 1

Defining Numerical Methods:

Numerical Analysis - the branch of mathematics that provides tools and methods for
solving mathematical problems in numerical form. In here, we are mainly interested in
implementation and analysis of numerical algorithms for finding an approximate solution
to a mathematical problem.

Numerical algorithms - A complete set of procedures which gives an approximate


solution to a mathematical problem.

Stale Algorithms - Algorithm for which the cumulative e ect of errors is limited, so that a
useful result is generated is called stable algorithm. Otherwise, Unstable.

Numerical Iteration Method - A mathematical procedure that generates a sequence of


improving approximate solution for a class of problems i.e. the process of finding
successive approximations.

Algorithm of Iteration Method - A specific way of implementation of an iteration method,


including to termination criteria is called algorithm of an iteration method. In the problem
of finding the solution of an equation, an iteration method uses as initial guess to generate
successive approximation to the solution.

Bracketing Method – An indirect method of finding roots which require the limits between
which the root lies. e.g. Bisection method, False position method.

Open Method - These methods require the initial estimation of the solution. e.g. Newton
Raphson method.

Bisection Method - one of the bracketing methods. It is based on the “Intermediate value
theorem”. This method is also known as BOLZANO METHOD (or) BINARY SECTON
METHOD.

False Position Method - This method also known as REGULA FALSI METHOD, CHORD
METHOD, LINEAR INTERPOLATION and method is one of the bracketing methods and
based on intermediate value theorem. This method is di erent from bisection method.

Secant Method - The secant method is a simple variant of the method of false position
which it is no longer required that the function “f” has opposite signs at the end points of
each interval generated, not even the initial interval.
LYCEUM OF THE PHILIPPINE UNIVERSITY- LAGUNA
COLLEGE OF ENGINEERING AND COMPUTER STUDIES
BACHELOR OF SCIENCE IN CIVIL ENGINEERING

Problem Solving with Solution:

PROBLEM 1 (SIMPSON 1/3 RULE)

PROBLEM 2
LYCEUM OF THE PHILIPPINE UNIVERSITY- LAGUNA
COLLEGE OF ENGINEERING AND COMPUTER STUDIES
BACHELOR OF SCIENCE IN CIVIL ENGINEERING

PROBLEM 3 (NEWTON RAPHSON’S)

PROBLEM 4
LYCEUM OF THE PHILIPPINE UNIVERSITY- LAGUNA
COLLEGE OF ENGINEERING AND COMPUTER STUDIES
BACHELOR OF SCIENCE IN CIVIL ENGINEERING

PROBLEM 5

PROBLEM 6
LYCEUM OF THE PHILIPPINE UNIVERSITY- LAGUNA
COLLEGE OF ENGINEERING AND COMPUTER STUDIES
BACHELOR OF SCIENCE IN CIVIL ENGINEERING

PROBLEM 7 (NEWTON’S METHOD)

PROBLEM 8 (BISECTION METHOD)


LYCEUM OF THE PHILIPPINE UNIVERSITY- LAGUNA
COLLEGE OF ENGINEERING AND COMPUTER STUDIES
BACHELOR OF SCIENCE IN CIVIL ENGINEERING

PROBLEM 9

Common questions

Powered by AI

The intermediate value theorem is pivotal in both the bisection and false position methods as it guarantees that if a function is continuous over an interval and changes signs, a root must exist within that interval. This principle underlies the iterative narrowing process or interpolation adjustments made to approximate the root .

While both methods use interval bracketing, the false position method calculates the root approximation by assuming linear variation across the interval (i.e., linear interpolation), whereas the bisection method simply divides the interval in half based on sign changes, not function behavior .

The bisection method applies the intermediate value theorem by iteratively narrowing the interval containing the root. By selecting subintervals where the function changes sign, it ensures that a root exists within that interval, progressively zeroing in on an approximation .

Iterative refinement in numerical methods aids in minimizing operational errors by recalculating and improving approximations in engineering computations. This methodical refinement ensures errors do not aggregate excessively, providing stable and reliable results crucial for sensitive engineering operations .

Numerical iteration methods, like those used in civil engineering computations, allow for successive approximations that can be refined until a predetermined stability criterion is met. This iterative refinement ensures high precision solutions that are crucial for engineering tasks sensitive to numerical stability, avoiding cumulative error impacts .

An accurate and strategically chosen initial guess is essential in methods like Newton Raphson or Secant because it can significantly affect convergence. A guess close to the actual root generally results in faster, more reliable convergence, whereas a poor guess may lead to divergence or convergence to an incorrect solution .

A stable algorithm is characterized by its ability to limit the cumulative effect of errors, ensuring that the approximate solution remains useful. In contrast, an unstable algorithm amplifies errors, potentially leading to inaccuracies in the computed solution .

The Newton-Raphson method offers rapid convergence speed, often reaching a high precision quickly if the initial guess is close to the root. However, it can be computationally intensive due to its requirement of calculating derivatives and may fail to converge for poor initial guesses or if the function is not well-behaved near the root .

A complete numerical algorithm entails a defined set of procedures addressing initialization, iteration, and termination decisions to provide an approximate solution with controlled errors. Its structure often includes stability checks, convergence criteria, and iterative processes that optimize solution accuracy and computational efficiency .

The secant method is a variant of the false position method that does not require the function to have opposite signs at the interval endpoints. Instead, it interpolates based on the function's values at the history of previously computed points, allowing more flexibility in root-finding .

You might also like