Spaces:
Sleeping
Sleeping
File size: 15,020 Bytes
fe0c99f de8ccff fe0c99f de8ccff fe0c99f de8ccff fe0c99f de8ccff fe0c99f de8ccff fe0c99f de8ccff fe0c99f b958d12 fe0c99f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 | """SymPy-based solver with detailed step extraction."""
from typing import Any, Dict, Optional
from sympy import (
Eq,
Function,
S,
Symbol,
cancel,
cos,
cot,
csc,
diff,
dsolve,
exp,
expand,
factor,
integrate,
latex,
limit,
log,
nan,
oo,
sec,
series,
simplify,
sin,
sqrt,
tan,
trigsimp,
zoo,
)
from .detector import CalculusType
try:
from sympy.integrals.manualintegrate import integral_steps as _integral_steps
HAS_MANUAL = True
except ImportError:
HAS_MANUAL = False
def _sym(name, **kw):
return Symbol(name, **kw)
class CalculusSolver:
def solve(self, expr, calc_type: CalculusType, params: Optional[Dict[str, Any]] = None) -> dict:
"""Solve a calculus expression and return step-by-step results.
Dispatches to a specialised solver based on ``calc_type``, collects
intermediate steps with rule names, and returns a uniform result dict.
Args:
expr: A SymPy expression to operate on.
calc_type: A ``CalculusType`` enum value that selects the solver
(derivative, integral, limit, series, ODE, or simplify).
params: Optional dict of operation parameters, e.g.
``{"variable": "x", "order": 2}`` for a derivative or
``{"lower": 0, "upper": 1}`` for a definite integral.
Returns:
On success: ``{"success": True, "result": str, "result_latex": str,
"steps": list[dict]}``. Each step dict has keys ``"description"``,
``"before"``, ``"after"``, and ``"rule"``.
On failure: ``{"success": False, "error": str, "steps": []}``.
"""
params = params or {}
dispatch = {
CalculusType.DERIVATIVE: self._derivative,
CalculusType.INTEGRAL_INDEFINITE: self._integral_indef,
CalculusType.INTEGRAL_DEFINITE: self._integral_def,
CalculusType.LIMIT: self._limit,
CalculusType.SERIES: self._series,
CalculusType.TAYLOR_SERIES: self._taylor,
CalculusType.DIFFERENTIAL_EQ: self._ode,
CalculusType.SIMPLIFY: self._simplify,
}
fn = dispatch.get(calc_type, self._simplify)
try:
return fn(expr, params)
except Exception as e:
return {"success": False, "error": str(e), "steps": []}
# โโ derivative โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _derivative(self, expr, p):
var = _sym(p.get("variable", "x"))
order = int(p.get("order", 1))
steps = []
current = expr
for i in range(order):
result = diff(current, var)
rule = self._identify_diff_rule(current, var)
steps.append({
"description": f"Differentiate with respect to {var}"\
+ (f" (order {i+1})" if order > 1 else ""),
"before": latex(current),
"after": latex(result),
"rule": rule,
})
# expand intermediate sub-steps for common rules
sub = self._diff_substeps(current, result, var, rule)
if sub:
steps.extend(sub)
current = result
simplified = simplify(current)
if simplified != current:
steps.append({
"description": "Simplify",
"before": latex(current),
"after": latex(simplified),
"rule": "simplification",
})
current = simplified
return self._ok(current, steps)
def _diff_substeps(self, expr, result, var, rule):
"""Generate extra explanatory sub-steps for known rules."""
subs = []
if rule == "product_rule" and expr.is_Mul:
funcs = [a for a in expr.args if a.has(var)]
if len(funcs) == 2:
f, g = funcs[0], funcs[1]
coeff = expr / (f * g)
subs.append({
"description": f"Product rule: (fg)' = f'g + fg' where f={latex(f)}, g={latex(g)}",
"before": latex(expr),
"after": latex(coeff * (diff(f, var)*g + f*diff(g, var))),
"rule": "product_rule_detail",
})
elif rule == "chain_rule":
subs.append({
"description": "Chain rule: d/dx f(g(x)) = f'(g(x))ยทg'(x)",
"before": latex(expr),
"after": latex(result),
"rule": "chain_rule_detail",
})
elif rule == "quotient_rule":
n, d = expr.as_numer_denom()
subs.append({
"description": "Quotient rule: (f/g)' = (f'g โ fg') / gยฒ",
"before": f"f = {latex(n)},\\; g = {latex(d)}",
"after": latex(result),
"rule": "quotient_rule_detail",
})
return subs
def _identify_diff_rule(self, expr, var):
"""Identify the primary differentiation rule that applies to ``expr``.
Args:
expr: The SymPy expression to classify.
var: The differentiation variable (a SymPy ``Symbol``).
Returns:
A rule name string such as ``"power_rule"``, ``"product_rule"``,
``"chain_rule"``, ``"quotient_rule"``, ``"trig_rule"``,
``"exponential_rule"``, ``"logarithm_rule"``, ``"sum_rule"``,
``"constant_multiple"``, ``"constant"``, or ``"basic"``.
"""
if not expr.has(var):
return "constant"
if expr == var:
return "basic"
if expr.is_Add:
return "sum_rule"
if expr.is_Mul:
dep = [a for a in expr.args if a.has(var)]
return "product_rule" if len(dep) > 1 else "constant_multiple"
if expr.is_Pow:
base, ex = expr.as_base_exp()
if base.has(var) and ex.has(var):
return "logarithmic_diff"
if base.has(var) and not ex.has(var):
return "chain_rule" if base != var else "power_rule"
if ex.has(var):
return "exponential_rule"
if expr.func in (sin, cos, tan, sec, csc, cot):
return "trig_rule"
if expr.func == exp:
return "exponential_rule"
if expr.func == log:
return "logarithm_rule"
if expr.func == sqrt:
return "power_rule"
# composite
if len(expr.args) > 0 and any(a.has(var) and a != var for a in expr.args):
return "chain_rule"
return "basic"
# โโ indefinite integral โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _integral_indef(self, expr, p):
var = _sym(p.get("variable", "x"))
steps = self._extract_integral_manual_steps(expr, var)
result = integrate(expr, var)
if result.has(integrate):
return {"success": False, "error": "SymPy could not find a closed-form antiderivative.", "steps": []}
steps.append({
"description": "Antiderivative",
"before": latex(expr),
"after": latex(result) + " + C",
"rule": "integration_result",
})
return self._ok(result, steps, suffix=" + C")
# โโ definite integral โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _integral_def(self, expr, p):
var = _sym(p.get("variable", "x"))
lo = self._to_sympy_num(p.get("lower", 0))
hi = self._to_sympy_num(p.get("upper", 1))
antideriv = integrate(expr, var)
steps = [{
"description": "Find the antiderivative F(x)",
"before": f"\\int {latex(expr)}\\,d{var}",
"after": latex(antideriv),
"rule": "antiderivative",
}]
upper_val = antideriv.subs(var, hi)
lower_val = antideriv.subs(var, lo)
steps.append({
"description": f"Evaluate F({latex(hi)}) โ F({latex(lo)})",
"before": f"F({latex(hi)}) - F({latex(lo)}) = {latex(upper_val)} - {latex(lower_val)}",
"after": latex(simplify(upper_val - lower_val)),
"rule": "fundamental_theorem",
})
result = integrate(expr, (var, lo, hi))
return self._ok(result, steps)
# โโ limit โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _limit(self, expr, p):
var = _sym(p.get("variable", "x"))
pt = self._to_sympy_num(p.get("point", 0))
direction = p.get("direction", "+-")
steps = []
# direct substitution attempt
try:
direct = expr.subs(var, pt)
if direct.is_finite and direct not in (zoo, nan, S.NaN):
steps.append({
"description": f"Direct substitution: plug {var} = {latex(pt)}",
"before": latex(expr),
"after": latex(direct),
"rule": "direct_substitution",
})
return self._ok(direct, steps)
except Exception:
pass
steps.append({
"description": "Direct substitution yields indeterminate form",
"before": latex(expr),
"after": "\\text{indeterminate}",
"rule": "indeterminate",
})
result = limit(expr, var, pt, direction)
steps.append({
"description": "Apply limit techniques (L'Hรดpital / algebraic)",
"before": f"\\lim_{{{latex(var)} \\to {latex(pt)}}} {latex(expr)}",
"after": latex(result),
"rule": "lhopital_or_algebraic",
})
return self._ok(result, steps)
# โโ series / Taylor โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _series(self, expr, p):
var = _sym(p.get("variable", "x"))
pt = self._to_sympy_num(p.get("point", 0))
order = int(p.get("order", 6))
result = series(expr, var, pt, order)
steps = [{
"description": f"Expand in series around {var} = {latex(pt)} to order {order}",
"before": latex(expr),
"after": latex(result),
"rule": "series_expansion",
}]
return self._ok(result, steps)
def _taylor(self, expr, p):
return self._series(expr, p)
# โโ ODE โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _ode(self, expr, p):
var = _sym(p.get("variable", "x"))
f = Function("y")
try:
eq = Eq(expr, 0) if not isinstance(expr, Eq) else expr
result = dsolve(eq, f(var))
steps = [{
"description": "Solve ordinary differential equation",
"before": latex(eq),
"after": latex(result),
"rule": "ode_solution",
}]
return self._ok(result, steps)
except Exception as e:
return {"success": False, "error": f"ODE solver: {e}", "steps": []}
# โโ simplify fallback โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _simplify(self, expr, p):
results = [(expr, "original")]
for fn, name in [(expand, "expand"), (factor, "factor"),
(trigsimp, "trigsimp"), (cancel, "cancel"),
(simplify, "simplify")]:
try:
r = fn(expr)
if r != expr:
results.append((r, name))
except Exception:
pass
best = min(results, key=lambda r: len(str(r[0])))
steps = [{
"description": f"Simplify ({best[1]})",
"before": latex(expr),
"after": latex(best[0]),
"rule": "simplification",
}]
return self._ok(best[0], steps)
# โโ helpers โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _ok(self, result, steps, suffix=""):
return {
"success": True,
"result": str(result),
"result_latex": latex(result) + suffix,
"steps": steps,
}
@staticmethod
def _to_sympy_num(v):
"""Convert a limit/bound value to a SymPy numeric object.
Recognises infinity shorthands (``"oo"``, ``"\\infty"``, ``"-oo"``)
and falls back to a ``Symbol`` if the value cannot be parsed as a
number.
Args:
v: The value to convert โ may be an ``int``, ``float``, or a
string such as ``"0"``, ``"oo"``, ``"-\\infty"``, or ``"pi"``.
Returns:
A SymPy ``S`` (integer/rational), ``oo``, ``-oo``, or ``Symbol``.
"""
if isinstance(v, (int, float)):
return S(v)
s = str(v).strip().replace(" ", "")
if s in ("oo", "\\infty", "+\\infty", "inf"):
return oo
if s in ("-oo", "-\\infty", "-inf"):
return -oo
try:
return S(s)
except Exception:
return Symbol(s)
def _extract_integral_manual_steps(self, expr, var):
if not HAS_MANUAL:
return []
try:
obj = _integral_steps(expr, var)
out = []
self._walk_int_steps(obj, out, 0)
return out
except Exception:
return []
def _walk_int_steps(self, obj, out, depth):
if depth > 15:
return
if not isinstance(obj, (str, int, float, bool, type(None))):
name = obj.__class__.__name__
context = getattr(obj, "context", None)
if context is not None:
out.append({
"description": name.replace("Rule", " Rule").strip(),
"before": latex(context) if hasattr(context, "free_symbols") else str(context),
"after": "",
"rule": name.lower(),
})
for attr in ("substep", "substeps"):
child = getattr(obj, attr, None)
if child is None:
continue
if isinstance(child, (list, tuple)):
for c in child:
self._walk_int_steps(c, out, depth + 1)
else:
self._walk_int_steps(child, out, depth + 1)
|