answersLogoWhite

0


Best Answer

There are 2 main methods for fixed point iteration, the Newton-Raphson method, and the Secant method.

This method uses the formula, xn+1 = xn - f(xn) / f'(xn),

where xn is the initial point, f(xn) is the value of the function at that point, and f'(xn) is the value of the differentiated function at that point. Plug all these values into the above equation to get xn+1, which then becomes the next initial point. Repeat until you get a point within an acceptable degree of error.

the formula for this method is, xn+1= xn - (f(xn)(xn - xn-1)) / (f(xn) - f(xn-1)).

With this formula you do not need the differentiated form of the function, making this a better method than the N-R for functions difficult to differentiate. However you do need two initial points for this method to work (xn and xn-1). Again just plug the appropriate values into the formula to generate the next point approximation.

NB: with both of these methods be careful which initial point you choose, especially with the N-R method, as depending on the function the approximation iterations can go out of control and zoom away from the point you're trying to find.

Also, a note on errors, you can sometimes get a better approximation by fiddling with your function a bit and reducing the amount of calculations needed. For example if you have two equivalent functions, but one takes 3 calculations to get a value and the other takes 6, the latter takes more work and will generally give a bigger error than the previous. Usually this error increase is only marginal, but depending on the function and the values used, the potential error can be huge. This only needs to be taken into account though if you want extremely accurate results. (Things to look out for if trying to reduce error: subtracting near equal numbers, dividing by a small number or multiplying by a large number, cancellation of significant figures)

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Fixed point iteration methods plus algorithm?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

What is the square root of 54?

Approximately 7.34847, rounded to 5dp. The square root of any number can be found through the Newton-Raphson and Secant fixed point iteration methods. See links below for more info.7.3484692


Is there an intuitive and useful explanation for the fact that the fixed point of natural cosine is 0 point 7390851332?

It's not. A fixed point is where the function crosses the axis and so the (first) fixed point of cosine is pi/2 in radians, 90 in degrees and 100 in grad. I say first fixed point because it has another fixed point at 3pi/4 in rad, 270 in deg and 300 in grad. To show it by iteration with rad, use the N-R equation xn+1=xn- f(xn)/f'(xn) which gives us xn+1=xn+cos(xn)/sin(xn) if we start with an initial point x0=pi/4=0.785398163 then the iterations give us: x1=1.785398163 x2=1.567440065 x3=1.570796339 x4=1.570796327=pi/2 to 10 s.f. There's some confusion here about the phrase "fixed point". 0.7390851332 is a fixed point in the sense that cos(0.7390851332)=0.7390851332 . This is not to be confused with stationary point.


What is a fixed point that you use to draw a circle is called as?

The fixed point that is located in the center of a circle and is used as the guiding point to draw it is called the "point of origin".


Circle and its elements?

A circle is the locus of a point which moves such that its distance from a fixed point is constant. .The fixed point is centre and fixed distance is radius of circle. Elements of circle are centre, radius and circumference.


What is the name of a simple machine that ia a bar that pivots at a fixed point?

A lever. The fixed point is called the fulcrum.

Related questions

What is the square root of 54?

Approximately 7.34847, rounded to 5dp. The square root of any number can be found through the Newton-Raphson and Secant fixed point iteration methods. See links below for more info.7.3484692


Is there an intuitive and useful explanation for the fact that the fixed point of natural cosine is 0 point 7390851332?

It's not. A fixed point is where the function crosses the axis and so the (first) fixed point of cosine is pi/2 in radians, 90 in degrees and 100 in grad. I say first fixed point because it has another fixed point at 3pi/4 in rad, 270 in deg and 300 in grad. To show it by iteration with rad, use the N-R equation xn+1=xn- f(xn)/f'(xn) which gives us xn+1=xn+cos(xn)/sin(xn) if we start with an initial point x0=pi/4=0.785398163 then the iterations give us: x1=1.785398163 x2=1.567440065 x3=1.570796339 x4=1.570796327=pi/2 to 10 s.f. There's some confusion here about the phrase "fixed point". 0.7390851332 is a fixed point in the sense that cos(0.7390851332)=0.7390851332 . This is not to be confused with stationary point.


Algorithm for drawing circle in context of computer graphics?

Bresham's Mid point circle drawing algorithm.


What is an yes or no decision point in an algorithm?

A boolean expression.


The center of a circle is a example of what?

A point. In fact it is fixed point and the locus of all points, in a plane that is a fixed distance from that fixed point defines the circle.


What is the fixed point on a lever that does not move?

The fulcrum is the fixed part of a lever. (the pivot point)


What is lower fixed point?

upper fixed point is a temperature of stem from water boiling and standards atmospheric pressure lower fixed point is the temperature of pure melting ice.


Difference between Bresenham and midpoint circle drawing algorithm?

what is difference between mid-point and bresenhams circle algorithm what is difference between mid-point and bresenhams circle algorithm bresenhams circle algorithm results in a much more smoother circle,comparred to midpoint circle algorithm..In mid point,decision parameter depends on previous decision parameter and corresponding pixels whereas in bresenham decision parameter only depends on previous decision parameter...


What lever rotates around a fixed point?

A lever is a stiff structure that rotates around a fixed point. The fixed point around which a lever rotates is fulcrum.


What are the differences between Bresenham's line algorithm and Bresenham's circle algorithm?

These two algorithms are almost completely different. The only real similarity is that they are each designed to use only integer addition/subtraction and multiplication, avoiding expensive division and floating point operations.


What is a fixed point that you use to draw a circle is called as?

The fixed point that is located in the center of a circle and is used as the guiding point to draw it is called the "point of origin".


Circle and its elements?

A circle is the locus of a point which moves such that its distance from a fixed point is constant. .The fixed point is centre and fixed distance is radius of circle. Elements of circle are centre, radius and circumference.