syms x y z a b c Q N P S
Q= x^a
S = solve(Q==(x^4),a)
S-4
% why the answer is not zero and how to make it?

 Réponse acceptée

Ameer Hamza
Ameer Hamza le 24 Oct 2020

0 votes

You need to specify the assumption that .
syms x y z a b c Q N P S
assume(x, 'positive')
Q = x^a
S = simplify(solve(Q==(x^4),a))
S-4

2 commentaires

It worked for defined numbers but not the variables
assume(T,'positive')
S=T^2*T^a
(solve(S==(T^1),a))
Mohamed Mahmoud
Mohamed Mahmoud le 24 Oct 2020
Solved TY

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Financial Toolbox dans Centre d'aide et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by