Boomerang

Calculus Level 3

Solve for x > 0 x>0 and answer up to four decimal places.

x = x 5 + x 10 + x 100 \large x=\sqrt [ 5 ]{ x } +\sqrt [ 10 ]{ x } +\sqrt [ 100 ]{ x }


The answer is 3.4222.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

David Holcer
Jun 15, 2018

The following (python3) code automates the Newton method for 15000 trials to give an accurate value of x.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
def f(x):
    return x**(1/5)+x**(1/10)+x**(1/100)-x
def f_prime(x):
    return (1/5)*x**(-4/5)+ (1/10)*x**(-9/10) + (1/100)*x**(-99/100) -1

x_n=1
i=0
lim=15000
while i<lim:
    x_n=x_n-(f(x_n)/f_prime(x_n))
    i+=1
print(x_n)

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...