Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 3 years ago

keko gravatar image

This expression has no analytical solution, therefore you need to solve it numerically. For that, you can use find_root:

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

which will give you,

1.0835990137881888
click to hide/show revision 2
No.2 Revision

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