With goes down to those hard problems, I want to let you know a priciple that we use in general math problem:
We always split hard problem to multiple easy problems or step by step simplify hard problem.
In computer science, we named it Divide & Conquer (D&C algorithms)
Simple one
===∫a2+x21dxa21∫1+(ax)21dxa1∫1+(ax)21d(ax)a1⋅arctanax+C//divide a2in denominator while keep equation balance//(arctanx)′=1+x21
===∫a2−x21dx,(a>0)a1∫1−(ax)21dx1∫1−(ax)21d(ax)arcsin(ax)+C//divide a in x of dx while keep equation balance
Let's try to analyze this equation:
a21∫1+(ax)21dx=a2a∫1+(ax)21d(ax)
We knew that x of dx is the original function, so do a21. Because two of them in a same original function, when x becomes ax, a21 have to times a.
As for ∫1+(ax)21, it must interact with dx, then it becomes original function.
You can see ∫(...)d as a whole thing. you also can extract a constant from it, we will talk about it later.
==////===∫x2−a21dx,(a=0)∫(x+a)(x−a)1dx2a1∫(x−a1−x+a1)dxx−a1−x+a1=(x−a)(x+a)x+a−x+a=(x−a)(x+a)2a Because 2a=1, divide 2a, that is, times2a1in the beginning2a1(∫x−a1dx−∫x+a1dx)2a1(∫x−a1d(x−a)−∫x+a1d(x−a))2a1ln∣x+ax−a∣+C//don’t forget the basic temple for solving integral eqution
Complex one
=========∫1−x1dxmake x=t , then x=t2∫1−t1d(t2)∫1−t2td(t)2∫1−ttd(t)−2∫t−1td(t)−2∫t−1t−1+1d(t)−2∫t−1t−1dt−2∫t−11dt−2∫1dt−2∫t−11dt−2t−2ln∣t−1∣+C−2x−2ln∣x−1∣+C
Conclusion
Keep equation balance
Best way to deal with is to replace it with a symbol
Molecular is a constant is more convenient for us to solve equation, especially when it is 1 (for example: extract a constant out, and put it in front of ∫)