For the matter of discussion, I run the code for iterators of {m,1,11,2},{n,1,11,2}, (meaning there are 36 cycles in total) since code had failed to give results at the stage m = 11 and n = 5, i.e (11,5).
I encountered two warnings after running the code, first being inverse of badly conditioned matrix (IBC) and the other of Reduce of badly conditioned matrix (RBC). Both IBC and RBC happened at different stages of Module. IBC happens on Inverse matrix and RBC started at the stage of solving the simultaneous equations.
The determinat of mat A are as follows:
det A(1,1) = 1218.0571830493543;
det A(1,3) = 3.25849×E7+2.30668×E-9 i;
det A(1,5) = 5.23556×E11-0.000170191i ;
det A(1,7) = 5.33487×E15+13.1718i ;
det A(1,9) = 4.13566×E19-109791.i ;
det A(1,11) = 2.65883×E23+2.08477×E8i ;
det A(3,1) = 5.22604×E8;
det A(3,3) = 6.19662×E10+0.0000672132i ;
det A(3,5) = 7.29786×E13+0.301006i ;
det A(3,7) = 1.94001×E17+46.1054i ;
det A(3,9) = 6.80971×E20+280218i. ;
det A(3,11) = 2.61023×E24-5.66728×E9i ;
det A(5,1) = 7.22257×E13;
det A(5,3) = 1.28851×E15-0.144967i ;
det A(5,5) = 1.90658×E17-401.127i ;
det A(5,7) = 1.02526×E20+257353.i ;
det A(5,9) = 1.14107×E23+1.22945×E8i ;
det A(5,11) = 1.90323×E26+1.70316×E11i ;
det A(7,1) = 5.7285×E18;
det A(7,3) = 4.32027×E19;
det A(7,5) = 1.7982×E21-710529.i ;
det A(7,7) = 2.69851×E23-8.65577×E8i ;
det A(7,9) = 9.92617×E25-1.0085×E11i ;
det A(7,11) = 6.68698×E28+1.88156×E13i ;
IBC warning begins from these two iterators:
det A(9,1) = 3.264×E23;
det A(9,3) = 1.52529×E24;
No IBC warnings from these iterators:
det A(9,5) = 2.8594×E25;
det A(9,7) = 1.70011×E27+3.9149×E12i ;
det A(9,9) = 2.50373×E29-1.01033×E14 i;
det A(9,11) = 7.33413×E31-4.60551×E16i ;
IBC warnings resumed:
det A(11,1) = 1.47702×E28;
det A(11,3) = 5.11187×E28;
det A(11,5) = 5.62718×E29;
det A(11,7) = 1.71332×E31-1.76121×E16i ;
det A(11,9) = 1.22858×E33+1.1912×E18i ;
det A(11,11) = 1.77265×E35+7.89441×E19i ;
RBC warnings only started when solving the simultaneous equations from the iterators of (9,11), (11,1), (11,3) and still give outputs . Only from (11,5) until (11,11) , Mathematica gives RBC warnings with no outputs were shown. Mathematica stopped running at (11,5).
Iam assuming that eventhough there are IBC warnings displayed, code is still running and generate outputs. However, RBC warnings resulted serious problems especially when iterators get larger and eventually becomes unsolvable.
Therefore, from these observations, I must find way to solve the RBC issues, so that I could run the code up to (99,99) (2500 cycles) if possible. Is there any other way how to solve simultaneous equations using the ‘Solve’ command? How can I treat the simultaneous equations so that it can be solvable from iterators (11,5) onwards.