Newton's Iteration Method
Author: Tianjiang Shuo
Website: https://cislunarspace.cn
Definition
Newton's iteration method (also known as the Newton-Raphson method) is a classical numerical method for finding the roots of a nonlinear equation . Its fundamental idea is to expand the nonlinear equation in a Taylor series around the current iterate, retain the linear part as an approximation, and successively approach the true solution.
Core Elements
Basic Formula
Assuming is continuously differentiable on an interval containing , the linear approximation of the Taylor expansion yields the iteration formula:
Geometric Interpretation
The geometric meaning of Newton's iteration method is: draw the tangent to at the point , and the intersection of this tangent with the -axis gives the next iterate . For this reason, it is also called the tangent method.
Application in Trajectory Design
Trajectory design problems can be reduced to finding the roots of a nonlinear system . For a ballistic missile, the design variables are the launch azimuth and the pitch program angle rate , and the terminal constraint is zero impact point deviation:
Partial Derivative Computation
The accuracy of partial derivatives significantly affects convergence. Common methods:
| Method | Characteristics | Computational Cost |
|---|---|---|
| Finite difference | Simple to implement, sensitive to step size selection | Low (1 extra trajectory per parameter) |
| Richardson extrapolation | High accuracy, insensitive to step size | High (4 extra trajectories per parameter) |
The finite-difference partial derivative approximation:
Convergence Properties
| Property | Description |
|---|---|
| Fast convergence | Local superlinear convergence |
| Sensitive to initial guess | Poor initial guess may cause divergence |
| Finds a feasible solution | Only locates a solution satisfying the constraints, not necessarily the optimal one |
Application Value
Newton's iteration method is the core numerical method for powered-phase trajectory design of ballistic missiles and launch vehicles. By reformulating the trajectory design problem as a nonlinear equation system, it can rapidly determine the flight program angle and launch azimuth that satisfy terminal constraints. The method is simple to implement and converges quickly, making it widely used in engineering.
Related Concepts
References
- Zheng Wei, An Xueying, Zhou Xiang, He Ruizhi. Aerospace Flight Mechanics (空天飞行力学)[M]. National University of Defense Technology, 2026.
- Jia Peiran, Chen Kejun, et al. Long-Range Rocket Ballistics (远程火箭弹道学)[M]. National University of Defense Technology Press.
