Please enable JavaScript.
Coggle requires JavaScript to display documents.
math for CS - Coggle Diagram
math for CS
calculus
-
Limits
limit
-
properties
given limit of f(x) = L and lim g(x) = M, as both x's approach any constant c,
-
-
-
squeeze theorum
given
lim f(x) =L
x->c
and lim g(x) =L
x->c,
and f(x) <= h(x) <= g(x)
for all x in some interval containing c,
then lim h(x) = c
x->c
limit of a sequence
-
1/2,2/3,3/4,4/5,5/6,6/7,...
-
-
-
-
-
differentiation
-
-
a function f is differentiable at a if a limit exists
as h->0, or if f'(a) exists/ != DNE
-
-
rules
-
difference rule
derivative of the difference of two functions
equals the difference of their derivatives
(order matters)
-
power rule
derivative of a function raised to a power is equal to that function raised to that power after that power
has been decremented by 1
-
-
constant multiple rule
derivative of a product of a function multiplied by a constant
equals the product of the functions derivative multiplied by that same constant
chain rule
the derivative of a function within a function is the product of the [derivative of the outer function with the inner function substituted in for x] times the derivative of the inner function
-
-
remember: nested loops, chain links
when a value written in terms of y is differentiated, it is multiplied by dy/dx
-
-
trig
-
degrees and radians
trig circle, each degree
represents a slice of pie
with an angle 0 theta,
and a hypotenuse r ending at (x,y)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
trig formulas
sin = y/r == y/sqrt(x^2+y^2)
cos=x/r == x/sqrt(x^2+y^2)
tan=y/x
cot=x/y
sec=r/x == sqrt(x^2+y^2)/x
csc=r/y == sqrt(x^2+y^2)/y
-
-
radians to degrees
multiply by 180, drop the pie
-
-
trig identities
18 trig ids
sin^2+cos^2=1
tan^2+1=sec^2
1+cot^2=csc^2
sin(-theta)= -sin(theta)
cos(-theta)= cos(theta)
tan(-theta)= -tan(theta)
sin(theta+2π)=sin(theta)
cos(theta+2π)=cos(theta)
tan(theta+π)=tan(theta)
sin(a+b) = sinacosb + cosasinb
sin(a-b) = sinacosb - cosasinb
cos(a+b) = cosacosb - sinasinb
cos(a-b) = cosacosb + sinasinb
tan(a+b) = (tana+tanb )/ (1-tanatanb)
sin(2theta)=2sin(theta)cos(theta)
cos(2theta)=cos^2(theta)-sin^2(theta) = 2cos^2(theta)-1 = 1-2sin^2(theta)
sin^2(1/2 theta) = [ 1-cos(theta) ]/2
cos^2(1/2 theta) = [ 1+cos(theta) ]/2
-
tan(a+b) = sin(a+b)/cos(a+b)
sinacosb + cosasinb / cosacosb - sinasinb
tana - 1/tanb + tanb - 1/tana
tana+tanb -1/(tan + tanb)
-
-
-
Algebra
linear equation
slope
-
-
-
-
-
slope-intercept form
y=mx+b
given line has y-intercept (0,b)
and a slope m
-
-
point-slope form
y-y1 = m(x-x1)
given a line passes through point (x,y) and has a slope m
-
-
intercept form
x/a + y/b = 1
given a line has an x intercept (a,0) and y intercept (0,b)
function
defintion
set of ordered pairs (x,y) where
there is only one value of y for each value of x
-
-
implicit function
anytime where y is not defined as a function of x,
anything in a form other than y = f(x)
-
-