mmmmhhh!!!
in Other Math Topics by Level 3 User (4.0k points)

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.

1 Answer

Question: solve for x from 2logx=x/25.

1st) 2.log(x) = log(x^2)

2nd) log_b(a) = c means, by definition, that a = b^c

3rd) so, log_10(x^2) = (x/25) means that x^2 = 10^(x/25)

Use the Newton_Raphson method to solve this

Let f(x) = x^2 - 10^(x/25)

Then f'(x) = 2x - (1/25)*10^(x/25)*ln(10)

Finding a starting value for x0

x=1:   f(x) = 1 - 10^(0.04) = 1 - 1.1 = -0.1

x = 2:  f(x) = 4 - 10^(0.08) = 4 - 1.2 = 2.8

There is a change of sign in f(x) from -0.1 to +2.8 between x = 1 and x = 2.

So the root lies in this range. Start the iterations with x0 = 1.

The iteration is:

x_(n+1) = x_n - f(x_n) / f'(x_n), i.e.

x_(n+1) = x_n - {x_n^2 - 10^(x_n/25)} /{2x_n - (1/25)*10^(x_n/25)*ln(10)}

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

0    1                     -0.96478196e-1        1.899010626        1.050804453

1    1.050804453   0.002569069            2.000145869        1.049520012

2    1.049520012   0.000001643           1.997588989         1.049519190

3    1.049519190

To 5 dp, we have the solution as: x3 = 1.04952

by Level 11 User (81.5k points)

Related questions

1 answer
asked Apr 7, 2013 in Trigonometry Answers by anonymous | 2.2k views
1 answer
asked Apr 26, 2014 in Algebra 2 Answers by Big D | 1.1k views
1 answer
asked Feb 15, 2013 in Algebra 2 Answers by anonymous | 844 views
1 answer
asked Feb 3, 2013 in Algebra 2 Answers by anonymous | 748 views
1 answer
asked Apr 16, 2014 in Other Math Topics by anonymous | 578 views
1 answer
0 answers
asked Mar 12, 2012 in Algebra 2 Answers by anonymous | 686 views
1 answer
asked May 11, 2014 in Other Math Topics by Londa Lucas | 1.5k views
1 answer
asked Jan 12, 2014 in Calculus Answers by Paulared Level 1 User (140 points) | 765 views
1 answer
asked Jul 20, 2013 in Calculus Answers by shamil | 700 views
1 answer
asked Jun 27, 2013 in Calculus Answers by anonymous | 572 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,285 answers
2,420 comments
735,844 users