How to find theta_k in terms of theta_i and theta_j in the following formula
2 views (last 30 days)
Show older comments
Hayam Wahdan
on 21 Dec 2019
Commented: Walter Roberson
on 22 Dec 2019
Theta_k *sqrt(1+theta_k^2) + arcsinh(theta_k) = {theta_j* sqrt(1+theta_j^2)+arcsinh(theta_j)}+{theta_i * sqrt(1+theta_i^2)+arcsinh(theta_i)}
0 Comments
Accepted Answer
Walter Roberson
on 21 Dec 2019
F = @(theta_k) (theta_k .* sqrt(1+theta_k.^2) + asinh(theta_k)) - ( (theta_j .* sqrt(1+theta_j.^2) + asinh(theta_j)) + (theta_i .* sqrt(1+theta_i.^2) + asinh(theta_i)));
guess = rand();
fsolve(F, guess)
2 Comments
Walter Roberson
on 22 Dec 2019
What are the initial values for theta_i and theta_j ?
Perhaps you did not define theta_i and theta_j before you defined F.
If you are trying to find a symbolic form for theta_k in terms of unresolved variables theta_i and theta_k then you are not going to be able to do that, at least not in a closed form.
More Answers (0)
See Also
Categories
Find more on Special Functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!