Solving symbolically for variables that are equal to several equations
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I'm trying to solve for any vaiable in a series of equations that are all equal to one another such as in the equation bellow.
In it, I know that "v" has two possible solutions, and I'd like to find a way to have MATLAB recognize this and give me both possible solutions as an array. So far, I have gotten my test program to give me one solution at a time, but not both.
clear all
close all
clc
syms xi v r a mu
spec_eng1 = [xi == (v^2)/2-mu/r, xi == -mu/(2*a)]
solve(spec_eng1, v)
% ans =
% Empty sym: 0-by-1
sol = eng.feval_internal('solve', eqns, vars, solveOptions);
spec_eng2 = xi == (v^2)/2-mu/r == -mu/(2*a)
solve(spec_eng2, v)
% Error using mupadengine/feval_internal
% Invalid argument.
%
% Error in sym/solve (line 293)
% sol = eng.feval_internal('solve', eqns, vars, solveOptions);
% These outputs the solutions, but MATLAB doesn't know their related to
% one another
spec_eng3 = xi == (v^2)/2-mu/r
solve(spec_eng3, v)
% ans =
%
% (2^(1/2)*(mu + r*xi)^(1/2))/r^(1/2)
% -(2^(1/2)*(mu + r*xi)^(1/2))/r^(1/2)
spec_eng4 = -mu/(2*a) == (v^2)/2-mu/r
solve(spec_eng4, v)
% ans =
%
% (mu^(1/2)*(2*a - r)^(1/2))/(a^(1/2)*r^(1/2))
% -(mu^(1/2)*(2*a - r)^(1/2))/(a^(1/2)*r^(1/2))
I don't really know what else to say. Any help with this would be appreicated. Thanks
0 commentaires
Réponses (2)
Paul
le 13 Sep 2023
Hmm. Don't know why solve doesn't find a solution,
syms xi v r a mu
spec_eng1 = [xi == (v^2)/2-mu/r, xi == -mu/(2*a)]
solve(spec_eng1,v,'ReturnConditions',true)
Here's a workaround that for this simple case returns both solutions in an array.
vsol = solve(subs(spec_eng1(1),xi,solve(spec_eng1(2),xi)),v)
Or reverse the order
vsol = solve(subs(spec_eng1(2),xi,solve(spec_eng1(1),xi)),v)
3 commentaires
Paul
le 14 Sep 2023
So if we know we want xi to be eliminated from the expression for v, we'd force that by adding to the solved-for variables, I suppose.
syms xi v r a mu
spec_eng1 = [xi == (v^2)/2-mu/r, xi == -mu/(2*a)]
sol = solve(spec_eng1,[v xi])
sol.v
sol.xi
Walter Roberson
le 14 Sep 2023
Yes, exactly,
In some cases you can do, for example,
syms xi v r a mu
spec_eng1 = [xi == (v^2)/2-mu/r, xi == -mu/(2*a)]
arrayfun(@(X) isolate(X, mu), spec_eng1)
but not in the case of v because the second expression does not contain v
Voir également
Catégories
En savoir plus sur Assumptions dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!