Aug 3, 2024
f(x) = x^2 + 1
f(2)
means substitute 2 for x:f(2) = 2^2 + 1 = 5
f(a + 3)
, substitute the entire expression for x.g(x) = sqrt(x)
, domain is x >= 0
(since you can't take the square root of a negative).y >= 0
(outputs are non-negative).y = mx + b
y = ax^2 + bx + c
y = a * b^x
f(x)
:
f(x) + k
: shifts vertical by k.f(x - h)
: shifts horizontal by h.a * f(x)
: stretches (if a > 1) or shrinks (if 0 < a < 1) vertically.x = -b/(2a)
.y = a(x-h)^2 + k
(h,k is the vertex).y = ax^2 + bx + c
.f(x) = a * b^x
, where a is the initial amount, b is the growth factor.P(t) = A * e^(rt)
.log_a(b) = c
if a^c = b
.log_a(xy) = log_a(x) + log_a(y)
log_a(x/y) = log_a(x) - log_a(y)
log_a(x^n) = n * log_a(x)
.y = f(x)
is reflected over the line y = x
for its inverse.Population Growth:
P(t) = A * (1 + r)^t
for growth.P(t) = A * (1 - r)^t
for decay.Half-Life Problems:
N(t) = N_0 * (1/2)^(t/T_half)
.f(x) = p(x)/q(x)
, where p(x) and q(x) are polynomials.