CREATING THE CONTENT ON PROJECT WORK OF NUMERICAL ANALYSIS AND DESIGN EXPLANATION OF CONCEPTS ,ALGORITHM AND FLOWCHARTS
PICARD'S METHOD:Explanation,algorithm and flowchart
Get link
Facebook
X
Pinterest
Email
Other Apps
PICARD'S Method
ThePicard’smethod is an iterative method and is primarily used for approximating solutions to differential equations.
This method of solving a differential equation approximately is one of successive approximation; that is, it is an iterative method in which the numerical results become more and more accurate, the more times it is used.
The Picard’s iterative method gives a sequence of approximations Y1(x), Y2(x), …Yk(x) to the solution of differential equations such that the nth approximation is obtained from one or more previous approximations.
The Picard’s iterative series is relatively easy to implement and the solutions obtained through this numerical analysis are generally power series.
ALGORITHM:
Step 1: An approximate value of y (taken, at first, to be a constant) is substituted into the right hand side of the differential equation: dy/dx= f(x, y).
Step 2: The equation is then integrated with respect to x giving y in terms of x as a second approximation, into which given numerical values are substituted and the result rounded off to an assigned number of decimal places or significant figures.
Step 3: The iterative process is continued until two consecutive numerical solutions are the same when rounded off to the required number of decimal places.
Newton raphson method: Newton-Raphson method, also known as the Newton’s Method, is the simplest and fastest approach to find the root of a function. It is an open bracket method and requires only one initial guess. The C program for Newton Raphson method presented here is a programming approach which can be used to find the real roots of not only a nonlinear function, but also those of algebraic and transcendental equation s. Newton’s method is often used to improve the result or value of the root obtained from other methods. This method is more useful when the first derivative of f(x) is a large value. The programming effort for Newton Raphson Method in C language is relatively simple and fast. The convergence is the fastest of all the root finding methods discussed in Numerical Methods Tutorial section – the bisection method , the secant method and the regula-falsi method . Features of Newton Raphson Method: T...
Gauss elimination method Gauss Elimination method can be adopted to find the solution of linear simultaneous equations arising in engineering problems. In the method, equations are solved by elimination procedure of the unknowns successively. The method overall reduces the system of linear simultaneous equations to an upper triangular matrix. Then backward substitution is used to derive the unknowns. This is the key concept in writing an algorithm or program, or drawing a flowchart for Gauss Elimination. Partial pivoting or complete pivoting can be adopted in Gauss Elimination method. So, this method is considered superior to the Gauss Jordan method . In the Gauss Elimination method algorithm and flowchart given below, the elimination process is carried out until only one unknown remains in the last equation. It is straightforward to program, and partial pivoting can be used to control rounding errors. Gauss Elimination Algorithm: Start Declare the variables and read the ord...
FIXED POINT ITERATION Iteration method, also known as the fixed point iteration method, is one of the most popular approaches to find the real roots of a nonlinear function. It requires just one initial guess and has a fast rate of convergence which is linear. These algorithm and flowchart presented here and the iteration method itself are used to determine the real roots of functions in the form of an infinite series such as the geometric series, arithmetic series, Taylor’s series, and others. Similar to the Newton-Raphson method , both the algorithm and flowchart in case of iteration method require one initial guess. And, just like the bisection method , this method has slow and linear convergence. Iterative method is also referred to as an open bracket method or a simple enclosure method. It is based on modification approach to find the root of the function. Overall, it gives good accuracy just like the other methods. A function f(x) = 0 is solved by the assumed ini...
Comments