When i try this sym('x')^y i get an error message
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
a = sym(18008617784390347685963)^60322355516214665580
I get an error message, can anyone help please.
Cheers
0 commentaires
Réponses (2)
Vladimir Sovkov
le 11 Déc 2020
You cannot compute this directly because the integers are larger than matlab is able to treat.
You can try
b = sym(log10(18008617784390347685963)*60322355516214665580)
b =
1342502999708137684992
so that the value you are interested in is
1 commentaire
Vladimir Sovkov
le 11 Déc 2020
Modifié(e) : Vladimir Sovkov
le 11 Déc 2020
or, even better
nd=64; % number of decimal digits you want to get your result with
b = vpa(sym(log10(sym(18008617784390347685963))*60322355516214665580),nd)
% b = 1342502999708137528766.63000133154837392990340259044889069097638
a=10^mod(b,1)
\times 10^ (floor(b))
Daniel Pollard
le 11 Déc 2020
Modifié(e) : Daniel Pollard
le 11 Déc 2020
I haven't used the symbolic toolbox before, but when I type 18008617784390347685963^60322355516214665580 into my Matlab commandline it returns Inf. Computers can't handle very big numbers, and that number will be one with over 1e21 digits. You haven't told us the error message (which you should, as a rule) but this seems most likely. Google can act as a calculator and that returns 'undefined'.
What on earth do you need to store a number that big for anyway?
Edit A correction - I hilariously underestimated how many digits the number would have. It's over 1e21. I tried
randi([1 9], 1, 1e11)
and Matlab tells me that array would require 750GB of RAM to create. This has made me more curious as to what this number is you're trying to calculate.
Voir également
Catégories
En savoir plus sur Number Theory 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!