Commit 34993e80 authored by Taddeus Kroes's avatar Taddeus Kroes

Added hint message for indefinite integral solving.

parent 5a1c1bc2
......@@ -64,6 +64,9 @@ def solve_indef(root, args):
return substitute(Fx, x, b) - substitute(Fx, x, a)
MESSAGES[solve_indef] = _('Solve indefinite integral {0} using substitution.')
def match_integrate_variable_power(node):
"""
int x ^ n dx -> 1 / (n + 1) * x ^ (n + 1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment