Equations to Put in Calculator for Ap Calculus Bc
AP Calculus BC requires solving complex equations using your graphing calculator. This guide provides the essential equations to input, along with examples and tips for accurate results.
Basic Equations
Start with fundamental equations that appear frequently on the AP Calculus BC exam. These include linear, quadratic, and polynomial equations.
Linear Equation
y = mx + b
Where m is the slope and b is the y-intercept.
Quadratic Equation
y = ax² + bx + c
Where a, b, and c are coefficients.
Polynomial Equation
y = aₙxⁿ + aₙ₋₁xⁿ⁻¹ + ... + a₁x + a₀
Where n is the degree of the polynomial.
Derivatives
Derivatives measure how a function changes as its input changes. They are essential for finding slopes, rates of change, and optimization problems.
Power Rule
If y = xⁿ, then y' = n xⁿ⁻¹
Example: For y = x³, the derivative is y' = 3x².
Product Rule
If y = u v, then y' = u' v + u v'
Example: For y = x sin(x), the derivative is y' = sin(x) + x cos(x).
Quotient Rule
If y = u / v, then y' = (u' v - u v') / v²
Example: For y = x / (x² + 1), the derivative is y' = (1*(x²+1) - x*2x) / (x²+1)².
Integrals
Integrals calculate the accumulation of quantities and are used to find areas under curves, volumes, and work.
Basic Integral
∫xⁿ dx = (xⁿ⁺¹)/(n+1) + C
Example: ∫x² dx = (x³)/3 + C.
Definite Integral
∫[a,b] f(x) dx = F(b) - F(a)
Example: ∫[0,1] x² dx = (1³)/3 - (0³)/3 = 1/3.
Substitution Rule
Let u = g(x), then ∫f(x) dx = ∫f(g(u)) g'(u) du
Example: ∫x cos(x²) dx = (1/2) sin(x²) + C.
Limits
Limits describe the behavior of a function as the input approaches a certain value. They are foundational for understanding continuity and derivatives.
Limit Definition
lim(x→a) f(x) = L if for every ε > 0, there exists δ > 0 such that 0 < |x - a| < δ implies |f(x) - L| < ε.
Direct Substitution
If f is continuous at a, then lim(x→a) f(x) = f(a).
Example: lim(x→2) (x² - 4)/(x - 2) = (4 - 4)/(2 - 2) is indeterminate, but can be simplified to lim(x→2) (x + 2) = 4.
Infinite Limits
lim(x→a) f(x) = ∞ if f(x) grows without bound as x approaches a.
Example: lim(x→0) 1/x² = ∞.
Example Calculations
Here are step-by-step examples of how to input and solve equations on your calculator.
Example 1: Derivative Calculation
Find the derivative of f(x) = 3x² + 2x - 5.
- Enter the function: Y1 = 3x² + 2x - 5
- Use the nDeriv command: nDeriv(Y1, x, X)
- Set X to a specific value or leave it as X for the general derivative
- The result will be 6x + 2
Example 2: Integral Calculation
Find the definite integral of ∫[1,3] (2x + 1) dx.
- Enter the function: Y1 = 2x + 1
- Use the fnInt command: fnInt(Y1, x, 1, 3)
- The result will be 10
Example 3: Limit Calculation
Find lim(x→2) (x² - 4)/(x - 2).
- Enter the function: Y1 = (x² - 4)/(x - 2)
- Use the limit command: limit(Y1, x, 2)
- The result will be 4