Problem with simplify(x^(1/log(x)).
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
>> sym x;
>> assume(x>0)
>> simplify(x^(1/log(x)),'IgnoreAnalyticConstraints',true)
>> ans = x^(1/log(x))
Note that x^(1/log(x))=e. Why won't this expression simplify?
1 commentaire
jin yong
le 8 Fév 2023
syms x a;
assume(x>0)
x=exp(a)
simplify(x^(1/log(x)),'IgnoreAnalyticConstraints',true)
Réponse acceptée
Friedrich
le 12 Sep 2014
Hi,
have you tried increasing the number of simplification steps?
>> simplify(x^(1/log(x)),'steps',10)
ans =
exp(1)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Calculus dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!