Skip to main content
7-Bedrock
June 20, 2022
Solved

Not getting result

  • June 20, 2022
  • 2 replies
  • 1168 views

I am trying to solve equation symbolically but when i try to evaluate it gives me error 

Best answer by Werner_E

Why would you use the symbolic "solve" if you are just after numeric result?

You may use a solve block with "find" or the "root" command.

Werner_E_0-1655763634344.png

EDIT: Sorry, I combined the two ways to use the "root" function in the above pic.

So you may either omit the guess value or you may omit the provided limits 1 and 100. We sure don't need both of them 😉

 

2 replies

23-Emerald IV
June 20, 2022

You did not get the result you expected because you did not assign a value to beta. If you assign the result of the symbolic solve to beta, you do assign it a value:

LucMeekes_0-1655759863687.png

Then you can:

LucMeekes_1-1655759885941.png

 

Success!
Luc

Werner_E25-Diamond IAnswer
25-Diamond I
June 20, 2022

Why would you use the symbolic "solve" if you are just after numeric result?

You may use a solve block with "find" or the "root" command.

Werner_E_0-1655763634344.png

EDIT: Sorry, I combined the two ways to use the "root" function in the above pic.

So you may either omit the guess value or you may omit the provided limits 1 and 100. We sure don't need both of them 😉