(13.1^2-b^2 15.2^2 30^2)/(2*1​3.1*15.2)=​1.461

2 views (last 30 days)
THARUN KONDURU
THARUN KONDURU on 3 Dec 2019
Answered: Shota Kato on 3 Dec 2019
calculate b value
  2 Comments
Vladimir Sovkov
Vladimir Sovkov on 3 Dec 2019
What does it have to do with Matlab? Quite obvious the solution is

Sign in to comment.

Answers (1)

Shota Kato
Shota Kato on 3 Dec 2019
syms b
fun = (13.1^2 - b^2 * 15.2^2 * 30^2 ) / (2*13.1*15.2)==1.461;
ans = solve(fun)
ans =
-(25638665^(1/2)*1i)/114000
(25638665^(1/2)*1i)/114000
25638665^(1/2) / 114000
ans =
0.0444

Categories

Find more on Symbolic Math Toolbox 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!