Is this wrong to find the permanent space of the matrix with Python sympy?

Asked 2 years ago, Updated 2 years ago, 64 views

Jupiter laptop site is looking for the matrix's permanent space with Python It keeps printing like this, is there anything wrong?

>>> from sympy import *
>>> m=Matrix([[2, 3], [1, 2]])
>>> print(m.nullspace())
[]

python matrix

2022-09-20 17:08

1 Answers

2 3
1 2

Det is not zero. So there won't be a null-space.

2 3
4 6

Try it with.


2022-09-20 17:08

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.