Effacer les filtres
Effacer les filtres

how to check if two symbolic fractions are the same?

2 vues (au cours des 30 derniers jours)
Ali Almakhmari
Ali Almakhmari le 27 Juil 2023
I have two fractions that have so many symbolic variables and are too complicated, but are in different forms. How can I check if they are equal to each other? For example:
syms x y z
fraction1 = (x+y)/(x*y) + z;
fraction2 = (x+y+x*y*z)/(x*y);
How can I check if fraction1 and fraction2 are the same?

Réponse acceptée

Torsten
Torsten le 27 Juil 2023
syms x y z
fraction1 = (x+y)/(x*y) + z;
fraction2 = (x+y+x*y*z)/(x*y);
isAlways(fraction1==fraction2)
ans = logical
1

Plus de réponses (1)

the cyclist
the cyclist le 27 Juil 2023
You can use isequal or isAlways, depending on the specific need. I suggest that you read the documentation, because there are nuances.

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by