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

Project Assignment

The document discusses the Newton-Raphson method for finding roots of equations numerically. It covers the theory, algorithm, practical considerations, applications in various fields like engineering and limitations of the method.

Uploaded by

floagadir33
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views6 pages

Project Assignment

The document discusses the Newton-Raphson method for finding roots of equations numerically. It covers the theory, algorithm, practical considerations, applications in various fields like engineering and limitations of the method.

Uploaded by

floagadir33
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

Faculty of science and natural sciences

Department of : energy systems engineering

Project assignment

Mouaze lamine hamadi


186330
Abstract

A potent numerical methodology for resolving equations and locating function roots is the Newton-
Raphson method. The history, underlying ideas, and useful applications of the Newton-Raphson method
are all thoroughly covered in this study. Along with practical suggestions and implementation
information, the paper also examines the method's advantages and disadvantages. The article also
discusses typical difficulties and offers suggestions for enhancing the effectiveness of the strategy. The
conclusion underlines the importance of the Newton-Raphson method in numerous disciplines while
summarizing the main findings. A list of resources is then given for additional research on the subject.

Introduction

A successful iterative procedure for approximating equation solutions and locating function roots is the
Newton-Raphson method, sometimes referred to as Newton's method. The approach was separately
created by Sir Isaac Newton and Joseph Raphson and has since grown to be a key resource in
computational mathematics and numerical analysis. The Newton-Raphson technique falls under the
category of open methods, in which an initial hypothesis is improved by iterative refinement to converge
towards the desired outcome.

A thorough grasp of the Newton-Raphson method, its theoretical underpinnings, and its real-world
applications is the goal of this report. We want to give readers the knowledge they need to use the
approach effectively across a range of problem domains, therefore we delve into the method's
complexities.

Newton-Raphson Method: Theory and Algorithm

The idea of linear approximation serves as the foundation for the Newton-Raphson approach. It use the
tangent line to iteratively approach a function's root. The method incrementally improves the original
estimate until a suitable level of accuracy is reached by leveraging the slope and location of the tangent
line. The convergence analysis, step-by-step implementation procedure, and mathematical formulation of
the Newton-Raphson method are all covered in this section.
Although the Newton-Raphson method is an effective tool for locating roots, its practical application
necessitates careful attention to a number of parameters. This section looks at practical issues like
choosing a suitable initial guess, dealing with various function types, handling complex roots, and
methods for spotting convergence or divergence. Furthermore, methods for preventing hazards like

We examine overshooting the root and division by zero. Analysis is also done on how round-off mistakes
and computational constraints affect the effectiveness of the method.

Practical Applications

The Newton-Raphson method has been widely applied in solving various equations found in many fields.
This section contains additional practical examples demonstrating the versatility and usefulness of this
method.

In electrical engineering, the Newton-Raphson method is used to solve complex circuit equations such as
nonlinear equations encountered when analyzing electronic circuits. This method allows you to
determine the steady-state behavior of circuits containing nonlinear components, so that voltage and
current distributions can be accurately predicted.

This is especially useful when analyzing circuits containing diodes, transistors, and other nonlinear
devices. The Newton-Raphson method is useful for optimizing circuit performance, designing voltage
regulators, and analyzing power flow in power grids.

the relationship between temperature, pressure, and other factors is frequently described by
intricate equations in thermodynamic systems.

Equations like the equations of state, the equations of heat transfer, and the equations of energy
balance can all be solved using the Newton-Raphson method in thermodynamic calculations. These
calculations are essential in disciplines like chemical engineering, mechanical engineering, and
material science where accurate thermodynamic property predictions are necessary for process
optimization, energy efficiency analysis, and material characterization.

Control Systems
Control engineering often deals with nonlinear equations that describe the behavior of dynamic systems.
The Newton-Raphson method is used to solve equations involved in control system analysis and design.
This allows you to determine the stability and performance of your control system by finding the roots of
the characteristic equation or the solution of the state-space equation. This method plays an important
role in designing robust and efficient control algorithms for applications such as robotics, aerospace
systems, and industrial automation.

Convergence to Local Solutions

. The Newton-Raphson method converges to a solution based on the local behavior of the function.
When there are multiple zeros, or when searching for global extrema in an optimization problem, you run
the risk of converging to a local solution instead of the desired global solution. Strategies such as using
multiple initial guesses and combining Newton-Raphson methods with global optimization algorithms
can mitigate this problem.

Consider the equation: f(x) = x^3 - 5x + 1

To solve this equation using the Newton-Raphson method, we need to follow these steps:

1. Define the function f(x) and its derivative f'(x).

 f(x) = x^3 - 5x + 1

 f'(x) = 3x^2 - 5

2. Choose an initial guess, x_0.

3. Iterate using the Newton-Raphson formula until convergence is achieved:

 x_(n+1) = x_n - f(x_n) / f'(x_n)

4. Repeat the iteration until the desired accuracy is reached.

Example 2: Finding the Root of a Polynomial Function

Consider the polynomial function: f(x) = 2x^3 - 7x^2 + 3x - 6

To find the root(s) of this function using the Newton-Raphson method, we follow similar steps as in
Example 1:

1. Define the function f(x) and its derivative f'(x).

 f(x) = 2x^3 - 7x^2 + 3x - 6

 f'(x) = 6x^2 - 14x + 3


2. Choose an initial guess, x_0.

3. Iterate using the Newton-Raphson formula until convergence is achieved:

 x_(n+1) = x_n - f(x_n) / f'(x_n)

4. Repeat the iteration until the desired accuracy is reached.

Note: The convergence and accuracy of the Newton-Raphson method depends on the choice of initial
guess, the nature of the function, and the presence of multiple zeros or singularities. Careful
consideration and experimentation may be required to ensure successful convergence.

These equations are the starting point for applying the Newton-Raphson method. However, it is
important to adapt the equations to your specific problem by properly defining the function and its
derivatives.

Conclusion

The Newton-Raphson method is a powerful numerical algorithm for solving equations and finding roots
of functions. Since this method is based on linear approximation and iterative refinement, it has proven
versatile and widely applicable in various fields such as mathematics, physics, engineering, economics
and finance. The Newton-Raphson method provides an accurate solution with relatively fast convergence
by iteratively approximating the roots.

This report provides a comprehensive overview of the Newton-Raphson method, covering its theoretical
principles, algorithm implementation, practical considerations, and optimization techniques. The
advantages of this method such as efficiency and accuracy and its practical applications in various fields
were emphasized. In addition, this report discussed limitations and challenges associated with this
method, highlighting the importance of careful selection of initial estimates and potential problems in
converging to local solutions.

To maximize the effectiveness of the Newton-Raphson method, practitioners should consider the nature
of the problem at hand, choose appropriate initial guesses, and implement convergence criteria. When
dealing with complex equations or searching for global extrema, it is also important to recognize
alternative methods such as bracket methods and global optimization algorithms.

In conclusion, the Newton-Raphson method remains a valuable tool for numerical analysis, providing
efficient and accurate solutions to equations and root-finding problems. Its widespread use and
adaptability make it an indispensable tool for scientists, engineers, and mathematicians working in
diverse disciplines.

References

Burden, R. L., Faires, J. D., & Burden, A. M. (2015). Numerical Analysis (10th ed.). Cengage Learning.

Chapra, S. C., & Canale, R. P. (2014). Numerical Methods for Engineers (7th ed.). McGraw-Hill Education.

Kincaid, D., & Cheney, W. (2012). Numerical Analysis: Mathematics of Scientific Computing (3rd ed.).
American Mathematical Society.

Quarteroni, A., Sacco, R., & Saleri, F. (2010). Numerical Mathematics (2nd ed.). Springer.

Stoer, J., & Bulirsch, R. (2013). Introduction to Numerical Analysis (3rd ed.). Springer.

Trefethen, L. N., & Bau, D. (1997). Numerical Linear Algebra. Society for Industrial and Applied
Mathematics.

You might also like