Re: TIB: lots of help needed
[Prev][Next][Index][Thread]
Re: TIB: lots of help needed
>
>Well, if it doesn't matter maybe you can figure it out.
>
>Solver(cos X = (y^2 + z^2 - x^2) / (2yz),X,0.5)
>
>I do that and i have 0 already in X, and it tells me my guess is bad or
>something. I think error message 29. What's up with that?
>
The "0.5" is your guess. It is not close enough to the right answer. Try
2, 3, or anything bigger.
Another problem is that the equasion must equal zero. Try:
Solver(((y^2 + z^2 - x^2) / (2yz))-cos X,X,0.5)