Solving calculus comes down to mastering a handful of core techniques: evaluating limits, taking derivatives, and computing integrals. Each builds on the one before it, and nearly every calculus problem you’ll encounter is some variation of these three skills. The good news is that each technique follows a predictable set of steps, and once you internalize the patterns, problems that looked impossible start to feel mechanical.
Before diving in, one thing worth knowing: most calculus mistakes aren’t actually calculus mistakes. They’re algebra mistakes. Factoring, simplifying fractions, working with exponents, and knowing your unit circle values for trigonometry are the foundation everything else sits on. If you find yourself stuck on a calculus problem, there’s a good chance the breakdown happened in the algebra, not the calculus itself.
Solving Limits
Limits are the first concept in calculus, and the method for evaluating them is more straightforward than most students expect. Start with direct substitution: plug the value x is approaching into the function. If you get a real number, that’s your answer. You’re done.
The interesting cases happen when direct substitution gives you something like 0/0. This is called an indeterminate form, and it means the limit exists but you need to do more work to find it. The standard approach is to factor the numerator and denominator, cancel the common term, and then substitute again.
For example, if you need the limit of (x² – 4)/(x – 2) as x approaches 2, plugging in 2 gives 0/0. But factoring the numerator into (x – 2)(x + 2) lets you cancel the (x – 2) terms, leaving just (x + 2). Now substituting x = 2 gives you 4. The key insight is that the limit describes what the function approaches, not what it equals at that exact point. So even though there’s a hole in the graph at x = 2, the limit is still 4.
For more stubborn indeterminate forms, L’Hôpital’s Rule is a powerful shortcut. If substitution gives you 0/0 or infinity/infinity, you can take the derivative of the numerator and the derivative of the denominator separately, then try the limit again. This works on those two forms only, so always check that you actually have an indeterminate form before applying it.
Taking Derivatives With Core Rules
Derivatives measure how fast a function is changing, and computing them relies on a small set of rules applied in combination. The most common is the power rule: to differentiate x raised to any power, bring the exponent down as a multiplier and reduce the exponent by one. So x⁴ becomes 4x³, and 3x⁻⁶ becomes -18x⁻⁷. Constants disappear entirely since they don’t change.
When two functions are multiplied together, you need the product rule. Take the derivative of the first function times the second, then add the first function times the derivative of the second. In shorthand: (fg)’ = f’g + fg’. When one function is divided by another, the quotient rule applies: (f/g)’ = (f’g – fg’) / g². Notice the subtraction in the numerator. Mixing up the sign between the product rule and quotient rule is one of the most common errors in a first calculus course.
The Chain Rule for Nested Functions
The chain rule handles composite functions, which are functions inside other functions. Think of something like sin(x²) or (3x + 5)⁷. The procedure is: differentiate the outside function first, leaving the inside function untouched, then multiply by the derivative of the inside function.
For (3x + 5)⁷, the outside function is “something to the 7th power” and the inside is 3x + 5. Applying the power rule to the outside gives 7(3x + 5)⁶. Then multiply by the derivative of the inside, which is 3. Final answer: 21(3x + 5)⁶.
The single most common derivative mistake is forgetting that second step. Students differentiate the outer function correctly and then stop, dropping the derivative of the inner function entirely. Every time you see a function inside another function, you need the chain rule, and you need both parts.
Computing Integrals
Integration is the reverse of differentiation. Where derivatives ask “what’s the rate of change?”, integrals ask “what function would produce this derivative?” The basic rules mirror the derivative rules in reverse. For powers of x, add one to the exponent and divide by the new exponent. So the integral of x⁴ is x⁵/5. A constant like 9 integrates to 9x, since the derivative of 9x is 9.
Three properties keep integration manageable. You can pull constants out of the integral and deal with them separately. You can split the integral of a sum into the sum of individual integrals. And every indefinite integral needs a “+ C” at the end, representing an unknown constant, because multiple functions can share the same derivative.
For a concrete example, the integral of x⁴ + 3x – 9 works out to x⁵/5 + 3x²/2 – 9x + C. Each term follows the power rule independently.
U-Substitution
U-substitution is the integration equivalent of the chain rule. When you see a composite function inside an integral and the derivative of the inner function also appears in the expression, substitution will simplify things. The idea is to replace the complicated inner expression with a single variable u, rewrite the entire integral in terms of u, integrate, and then switch back to the original variable.
Say you need to integrate x³ cos(x⁴ + 3). Let u = x⁴ + 3. The derivative of u is 4x³, which means x³ dx = (1/4) du. The integral becomes (1/4) ∫ cos(u) du, which is (1/4) sin(u) + C. Substituting back gives (1/4) sin(x⁴ + 3) + C. The hint that substitution will work is always the same: you spot a function and its derivative sitting together in the integrand.
Integration by Parts
When substitution doesn’t apply, integration by parts often will. This technique handles products of different types of functions, like x times eˣ or x² times sin(x). The formula splits the integral into two pieces: ∫u dv = uv – ∫v du. You choose one part of the integrand to call u (which you’ll differentiate) and the other to call dv (which you’ll integrate).
Choosing wisely matters. The LIATE mnemonic gives a reliable priority order for picking u: Logarithmic functions first, then Inverse trig, then Algebraic (polynomials), then Trig, then Exponential. Whichever function type appears earliest in that list should be your u. This ordering tends to simplify the remaining integral rather than making it harder.
The Fundamental Theorem of Calculus
The fundamental theorem ties derivatives and integrals together and is what makes definite integrals computable. It has two parts, and the second is the one you’ll use constantly. It says: to evaluate a definite integral from a to b, find any antiderivative of the function, plug in b, plug in a, and subtract. In symbols, ∫ from a to b of f(x) dx = F(b) – F(a), where F is any antiderivative of f.
This is why all those integration techniques matter. Once you can find an antiderivative, computing the exact area under a curve between two points is just arithmetic.
Solving Optimization Problems
Optimization problems are word problems that ask you to find the maximum or minimum of something: the largest area, the shortest distance, the lowest cost. They combine algebra and derivatives in a structured way.
Start by reading the problem carefully and identifying two things: the quantity you want to optimize (like area or volume) and the constraint (like a fixed perimeter or a limited amount of material). Write an equation for each. The optimization equation will typically have two variables, so use the constraint equation to eliminate one of them. Now you have a single-variable function. Take its derivative, set it equal to zero, and solve for the critical points. The critical point that satisfies the original constraint is your answer.
Sketching the situation before writing equations helps enormously. Many students jump straight to formulas and lose track of what the variables represent. A quick diagram keeps the relationships clear and often reveals the constraint equation on its own.
Avoiding Common Mistakes
A few errors come up so frequently they’re worth flagging explicitly. Confusing a limit with a function value is one: the limit of f(x) as x approaches some value c does not have to equal f(c). That equality only holds when the function is continuous at c. Always verify rather than assume.
Algebraic errors with function notation trip up students regularly. When a problem asks you to compute f(x + h), you need to substitute (x + h) everywhere x appears in the function. Writing f(x) + f(h) instead is incorrect and will derail the entire calculation.
Sign errors in the quotient rule, forgetting the chain rule multiplier, and dropping the “+ C” on indefinite integrals round out the list. These aren’t gaps in understanding. They’re habits, and the fix is the same for all of them: work slowly, write every step, and check your algebra before moving on. The calculus itself is usually the easy part. Keeping the algebra clean is what separates a correct solution from a frustrating one.

