When i try this sym('x')^y i get an error message
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
a = sym(18008617784390347685963)^60322355516214665580
I get an error message, can anyone help please.
Cheers
0 Kommentare
Antworten (2)
Vladimir Sovkov
am 11 Dez. 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 Kommentar
Vladimir Sovkov
am 11 Dez. 2020
Bearbeitet: Vladimir Sovkov
am 11 Dez. 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
am 11 Dez. 2020
Bearbeitet: Daniel Pollard
am 11 Dez. 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.
1 Kommentar
Siehe auch
Kategorien
Mehr zu Number Theory finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!