Problem-solving strategies for matrices in linear algebra
Use this skill when working on matrices problems in linear algebra.
Identify Matrix Type
sympy_compute.py matrix_typeBasic Operations
sympy_compute.py matmul "A" "B"sympy_compute.py inverse "A"sympy_compute.py transpose "A"Solve Linear Systems
sympy_compute.py linsolve "A" "b"z3_solve.py satDecompositions
sympy_compute.py lu "A"sympy_compute.py qr "A"sympy_compute.py svd "A"uv run python -m runtime.harness scripts/sympy_compute.py inverse "[[1,2],[3,4]]"
uv run python -m runtime.harness scripts/sympy_compute.py det "[[a,b],[c,d]]"
uv run python -m runtime.harness scripts/sympy_compute.py linsolve "[[1,2],[3,4]]" "[5,6]"
See .claude/skills/math-mode/SKILL.md for full tool documentation.