Symbolic solution to a system of equations

Can Matlab solve a system of equations like a+b=c, b=2c symbolically for b and c? The output should be c=-a, b=-2a

 Accepted Answer

In MATLAB you solve it like this using symbolic variables and solve function()
syms a b c
eq1 = a+b==c;
eq2 = b==2*c;
sol = solve([eq1 eq2])
Result:
>> sol.b
ans =
-2*a
>> sol.c
ans =
-a

5 Comments

Glad to be of help.
If you then want to assign a value for a and calculate b or c, how would you do that?
You can use subs() function
b_val = subs(sol.b, a, 5); % substitute a=5
Thank you so much!

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!