Ran a simple script in Numpy to solve a system of 3 equations:
from numpy import *
a = matrix('1 4 1; 4 13 7; 7 22 13')
b = matrix('0;0;1')
print linalg.solve(a,b)
But when I ran it through the command prompt, I somehow got:
[[ 3.46430741e+15]
[ -6.92861481e+14]
[ -6.92861481e+14]]
although Wolfram Alpha says there's no solution.
Does anyone know why there seems to be this difference between the Numpy/WRA answers?