PDA

View Full Version : how do you get rid of the SIN() function to solve for x?


r3dxP
Oct17-05, 05:22 AM
i have x*sin(x/2) - 18/pi =0
and i need to solve for x..
how in the heck can i get rid of that sin() function? very confused.. any help will be appreicated..!
btw.. i need the answer ASAP! thanks alot guys

Fermat
Oct17-05, 05:41 AM
Can you use newton's method of approximation ?

r3dxP
Oct17-05, 05:42 AM
i guess you can, could u explain how i would do that? and give me the answer for x=? thanks

Fermat
Oct17-05, 06:08 AM
i guess you can, could u explain how i would do that? and give me the answer for x=? thanks
Here's a good description (http://en.wikipedia.org/wiki/Newton's_method) and an example of newton's method of approximation.
You will have to find the initial starting point, x0 -- the firstapproximation -- yourself.

To do so, make up a table of x and f(x) values, where f(x) = x*sin(x/2) - 18/pi.
Use values of x like: pi, 2pi, 3pi, ... until you get a change in the sign of f(x). That means that the curve, f(x), has crossed the x-axis, and therefore has been, at some point, equal to zero between the two x-values that gave the change of sign.

Take half-way between the two x-values as your first approximation, x0. You can get a closer approximation to x0 if you are familiar with interpolation. But that might be a bit of overkill at this point.

r3dxP
Oct17-05, 07:31 AM
thanks alot. i just figured out that i can just graph it with ti83plus, then go2 calc and use the 'zero' function :) thanks for the help

hotvette
Oct17-05, 02:47 PM
Even though you have the solution from the TI, here are additional comments that might be useful. Since this function is periodic, it will cross y=0 many times (see thumbnail). Newton's method works extremely well and converges very quickly on the solution, provided the starting guess of the solution is sufficiently close. Another option is bi-section, which is computationally much simpler, but takes longer to converge to the solution. Either method can easily be done w/ Excel.