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

Semi-log Plots

Lesson ~12 min read 8 MCQs

In simple terms: In simple terms, semi-log plots are a special type of graph that can turn an exponential curve into a straight line, making it much easier to analyze and model data that grows very quickly.

Why this matters

Imagine you're tracking the number of subscribers for a new streaming service started by a popular creator. The first week, it gets 100 sign-ups. The next, 300. Then 900. The graph of subscribers vs. time starts to curve upwards so steeply it practically goes vertical on your chart. How can you tell if this growth is truly exponential and predict next month's numbers when the curve is flying off the page?

This is a common problem in fields from biology (tracking bacteria) to finance (compound interest). When data explodes like this, our standard graphs can become almost useless. In this lesson, you'll learn a powerful technique to "tame" these wild curves. We'll use a special kind of graph that acts like a pair of mathematical glasses, turning that impossible curve into a simple, predictable straight line.

Standard plot of exponential growth, showing rapid vertical increase.

Concept overview

flowchart TD
    A[Start with data set (x, y)] --> B{Plot on standard graph};
    B --> C{Does it look like an exponential curve?};
    C -->|No| D[Exponential model is not appropriate];
    C -->|Yes| E[Transform data to (x, log y)];
    E --> F{Plot transformed data on a semi-log graph};
    F --> G{Is it a straight line?};
    G -->|Yes| H[Find linear equation ŷ = mx + B];
    H --> I[Solve for exponential parameters];
    I --> J[b = 10^m];
    I --> K[a = 10^B];
    J --> L[Write final model y = ab^x];
    K --> L;
    G -->|No| D;
This flowchart shows the process of using a semi-log plot to model exponential data. It begins with a data set, which is plotted and identified as a curve, leading to a transformation of the y-values to log(y). If the new plot is linear, a linear equation is found, and its slope and intercept are used to solve for the parameters of the final exponential model.

Core explanation

Hello everyone, let's dive into one of my favorite tools for making sense of rapid growth: the semi-log plot.

The Problem with Curves

Let's say you have some data from a science experiment. You're tracking the population of a microbe culture in a petri dish.

Time (x, in hours) Population (y)
0 2
1 6
2 18
3 54
4 162

If you plot these points on a standard graph (what we call a Cartesian coordinate system), you get a familiar shape: a curve that gets steeper and steeper. This is the classic "J-curve" of exponential growth.

Microbe population on a standard linear scale, showing exponential growth.

While it's great you can see the pattern, this curve is tricky to work with. How do you find its exact equation just by looking? How can you be sure it's exponential and not something else, like a polynomial? It's tough to find the slope because the slope is constantly changing.

Putting on "Logarithmic Glasses"

This is where the semi-log plot comes in. The name sounds complex, but the idea is simple. "Semi" means half. A semi-log plot is a graph where one axis is normal (linear) and the other is logarithmic. For our purposes, we'll keep the x-axis linear and change the y-axis to a logarithmic scale.

What does a logarithmic scale even mean? On a normal ruler, the distance between 1 and 2 is the same as the distance between 8 and 9. On a logarithmic scale, the spacing is based on powers of 10. The distance between 1 (which is 10⁰) and 10 (which is 10¹) is the same as the distance between 10 and 100 (10²), and between 100 and 1000 (10³).

This scale compresses large values. The jump from 100 to 1000 takes up the same amount of space as the jump from 1 to 10. It's like a funhouse mirror for numbers that helps us see fast-growing data more clearly.

When we plot our microbe data on a semi-log plot (with a log y-axis), something amazing happens. The points (0, 2), (1, 6), (2, 18), (3, 54), (4, 162) form a perfect straight line.

This is the single most important takeaway: If your data looks like a straight line on a semi-log plot, then you can be confident that an exponential model is appropriate. You've "linearized" the data.

The Math Behind the Magic

Why does this work? It comes down to a clever use of logarithm properties.

Let's assume our data follows an exponential model: y = a * b^x

In our microbe example, the equation is y = 2 * 3^x. (The initial value a is 2, and the growth factor b is 3).

Now, let's take the common logarithm (log base 10) of both sides of the general equation: log(y) = log(a * b^x)

Using the log property log(m*n) = log(m) + log(n), we can split the right side: log(y) = log(a) + log(b^x)

Using the log property log(m^p) = p * log(m), we can bring the x down: log(y) = log(a) + x * log(b)

Let's rearrange this to look more familiar. log(y) = (log b)x + log(a)

Now, look closely at that equation. It looks just like the equation for a line, Y = mX + B!

  • Our new "Y" coordinate is log(y).
  • Our new slope m is log(b).
  • Our "X" coordinate is still just x.
  • Our new y-intercept B is log(a).

By taking the logarithm of the y-values, we transformed an exponential relationship into a linear one. This process is called linearization.

Finding the Model from the Linearized Data

This is where the real power comes in. Because the transformed data is linear, we can use all our familiar tools for lines.

Let's go back to our microbe data. We have the points (x, y). To linearize them, we create a new set of points, (x, log y).

x y log(y)
0 2 log(2) ≈ 0.301
1 6 log(6) ≈ 0.778
2 18 log(18) ≈ 1.255
3 54 log(54) ≈ 1.732
4 162 log(162) ≈ 2.210

Now, if we find the slope between any two of these new points, say (0, 0.301) and (4, 2.210): m = (2.210 - 0.301) / (4 - 0) = 1.909 / 4 ≈ 0.477

And we know that m = log(b). So, log(b) ≈ 0.477. To find b, we do the inverse of log base 10, which is raising 10 to that power: b ≈ 10^0.477 ≈ 3.0

What about the y-intercept? From our table, the point (0, 0.301) tells us the y-intercept of the line is 0.301. We know the intercept is log(a). So, log(a) ≈ 0.301. a ≈ 10^0.301 ≈ 2.0

Putting it all together, our model is y = a * b^x, which is y = 2 * 3^x. We recovered the original exponential equation just by analyzing the straight line!

A key advantage here is that we didn't have to add or subtract any constants to make the data fit. The logarithmic transformation does all the heavy lifting for us.

Microbe population on a semi-log plot, showing linearization of exponential data.

Worked examples

Let's walk through a couple of examples to make this solid.

Example 1

From Data to Exponential Model

A biologist, Priya, is studying a new type of yeast. She records the following data on its mass over several days.

Day (x) Mass (y, in mg)
1 12
2 35
3 110
4 320

Priya suspects this is exponential growth. Let's determine if an exponential model is appropriate and, if so, find the model.

Step 1: Linearize the data by taking the log of the y-values. We'll use the common log (base 10). Let's create a new table with a log(y) column.

x y log(y)
1 12 log(12) ≈ 1.08
2 35 log(35) ≈ 1.54
3 110 log(110) ≈ 2.04
4 320 log(320) ≈ 2.51

Step 2: Check for linearity by finding the slope between points. If the data is truly exponential, the slope between our new (x, log y) points should be roughly constant.

  • Slope between day 1 and 2: (1.54 - 1.08) / (2 - 1) = 0.46
  • Slope between day 3 and 4: (2.51 - 2.04) / (4 - 3) = 0.47

These are very close! This tells us the points (x, log y) lie on a line, so an exponential model for the original data is a great fit. The average slope m is about 0.465.

Step 3: Find the equation of the line log(y) = mx + B. We have the slope m ≈ 0.465. Let's use the point-slope form with our first point (1, 1.08): log(y) - 1.08 = 0.465(x - 1) log(y) = 0.465x - 0.465 + 1.08 log(y) = 0.465x + 0.615

Step 4: Convert the linear equation back to an exponential one. We know m = log(b) and B = log(a).

  • Find b: log(b) = 0.465b = 10^0.465 ≈ 2.92
  • Find a: log(a) = 0.615a = 10^0.615 ≈ 4.12

So, the exponential model is approximately y = 4.12 * (2.92)^x.

Example 2

Working Backwards from a Semi-log Graph

You are given a semi-log plot of some data (x, y) where the y-axis is on a log base-10 scale. The data forms a straight line described by the equation: ŷ = -0.25x + 3.1 (Note: The ŷ here represents log(y)).

Find the exponential model y = ab^x that corresponds to this line.

Step 1: Identify the slope m and y-intercept B from the linear equation. Comparing ŷ = -0.25x + 3.1 to ŷ = mx + B, we can see:

  • m = -0.25
  • B = 3.1

Step 2: Relate the linear parameters to the exponential parameters. Remember our key relationships:

  • m = log(b)
  • B = log(a)

Step 3: Solve for a and b. This is the crucial "un-logging" step.

  • To find b: log(b) = -0.25 b = 10^(-0.25) ≈ 0.56
  • To find a: log(a) = 3.1 a = 10^(3.1) ≈ 1258.9

Step 4: Write the final exponential model. Substitute the values of a and b you just found into y = ab^x. The exponential model is y = 1258.9 * (0.56)^x.

Yeast mass data linearized by taking the logarithm of y-values.

Try it yourself

Ready to try one on your own?

Problem 1: The value of a rare baseball card is recorded over several years. A financial analyst plots the data on a semi-log plot (with a log base-10 y-axis) and finds that the data points form a straight line. The line passes through the points (x=2, ŷ=3.5) and (x=5, ŷ=4.1), where x is years since 2010 and ŷ is log(Value).

Find the exponential model V(x) = ab^x that describes the card's value.

Hints:

  1. First, find the slope of the line using the two points you're given. Remember, these are already your linearized (x, ŷ) points.
  2. Once you have the slope m, you know m = log(b). How do you solve for b?
  3. Use the point-slope form to find the y-intercept B of the line. You know B = log(a). How do you solve for a?
  4. Put it all together in the form V(x) = ab^x.

Give it a shot! The process is just like the worked examples.

Semi-log plot of baseball card value, showing the linear relationship.