Skip to content
Snippets Groups Projects
Commit 34993e80 authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Added hint message for indefinite integral solving.

parent 5a1c1bc2
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment