Trying to find the value for t which that equation will come out to zero
in Calculus Answers by

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register.

2 Answers

How do u solve ((t^2)/2)-cost-1 for 0

 

Use Newton-Raphson method.

With the NR method we have the iteration formula,

t_(r+1) = t_r – f(t_r) / f’(t_r)

where f(t) = (t^2)/2 – cos(t) -1

and f‘(t) = t + sin(t).

The function, f(t) is symmetric about t = 0 (for small t < π/2). So let us choose small values of t and see how f(t) varies

t |  0  |    1    |     2    |

y | -2 |-1.04 |1.414 |

There is a change of sign in y for values of t between t = 1 and t = 2. Do it again for smaller increments.

t |   1.2   |   1.4   |  1.6   |

y | -0.64 | -0.19 | 0.31 |

And now our change of sign in y is between t = 1.4 and t = 1.6. So choose our starting iterative value for t as t_0 = 1.5.

 

r             t_r                       f(t_r)                   f’(t-r)                   t_(r+1) = t_r – f(t_r) / f‘(t_r)

0            1.5                       0.0543                 2.4975                 1.4783

1            1.4783                 2.544x10^(-4)    2.4740                 1.47817

2            1.47817              5.777x10^(-9)    2.4739                 1.47817

The last two results (1.47817) are identical to the 5th decimal place.

Accepting this as sufficiently accurate, we can state that our

expression, f(t), is solved for zero when t = 1.47817

by Level 11 User (81.5k points)

You could use Newton's iterative Method and calculus.

First, write f(t)=t2/2-cos(t)-1. Note that t must be measured in radians (not degrees).

Now differentiate: df/dt=f'(t)=t+sin(t).

Newton's Method is:

tn+1=tn-f(tn)/f'(tn) where tn is a value close to where we would expect to find t, the solution of the equation f(t)=0. Each iteration, t1, t2, etc., should bring us closer to the solution for t.

To get the process started we need t0. To find such a value close to the solution t, we could sketch a graph or we could just substitute an arbitrary value for t0. We can't start with t=0 because f'(0)=0 and we would have zero as a denominator (division by zero is not permitted). Let's start with t=1 (radian).

We need a calculator to find each iteration.

t1=t0-f(t0)/f'(t0)=1-f(1)/f'(1)=1-(0.5-cos(1)-1)/(1+sin(1))=1.56493.

t2=t1-f(t1)/f'(t1)=1.47969, t3=1.47817, t4=1.478170266, t5=1.4781702664, t6=1.47817026643.

Depending on how much accuracy we need the process is continued, but we'll take t=1.47817 to be a fairly accurate solution. However, we're not finished yet, because t2=(-t)2 and cos(t)=cos(-t), which implies that the full solution has to be t=±1.47817, making two solutions for t (what's true for t must also be true for -t).

A graph would show the two solutions approximately at t=-1.5 and t=1.5. We could have used either of these values for t0 and arrived at the solution for t much quicker. For example, t0=1.5, t1=1.47827, t2=1.47817.

by Top Rated User (1.2m points)

Related questions

1 answer
1 answer
asked May 2, 2019 in Calculus Answers by anonymous | 505 views
1 answer
Welcome to MathHomeworkAnswers.org, where students, teachers and math enthusiasts can ask and answer any math question. Get help and answers to any math problem including algebra, trigonometry, geometry, calculus, trigonometry, fractions, solving expression, simplifying expressions and more. Get answers to math questions. Help is always 100% free!
87,516 questions
100,279 answers
2,420 comments
732,212 users