Can I check if factored and expanded polynomial forms are equal?

2 vues (au cours des 30 derniers jours)
Jacob L
Jacob L le 1 Fév 2020
>> syms w k
>> isequal((w^2-k^2),(w+k)*(w-k))
ans =
logical
0
Is there a way to tell that w^2-k^2 and (w+k)*(w-k) are equal?
Also tried isequal(expand(),expand()) method but expand() may order two polynomials that are the same differently and in these instances isequal() returns logical = 0.

Réponse acceptée

Vladimir Sovkov
Vladimir Sovkov le 1 Fév 2020
Modifié(e) : Vladimir Sovkov le 1 Fév 2020
simplify((w^2-k^2) - (w+k)*(w-k))
ans =
0
expand((w+k)*(w-k))
ans =
w^2 - k^2
factor(w^2-k^2)
ans =
[ -1, k - w, k + w]
  1 commentaire
Vladimir Sovkov
Vladimir Sovkov le 1 Fév 2020
isequal ( sort ( factor(w^2-k^2) ) , sort ( factor((w-k)*(w+k)) ) )
ans =
logical
1

Connectez-vous pour commenter.

Plus de réponses (1)

Steven Lord
Steven Lord le 1 Fév 2020
>> syms w k
>> x1 = (w^2-k^2);
>> x2 = (w+k)*(w-k);
>> isAlways(x1 == x2)
ans =
logical
1

Catégories

En savoir plus sur Symbolic Math Toolbox 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!

Translated by