What problem does it solve? Numerical libraries like NumPy return floating-point approximations, which lose precision and cannot manipulate mathematical expressions symbolically. This Skill provides exact symbolic computation in Python so you can solve equations, compute derivatives and integrals, and simplify expressions with mathematically exact results like sqrt(2) instead of 1.414. ## Core Features & Use Cases - Symbolic Algebra and Calculus: Simplify, expand, and factor expressions; compute derivatives, integrals, limits, and series expansions exactly. - Equation Solving and Linear Algebra: Solve algebraic, differential, linear, and nonlinear systems; work with matrices, eigenvalues, and decompositions symbolically. - Code Generation and Output: Convert symbolic expressions to fast NumPy functions via lambdify, generate C/Fortran code, and produce LaTeX output for documentation. - Use Case: Derive a formula symbolically, verify it by substitution, then lambdify it into a NumPy function to evaluate over thousands of data points, and export the result as LaTeX for a report. ## Quick Start Use the sympy skill to solve the equation x^2 - 5x + 6 = 0 symbolically and then compute the exact integral of x*e^(-x^2) from 0 to infinity.