solve equation in Matlab -



solve equation in Matlab -

i trying solve equation: 1000^x = 0.5* 512^x + 0.5* 1728^x wonder why next code not work.

syms x eqn = (power(1000,x) == 0.5* power(512,x) + 0.5* power(1728,x)); solve(eqn, x)

matlab gives me x=0 solution, however, expecting 1/3 one. there way can constrain answer.

matlab equation

Comments

Popular posts from this blog

php - How to pass multiple values from url -

xslt - DocBook 5 to PDF transform failing with error: "fo:flow" is missing child elements. Required content model: marker* -

database - php search bar when I press submit with nothing in the search bar it shows all the data -