solve_linear
Solve square linear systems Ax=b. Pass matrix A and vector b, or supply the augmented coefficient matrix. Works for up to 32 variables.
Instructions
When: square linear system Ax=b (not polynomial roots or f(x)=0). Params: either A (n×n) and b (len n), or coefficients as augmented n×(n+1). Max n=32. Example: A=[[2,1],[1,3]], b=[1,2].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| A | No | ||
| b | No | ||
| coefficients | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |