solve_linear_system_2x2
Solve two linear equations in x and y, returning unique, infinite, or no solution cases.
Instructions
Solves a1x + b1y = c1 and a2x + b2y = c2, including no-solution and infinite-solution cases
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a1 | Yes | ||
| a2 | Yes | ||
| b1 | Yes | ||
| b2 | Yes | ||
| c1 | Yes | ||
| c2 | Yes |