notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

Calculus.md (780B)


      1 # Calculus (Links)
      2 
      3 ## Main Links
      4 
      5 Calc 2 (Leonard):
      6 
      7 L1:
      8 	- [Natural Log](NaturalLog.md)
      9 	- [Product Rule](ProductRule.md)
     10 	- [Chain Rule](ChainRule.md)
     11 	- [Logarithmic Differentiation](LogarithmicDifferentiation.md)
     12 
     13 L2:
     14 	- [Inverse Function](InverseFunction.md)
     15 	- [Injective](Injective.md)
     16 	- [Surjective](Surjective.md)
     17 	- [Bijective](Bijective.md)
     18 
     19 Khan Calc 2:
     20 
     21 Unit 1:
     22 	- [FundamentalTheroemofCalculus](FundamentalTheroemofCalculus.md)
     23 
     24 Unit 2:
     25 	- [usubstitution](usubstitution.md)
     26 	- ExponentialRule
     27 
     28 Calculus Early Transcendentals JS:
     29 
     30 Section 2.8:
     31 	- [Jerk](Jerk.md)
     32 
     33 ## Known Integrals
     34 
     35 Trig Integrations:
     36 
     37 ---
     38 
     39 sin(x) -> -cos(x) + c
     40 
     41 cos(x) -> sin(x) + c
     42 
     43 sec^2(x) -> tan(x) + c
     44 
     45 sec(x)tan(x) -> sec(x) + c 
     46 
     47 csc(x)cot(x) -> -csc(x) + c
     48 
     49 csc^2(x) -> -cot(x) + c
     50 
     51 ---