Omni Calculator logo

Cubic Regression Calculator

Created by Anna Szczepanek, PhD
Reviewed by Wojciech Sas, PhD and Jack Bowater
Last updated: Jan 18, 2024


Use Omni's cubic regression calculator whenever you want to fit the cubic model of regression to a dataset. With its help, you'll be able to quickly determine the cubic polynomial that best models your data. If you need to learn more about this technique, scroll down to find an article where we give the cubic regression formula, explain how to calculate cubic regression by hand, and illustrate all this theory with an example of cubic regression!

Definition of cubic regression

In general, regression is a statistical technique that allows us to model the relationship between two variables by finding a curve that best fits the observed samples. If this curve corresponds to a polynomial, we deal with the polynomial regression, which you can discover in the polynomial regression calculator.

In the cubic regression model, we deal with cubic functions, that is, polynomials of degree 3. You can see an example in the picture below. The idea is the same as in other regression models, like linear regression, where we try to fit a straight line to data points, or quadratic regression, where we deal with parabolas. You can discover more about them in the dedicated Omni tools, that is the linear regression calculator and the quadratic regression calculator.

As we now understand the cubic polynomial regression model, so let's discuss the cubic regression formula.

Cubic regression example.
Cubic regression for a dataset of six points

The formula for cubic regression

To discuss the cubic regression formula in a more formal way, we need to introduce some notation. Let us, therefore, consider a set of data points:

(x1,y1), ..., (xn,yn).

The cubic regression function takes the form:

y = a + bx + cx² + dx³,

where a, b, c, d are real numbers, called coefficients of the cubic regression model. As you can see, we model how the change in x affects the value of y. In other words, we assume here that x is the independent (explanatory) variable and y is the dependent (response) variable.

  • If d = 0, we obtain quadratic regression; and
  • If c = d = 0, then we get a simple linear regression model.

And that's it when it comes to the cubic regression equation! The main challenge now is to determine the actual values of the four coefficients. To find the coefficients of the cubic regression model, we usually resort to the least-squares method. That is, we look for such values of a, b, c, d that minimize the squared distance between each data point:

(xi, yi),

and the corresponding point predicted by the cubic regression equation:

(xi, a + bxi + cxi2 + dxi3).

"OK, but this doesn't help that much in finding these values", you're probably thinking, and we completely agree. In what follows, we discuss how to determine the coefficients in cubic regression function by hand. A quicker solution is, of course, to use Omni's cubic regression calculator 😉.

How to use this cubic regression calculator?

Here's a short instruction on how to use our cubic regression calculator:

  1. Input your sample - up to 30 points. Remember that the calculator needs at least 4 points to fit the cubic regression function to your data!
  2. The calculator will display the scatter plot of your data and the cubic curve fitted to these points.
  3. Below the scatter plot, you will find the cubic regression equation for your data.
  4. If you need the coefficients computed with a higher precision, click the advanced mode of our cubic regression calculator. A field will appear where you can change the number of significant figures.

How to find cubic regression by hand?

It's high time we discussed how to compute the coefficients of cubic regression by hand. We'll use the projection approach, which is a very quick method as it uses matrix operations.

Let us introduce some necessary notation:

  • We let X be a matrix with four columns and n rows, where n is the number of data points. We fill the first column with ones, the second with the observed values x1, ..., xn of the explanatory (independent) variable, the third with squares of these observed values, and the fourth with cubes of these observed values:
[1x1x12x131x2x22x231xNxN2xN3]\quad \small \begin{bmatrix} 1 & x_1 & x_1^2 & x_1^3 \\ 1 & x_2 & x_2^2 & x_2^3 \\ \vdots & \vdots& \vdots & \vdots \\ 1 & x_N & x_N^2 & x_N^3 \\ \end{bmatrix}

This matrix is often called the model matrix.

  • We let y be a column vector containing the values y1, ..., yn of the response (dependent) variable:
[y1y2yN]\quad \small \begin{bmatrix} y_1\\ y_2 \\ \vdots \\ y_N \end{bmatrix}
  • We let β be the column of the coefficients of the cubic regression model that we're looking for:
[abcd]\quad \small \begin{bmatrix} a\\ b \\ c \\ d \end{bmatrix}

Keep in mind that the order matters - start with a at the top and finish with d at the bottom!

Now, to determine the actual values of the coefficients, we just use the so-called normal equation:

β = (XTX)-1XTy,

where:

  • XT - Transpose of X;

  • (XTX)-1 - Inverse of XTX; and

  • The operation between every two matrices is matrix multiplication.

⚠️ Keep in mind that for some very peculiar datasets, the inverse of XTX might not exist. If this happens, you cannot fit the cubic polynomial regression to this data.

As you can see, it's not that hard to find cubic regression by hand, yet there are some challenges along the way. To get a better grasp of how to do all these computations in practice, let's solve an example of cubic regression together.

Cubic regression example

Let us find the cubic regression function for the following dataset:

(0, 1), (2, 0), (3, 3), (4, 5), (5, 4).

Here are our matrices:

  • The matrix X:
[10001248139271416641525125]\quad \scriptsize \begin{bmatrix} 1& 0& 0 &0 \\ 1& 2& 4& 8 \\ 1& 3& 9 &27 \\ 1& 4& 16& 64 \\ 1& 5& 25 &125 \end{bmatrix}
  • The vector y:
[10354]\quad \scriptsize \begin{bmatrix} 1 \\ 0 \\ 3 \\ 5 \\ 4 \end{bmatrix}

We apply the formula step-by-step:

  • First, we determine XT:
[11111023450491625082764125]\quad \scriptsize \begin{bmatrix} 1& 1& 1& 1& 1 \\ 0& 2& 3& 4& 5 \\ 0& 4& 9& 16& 25 \\ 0& 8& 27& 64& 125 \end{bmatrix}
  • Next, we compute XTX:
[514542241454224978542249784424224978442420514]\quad \scriptsize \begin{bmatrix} 5 &14 &54& 224 \\ 14& 54& 224 &978 \\ 54 &224& 978 &4424 \\ 224& 978 &4424 & 20514 \end{bmatrix}
  • Then, we find (XTX)-1:
[0.99870.95440.28440.02670.95445.51282.78770.34880.28442.78771.49870.19340.02670.34880.19340.0254] \scriptsize \begin{bmatrix} 0.9987& -0.9544 &0.2844& -0.0267 \\ -0.9544& 5.5128 &-2.7877& 0.3488 \\ 0.2844& -2.7877& 1.4987& -0.1934 \\ -0.0267& 0.3488& -0.1934& 0.0254 \\ \end{bmatrix}
  • Finally, we perform the matrix multiplication (XTX)-1XTy. The linear regression coefficients we wanted to find are:
[0.99735.07553.06870.3868]\quad \scriptsize \begin{bmatrix} 0.9973 \\ -5.0755 \\ 3.0687 \\ -0.3868 \end{bmatrix}
  • Therefore, the cubic regression function that best fits our data is:

    y = 0.9973 - 5.0755x + 3.0687x² - 0.3868x³.

As you can see, to find the cubic linear regression formula by hand, we need to perform a lot of calculations. Thankfully, there's Omni's cubic regression calculator 😊!

FAQ

What is cubic regression?

Cubic regression is a statistical technique finds the cubic polynomial (a polynomial of degree 3) that best fits our dataset. This is a special case of polynomial regression, other examples including simple linear regression and quadratic regression.

How to find cubic regression?

To calculate cubic regression, we use the method of least-squares. In practice, we employ the normal equation which employs the model matrix X, involving the independent variable, and the vector y, which contains the values of the dependent variable. Through a series of matrix operations, this equation allows us to find the coefficients of cubic regression.

When to use cubic regression?

Use a cubic equation when you see in the scatter plot (or you have some prior theory that leads you to believe) that your data follows a cubic curve. Remember, though, that we want our models to be as simple as possible, so, whenever possible, try to fit a simpler model, like simple linear or quadratic regression.

Can I fit cubic regression to 3 data points?

You can fit many (infinitely many, in fact) cubic curves to 3 data points. You need 4 data points to find a unique cubic model. Note, that with 4 points the fit will be perfect, i.e., all the points will lie at the curve!

Anna Szczepanek, PhD
Cubic model y = a + bx + cx2 + dx3
Enter your data (up to 30 points)
x₁
y₁
x₂
y₂
x₃
y₃
x₄
y₄
Enter at least 4 points (both x and y coordinates) to get your model.
Check out 26 similar inference, regression, and statistical tests calculators 📉
Absolute uncertaintyAB testCoefficient of determination… 23 more
People also viewed…

Alien civilization

The alien civilization calculator explores the existence of extraterrestrial civilizations by comparing two models: the Drake equation and the Astrobiological Copernican Limits👽

Chilled drink

With the chilled drink calculator, you can quickly check how long you need to keep your drink in the fridge or another cold place to have it at its optimal temperature. You can follow how the temperature changes with time with our interactive graph.

Quartile

The quartile calculator is a simple tool to help you find the quartiles of your dataset (and some additional extra information).

SMp(x)

SMp(x) distribution calculator can generate a six-parameter probability function, which can simulate virtually every known probability distribution.
Copyright by Omni Calculator sp. z o.o.
Privacy, Cookies & Terms of Service