Problem with simplify(x^(1/log(x)).
    11 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    John Billingham
 il 12 Set 2014
  
    
    
    
    
    Commentato: jin yong
 il 8 Feb 2023
             >> 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 Commento
  jin yong
 il 8 Feb 2023
				syms x a;
assume(x>0)
x=exp(a)
simplify(x^(1/log(x)),'IgnoreAnalyticConstraints',true)
Risposta accettata
  Friedrich
    
 il 12 Set 2014
        Hi,
have you tried increasing the number of simplification steps?
>> simplify(x^(1/log(x)),'steps',10)
ans =
exp(1)
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Special Values in Help Center e File Exchange
			
	Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



