What problem does it solve? Numerical libraries return approximations, but many scientific and engineering tasks require exact symbolic results like sqrt(2) instead of 1.414. This Skill guides symbolic computation with SymPy so equations, integrals, and matrix operations produce exact mathematical answers. ## Core Features & Use Cases - Symbolic Algebra and Calculus: Simplify expressions, compute derivatives, integrals, limits, and series expansions with exact arithmetic. - Equation Solving and Linear Algebra: Solve algebraic, differential, and systems of equations, plus matrix operations, eigenvalues, and decompositions. - Physics and Code Generation: Model classical mechanics and quantum systems, then convert expressions to NumPy functions, C/Fortran code, or LaTeX output. - Use Case: Derive the equations of motion for a pendulum symbolically using Lagrangian mechanics, then lambdify the result into a fast NumPy function for simulation. ## Quick Start Use the sympy skill to solve the equation x^2 - 5x + 6 = 0 symbolically and verify the solutions.