Find common factors in two expressions

11 Ansichten (letzte 30 Tage)
John Miller
John Miller am 22 Apr. 2020
Kommentiert: Ameer Hamza am 5 Jun. 2020
Is there some function so I can find a common factor in multiple expressions?
For example: syms x y
a= 5*(x^4/y)
b= 27*(x^4/y)
=> x^4/y is a common factor.
The reason I'm asking this is that I have some very long expressions I need to sum up. In order to shorten some stuff I would like to extract common factors and assign them to some variable. Thankful for any help!

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 22 Apr. 2020
Bearbeitet: Ameer Hamza am 22 Apr. 2020
syms x y
a = 5*(x^4/y);
b = 27*(x^4/y);
common_factor = gcd(a,b);
Result:
>> common_factor
common_factor =
x^4/y
  2 Kommentare
John Miller
John Miller am 5 Jun. 2020
Thank you!
Ameer Hamza
Ameer Hamza am 5 Jun. 2020
I am glad to be of help!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by