MATLAB: How to find theta_k in terms of theta_i and theta_j in the following formula

numerical solution

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)}

Best Answer

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)