Processing math: 100%
Ask Your Question
0

how to solve an equation including natural log

asked 3 years ago

BG gravatar image

I am attemping to solve this equation for X:

1=lnX/0.08//x-0.08

I re-arranged to

x-0.08 = ln x/0.08

then:

0.08X-0.0064 = ln X

X = ?

this is where I am stuck.

Any suggestions?

Preview: (hide)

Comments

For future questions you may ask, I suggest that you use LaTeX to write an equation, since the first expression is not very clear:

1=ln(x)0.08(x0.08)

keko gravatar imagekeko ( 3 years ago )

2 Answers

Sort by » oldest newest most voted
2

answered 3 years ago

Max Alekseyev gravatar image

updated 3 years ago

Setting Y:=(lnX+0.0064)=ln(e0.0064X), we get an equation: YeY=0.08e0.0064, implying that Y=W(0.08e0.0064), where W is Lambert W function. Then X=eW(0.08e0.0064)0.0064.

In Sage we can define a function that computes X depending on a branch of W:

def X(branch=0):
    return exp(-lambert_w(branch, -0.08/exp(0.0064)) - 0.0064 )

Then X(0) gives 1.08359901378819, X(-1) gives 48.6340483659129, and other branches give various complex solutions.

Preview: (hide)
link
1

answered 3 years ago

keko gravatar image

updated 3 years ago

This expression has no analytical solution, therefore you need to solve it numerically. For that, you can use find_root in a given range 0<x<2:

sol = find_root(0.08*x-0.0064 == log(x), 0,2); sol

which will give you,

1.0835990137881888
Preview: (hide)
link

Comments

1

It does have an analytical solution in terms of Lambert W function.

Max Alekseyev gravatar imageMax Alekseyev ( 3 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 3 years ago

Seen: 830 times

Last updated: Nov 15 '21