Does logint function work well? (for PNT)
Afficher commentaires plus anciens
On the 'Prime Obsession' book, 20 to the power 1/2 + 14.134725i is −0.302303 − 4.46191i. Take the logarithmic integral—the Li function—of that to get the answer −0.105384 + 3.14749i.
I tried as belows, but failed.
>> a=20^(1/2+14.134725i)
a =
-0.3023 - 4.4619i % OK
>> logint(a)-logint(2)
ans =
0.9528 - 3.9138i % Wrong
6 commentaires
Notae
le 13 Oct 2018
KALYAN ACHARJYA
le 13 Oct 2018
Explain what are you looking for?
the cyclist
le 13 Oct 2018
Li(x) = integral(1/log(t)) from 0 to x
not from x to 2 as you state. I don't have the symbolic math toolbox to test.
the cyclist
le 14 Oct 2018
Li(20^(1/2+14.134725i)) - Li(2)
you get the answer
0.952805 - 3.91384i
which is what you say that MATLAB also gives. Therefore, I think the problem is not with MATLAB.
Maybe you could post more of what it says in the book you mention. Maybe there is some other part you are missing.
Notae
le 15 Oct 2018
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Parallel for-Loops (parfor) dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!