C1: graphs, coordinates and differentiation Flashcards
How do you find the length of a line?
√((x1 - x2)^2 + (y1 - y2)^2))
How do you find the gradient of a line?
(y2 - y1)/(x2 - x1)
How do you find the midpoint of a line?
((x1 + x2)/2 , (y1 + y2)/2)
How do you find the equation of a line?
y - y1 = m(x - x1)
How do you find out if two lines are perpendicular?
m1m2 = -1
Give the two forms of a circle equation.
(x - a)^2 + (y - b)^2 = R^2
x^2 + y^2 - 2ax - 2by + a^2 + b^2 - R^2 = 0
y = f(x) -> y = f(x) + a
translation by vector (0 a)
moves up a units
y = f(x) -> y = f(x + a)
translation by vector (-a 0)
moves left a units
y = f(x) -> y = kf(x)
stretch parallel to y-axis with scale factor k
all y values multiplied by k
y = f(x) -> y = f(kx)
stretch parallel to x-axis with scale factor 1/k
all x values divided by k
y = f(x) -> y = -f(x)
reflection in x-axis
all y values negated
y = f(x) -> y = f(-x)
reflection in y-axis
all x values negated
y = x^n ; dy/dx = ?
dy/dx = nx^(n-1)
f(x) = x^n ; f’(x) = ?
f’(x) = nx^(n-1)
nb DO NOT CONFUSE WITH f^-1(x)
When dy/dx is positive, it can be said that y = x^n is…
…an increasing function.