MATLAB: Isprime function seems to have poor performance

isprimeMATLABperformanceprimeprime numberprime testingsymsymbolicSymbolic Math Toolbox

Why is MatLab's "isprime" function so much slower than Octave's "isprime" function?
I am using MatLab's "isprime" function to check whether a large number is a prime or not using the symbolic toolbox. I found that the performance of "isprime" in MatLab is much slower than in Octave. Why is this the case or what am I doing wrong with MatLab?
My tests with octave testing large Mersenne-primes produced the following runtimes for "isprime":
tested prime runtime in seconds
2^607-1, 0.15724
2^1279-1, 0.18309
2^2203-1, 0.41784
2^2281-1, 0.70215
2^3217-1, 1.7013
2^4253-1, 2.4854
2^4423-1, 2.2523
2^9689-1, 25.7571
2^9941-1, 25.761
2^11213-1, 38.3376
and with MatLab's "isprime":
tested prime runtime in seconds
2^607-1 31.930225
2^1279-1 547.414940
2^2203-1 5168.567632
2^2281-1 5578.169207
2^3217-1 461.535261
2^4253-1 739.918345
2^4423-1 3805.209681
2^9689-1 8954.457005
2^9941-1 10550.740359
2^11213-1 11865.530147
MatLab's documentation about "isprime" says, that 10 random tests based on the Miller-Rabin method are done. I believe, Octave only does 4 random tests (I suppose also Miller-Rabin, but I am not sure). However this does by far not explain the huge difference in runtime.
In both cases no parallelisation was used and the program ran on one thread on the CPU.
This is the MatLab code I used to run the test. The Octave version is basically the same…
function speedtrace_isprime();
% teste Dauer der Ausführung von "isprime" in Abhängigkeit von wachsenden Mersenne-Primzahlen 2^p-1
% zu testende p's:
p = [2, 3, 5, 7, 13, 17, 19, 31, 61, 89, 107, 127, 521, 607, 1279, 2203, 2281, 3217, 4253, 4423, 9689, 9941, 11213, 19937, 21701, 23209, 44497, 86243, 110503, 132049, 216091, 756839, 859433, ...
1257787, 2976221, 3021377, 6972593, 13466917, 20996011, 24036583, 25964951, 30402457, 32582657, ...
37156667, 42643801, 43112609, 57885161, 74207281, 77232917, 82589933];
speedtrace = fopen('speedtrace_isprime.txt', 'w'); %trace-file öffnen
fprintf(speedtrace, "%s %s \n", "Start: ", string(datetime)); % schreiben

fprintf(speedtrace, "%s \n", "getestete Primzahl, Zeit in Sekunden, Uhrzeit/Datum"); % schreiben
fclose(speedtrace); % file wieder zumachen
base = sym("2");
disp(["getestete Primzahl, Zeit in Sekunden, Uhrzeit/Datum"]);
for k = 1:1:numel(p);
tic;
isprime(base^p(k)-1);
Zeit(k) = toc;
fprintf("2^%i-1 %f %s \n", p(k), Zeit(k), datetime);
speedtrace = fopen('speedtrace_isprime.txt', 'a');
fprintf(speedtrace,"2^%i-1 %f %s \n", p(k), Zeit(k), datetime);
fclose(speedtrace);
% figure(1); plot(Zeit);
end;
speedtrace = fopen('speedtrace_isprime.txt', 'a');
fprintf(speedtrace, "%s %s \n", ["Ende: ", string(datetime)]);
fclose(speedtrace);
end

Best Answer

First, using isprime to test for primality of a Mersenne number is a bad idea. The Lucas-Lehmer test, is as I recall, much more efficient here, and it gives a statement of primality, NOT a statement of isprobable primality. The Miller-Rabin test is an isprobable test, not a proof of primality! That is why multiple internal runs are employed. Do some reading about how these methods can fail.
But more imprtantly, read about Lucas-Lehmer.
In fact, sym/isprime has greatly improved over previous ersions. I recall testing it some years ago, and it was pretty slow. But that is not so true now. This means if you have an old release, it might gain you to upgrade. By the way, if I do a test for primality of a number with on the order of 70000 digits, it is a matter typically of 20 minutes, as I recall. (Its been a month or so since I was running massive overnight jobs, searching for prime members of a specific family of primes, thus quasi-modified Woodal primes of a specific class. They can be exceedingly rare if you choose the right family.)
Anyway, you don't want to use isprime to test for a Mersenne prime. Use Lucas-Lehmer. It is REALLY fast in comparison. For a quick implementation...
function s = Lucas_Lehmer(p)
% Returns true for prime 2^p-1
% don't even bother if p is not prime
if ~isprime(p)
s = false;
return
end
s = 4;
M = sym(2)^p - 1;
for i = 1:p-2
s = mod(s*s - 2,M);
end
s = logical(s == 0);
Seriously, you can't do something much simpler.
Lucas_Lehmer(607)
ans =
logical
1
isprime(sym(2)^607-1)
ans =
logical
1
timeit(@() Lucas_Lehmer(607))
ans =
0.4162580338225
tic,isprime(sym(2)^607-1),toc
ans =
logical
1
Elapsed time is 9.295827 seconds.
Lucas_Lehmer(613)
ans =
logical
0
% A quick check of the list of known Mersenne primes tells me that 21701 is...
tic,Lucas_Lehmer(21701),toc
ans =
logical
1
Elapsed time is 17.560138 seconds.
2^21701-1 is not really that large of a number, but I expect that isprime will take considerably longer. (My own test right now is still running after about 10 minutes.)
tic,isprime(sym(2)^21701-1),toc
???
Finally, if your goal is to find seriously large Mersenne primes, MATLAB is probably not the tool to use if you are looking for primes with millions of digits at some point. But I have found it to work reasonably well in my own play time, searching for primes with 50000-100000 decimal digits. For any seriously large investigation, I'd suggest looking at GIMPS, which seems to be the state of the art.
If your goal is to search for primes in some other family, then there are sometimes tricks to make things more efficient, but they are often strongly dependent on the number family itself. For example, Cullen and Woodall number families have some neat things you can do, to avoid calling isprime too often.