Problem-solving strategies for vector spaces in linear algebra
Scanned 2/12/2026
Install to Claude Code
npx -y skills add parcadei/Continuous-Claude-v3 --skill vector-spaces --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vector Spaces?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/parcadei-vector-spaces)More formats (shields.io, HTML) on the badges page.
---
name: vector-spaces
description: "Problem-solving strategies for vector spaces in linear algebra"
allowed-tools: [Bash, Read]
---
# Vector Spaces
## When to Use
Use this skill when working on vector-spaces problems in linear algebra.
## Decision Tree
1. **Check Subspace**
- Contains zero vector?
- Closed under addition?
- Closed under scalar multiplication?
- Verify with `z3_solve.py prove`
2. **Linear Independence**
- Set up Ax = 0 where columns are vectors
- `sympy_compute.py nullspace "A"`
- Trivial nullspace = independent
3. **Basis and Dimension**
- Find spanning set, remove dependent vectors
- `sympy_compute.py rref "A"` to find pivot columns
- Dimension = number of pivots
4. **Change of Basis**
- Find transition matrix P
- New coords = P^(-1) * old coords
- `sympy_compute.py inverse "P"`
## Tool Commands
### Sympy_Nullspace
```bash
uv run python -m runtime.harness scripts/sympy_compute.py nullspace "[[1,2,3],[4,5,6]]"
```
### Sympy_Rref
```bash
uv run python -m runtime.harness scripts/sympy_compute.py rref "[[1,2,3],[4,5,6]]"
```
### Z3_Prove
```bash
uv run python -m runtime.harness scripts/z3_solve.py prove "subspace_closed"
```
## Cognitive Tools Reference
See `.claude/skills/math-mode/SKILL.md` for full tool documentation.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
1. **Strip thinking before verifying** — a verifier that sees the reasoning is biased toward agreement. Fresh context, cleaned proof only. 2. **"Does this prove RH?"** — if your theorem's specialization to ζ is a famous open problem, you have a gap. Most reliable red flag. 3. **Short proof → extract the general lemma** — try 2×2 counterexamples. If general form is false, find what's special about THIS instance. 4. **Same gap twice → step back** — the case split may be obscuring a unifie
Split a PR into multiple PRs to reduce the number of required CODEOWNERS reviewer groups.
Onboard 1-node GitHub MR functional tests for GB200 from existing mr-scoped 2-node tests.
This skill should be used when the user asks for a Seedance 2.0 template, genre recipe, product ad, lifestyle video, drama scene, music video, landscape shot, commercial, animation scene, or reusable production pattern.
Problem-solving strategies for residues in complex analysis