Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Introducing Calculus: Can Change Occur at an Instant?

Lesson ~10 min read

In simple terms: In simple terms, this topic is about finding the speed of something at a single moment by looking at its average speed over smaller and smaller time periods.

Why this matters

Imagine you're on a road trip with your family from Dallas to Atlanta. Somewhere in Mississippi, you glance at the car's dashboard and see the speedometer reads exactly 65 mph.

What does that number actually mean? It's not your average speed for the whole trip—that includes pit stops for gas and snacks. It's not your average speed for the last hour. It's your speed right now, at this single, fleeting instant.

But how can you have a speed in an instant? Speed is distance divided by time. If the "time" is a single instant, isn't the change in time zero? And doesn't that mean we have to divide by zero? This is the exact question that stumped thinkers for centuries, and answering it is our first step into the world of calculus.

Concept overview

flowchart TD
    A[Want instantaneous rate at point P] --> B{Try average rate formula?};
    B --> C[Fails! Results in 0/0 division];
    C --> D[Calculus Solution: Use a Limit];
    D --> E[1. Pick a small interval containing P, like [P, P+h]];
    E --> F[2. Calculate average rate over that interval];
    F --> G[3. Shrink the interval (make h smaller)];
    G --> F;
    F --> H{Observe the value the average rates approach...};
    H --> I[This limit IS the instantaneous rate!];
A flowchart showing the process of finding an instantaneous rate of change. It begins with the problem that the average rate formula fails, leading to division by zero. The chart then shows the calculus solution: using a limit by calculating average rates over progressively smaller intervals and observing the value they approach.

Core explanation

Hello there! I'm Saavi, and I'm so glad you're here. Let's dive into the very first big idea of calculus. It all starts with a simple question that has a surprisingly deep answer.

Average vs. "Right Now"

You already know about average speed. If you drive 120 miles in 2 hours, your average speed is:

Average Speed = (Total Distance) / (Total Time) = 120 miles / 2 hours = 60 mph

This is an average rate of change. It tells you what happened over a span of time. In calculus, we write this more formally. If an object's position is described by a function p(t), where t is time, the average rate of change between time t1 and t2 is:

Average Rate = (p(t2) - p(t1)) / (t2 - t1)

Look familiar? It's the slope formula from algebra: (y2 - y1) / (x2 - x1). The average rate of change is just the slope of the line connecting two points on a graph (we call this a secant line).

The Problem with "Instantaneous"

Now for the tricky part. What if we want the speed at the instant t = 2 hours? Not over an interval, but right on the dot.

Let's try to use our formula. We want the rate at t=2, so t1 = 2 and t2 = 2.

Rate = (p(2) - p(2)) / (2 - 2) = 0 / 0

This is mathematical chaos. We can't divide by zero. The formula for average rate of change is undefined for a single point. For centuries, this was a major roadblock. How can we talk about the speed of a baseball the instant it leaves the pitcher's hand if we can't calculate it?

The Calculus Solution: The Limit

Calculus offers a brilliant workaround. Instead of trying to calculate the rate at t=2, let's calculate the average rate over a tiny interval that includes t=2 and see what happens as we make that interval smaller and smaller.

Imagine we're tracking a runner, Maya. Her position is given by p(t) = t^2 meters. We want her speed at exactly t = 1 second.

  1. Let's find her average speed from t=1 to t=2: (p(2) - p(1)) / (2 - 1) = (2^2 - 1^2) / 1 = 3 m/s

  2. That's a pretty wide interval. Let's shrink it. How about t=1 to t=1.5? (p(1.5) - p(1)) / (1.5 - 1) = (1.5^2 - 1^2) / 0.5 = (2.25 - 1) / 0.5 = 2.5 m/s

  3. Getting closer. Let's shrink it again. t=1 to t=1.1: (p(1.1) - p(1)) / (1.1 - 1) = (1.1^2 - 1^2) / 0.1 = (1.21 - 1) / 0.1 = 2.1 m/s

  4. Even smaller! t=1 to t=1.01: (p(1.01) - p(1)) / (1.01 - 1) = (1.01^2 - 1^2) / 0.01 = (1.0201 - 1) / 0.01 = 2.01 m/s

Do you see the pattern? As our time interval gets ridiculously small, the average speed isn't jumping around randomly. It's zeroing in on a specific number: 2.

This "value that we're approaching" is the core idea of a limit. We can't plug in 0 for the change in time, but we can see what happens as the change in time approaches 0.

The instantaneous rate of change is the limit of the average rates of change as the interval shrinks to zero.

Think of it like this: You're looking at a satellite image of the US coastline. It's jagged and complex. But as you zoom in on one tiny, tiny section of beach in Florida, it starts to look less like a curve and more like a straight line. The slope of that "almost-straight" line at that exact spot is the instantaneous rate of change.

This is the magic of calculus. It gives us a mathematically sound way to move from average change over an interval to instantaneous change at a point, all by using this powerful idea of a limit.

Worked examples

Example 1

Dropping a Ball from a Building

The height (in feet) of a ball dropped from a tall building in Chicago is given by the function h(t) = -16t^2 + 400, where t is in seconds. Estimate the instantaneous velocity of the ball at t = 3 seconds.

Solution Walkthrough:

We want the velocity at the instant t=3. We can't just plug t=3 into an average velocity formula, because that would give us 0/0. Instead, we'll find the average velocity over smaller and smaller intervals starting at t=3.

  1. 1
    Choose a small interval
    Let's start by looking at the interval from t=3 to t=3.1.
    • h(3) = -16(3)^2 + 400 = -16(9) + 400 = -144 + 400 = 256 ft
    • h(3.1) = -16(3.1)^2 + 400 = -16(9.61) + 400 = -153.76 + 400 = 246.24 ft
    • Average velocity: (h(3.1) - h(3)) / (3.1 - 3) = (246.24 - 256) / 0.1 = -9.76 / 0.1 = -97.6 ft/s
  2. 2
    Shrink the interval
    That's a good first guess, but we can do better. Let's use the interval from t=3 to t=3.01.
    • We already know h(3) = 256.
    • h(3.01) = -16(3.01)^2 + 400 = -16(9.0601) + 400 = -144.9616 + 400 = 255.0384 ft
    • Average velocity: (h(3.01) - h(3)) / (3.01 - 3) = (255.0384 - 256) / 0.01 = -0.9616 / 0.01 = -96.16 ft/s
  3. 3
    Analyze the results
    • Over the interval [3, 3.1], the average velocity was -97.6 ft/s.
    • Over the tiny interval [3, 3.01], the average velocity was -96.16 ft/s.
    • The numbers seem to be getting closer and closer to -96 ft/s. (The exact answer is indeed -96 ft/s, which you'll soon learn to calculate precisely!)
Example 2

Reading from a Table

Carlos is testing his new electric scooter. A sensor records his distance from home at various times. Estimate his velocity at t = 10 minutes.

Time (min) 6 8 10 12 14
Distance (miles) 1.5 2.0 2.8 3.8 5.0

Solution Walkthrough:

We don't have a function this time, only data points. This means we can't make our interval infinitely small. We have to work with the data we're given.

  1. 1
    Identify the goal
    We need to estimate the velocity (a rate of change) at t=10.
  2. 2
    Find the best interval
    The best way to estimate a rate at a point using a table is to use the smallest, most symmetric interval available around that point. Here, that's the interval from t=8 to t=12.
    • Why this is a good choice: It centers the point we care about (t=10) between two data points.
    • Average velocity over [8, 12]: (Distance at 12 - Distance at 8) / (12 - 8) = (3.8 - 2.0) / 4 = 1.8 / 4 = 0.45 miles/min.
  3. 3
    Alternative (and often better) method
    An even more precise estimate comes from averaging the rates of the two intervals on either side of t=10.
    • Rate on interval before [8, 10]: (2.8 - 2.0) / (10 - 8) = 0.8 / 2 = 0.4 miles/min.
    • Rate on interval after [10, 12]: (3.8 - 2.8) / (12 - 10) = 1.0 / 2 = 0.5 miles/min.
    • Average these two rates: (0.4 + 0.5) / 2 = 0.45 miles/min.

Try it yourself

Ready to try on your own? Don't worry about getting the perfect answer right away. Focus on setting up the process correctly.

  1. 1
    Gravity on the Moon
    An astronaut drops a rock on the moon. Its height in meters is given by h(t) = -0.81t^2 + 20. Estimate the instantaneous velocity of the rock at t = 2 seconds.
    • Hint: Calculate the average velocity over the interval [2, 2.01]. What value does it seem to be approaching?
  2. 2
    Leaky Faucet
    The table below shows the total volume of water that has leaked from a faucet. Estimate the rate at which water is leaking at t = 30 seconds.
Time (s) 0 15 30 45 60
Volume (mL) 0 10 24 45 70