What problem does it solve? Numerical approximations lose precision and cannot manipulate formulas with unknown variables. This Skill provides exact symbolic computation in Python using SymPy, so you can solve equations algebraically, compute exact derivatives and integrals, and manipulate mathematical expressions containing symbols and parameters. ## Core Features & Use Cases - Symbolic Algebra & Calculus: Simplify expressions, compute derivatives, integrals, limits, and series expansions with exact results like sqrt(2) instead of 1.414. - Equation Solving & Linear Algebra: Solve algebraic, differential, and systems of equations; work with matrices, eigenvalues, and decompositions symbolically. - Code Generation & Output: Convert symbolic expressions into fast NumPy functions via lambdify, generate C/Fortran code, and produce LaTeX output for documents. - Use Case: Derive a formula symbolically, verify it by substitution, then convert it with lambdify into a NumPy function to evaluate over thousands of data points for plotting with Matplotlib. ## Quick Start Use the sympy skill to solve the equation x^2 - 5x + 6 = 0 symbolically and then compute the definite integral of x*e^(-x^2) from 0 to infinity.