How can I easily calculate the dot product in Google Sheets?

The dot product is a mathematical operation used to find the scalar quantity of two vectors. In Google Sheets, this can be easily calculated by using the “DOTPRODUCT” function. This function takes two arrays of numbers as inputs and returns the dot product value. Simply enter the function, followed by the two arrays, and press enter to get the result. This makes it convenient and efficient to calculate the dot product in Google Sheets for various mathematical and data analysis tasks.

Easily Calculate the Dot Product in Google Sheets


This tutorial explains how to calculate the dot product in Google Sheets.

What is the Dot Product?

Given vector a = [a1, a2, a3] and vector b = [b1, b2, b3], the dot product of vector a and vector b, denoted as a · b, is given by:

a · b = a1 * b1 + a2 * b2 + a3 * b3

For example, if a = [2, 5, 6] and b = [4, 3, 2], then the dot product of a and b would be equal to:

a · b = 2*4 + 5*3 + 6*2

a · b = 8 + 15 + 12

a · b = 35

In essence, the dot product is the sum of the products of the corresponding entries in two vectors.

How to Find the Dot Product in Google Sheets

To find the dot product of two vectors in Google Sheets, we can use the followings steps:

1. Enter the data.

First, enter the data values for the first vector in one column and the data values for the second vector in the second column:

2. Calculate the dot product.

To calculate the dot product, we can use the SUMPRODUCT() function, which uses the following syntax:

SUMPRODUCT(array1, [array2], …)

  • array – the first array or range to multiply, then add.
  • array2 – the second array or range to multiply, then add.

The following image shows how to use this function to calculate the dot product between these two vectors:

Dot product in Google Sheets

This produces the value 35, which matches the answer we got by hand.

Note that the SUMRRODUCT() function works for vectors of any length. For example, we could use this function to calculate the dot product between two vectors both of length 20:

Dot product formula in Google Sheets

Potential Errors in Calculating the Dot Product

The function SUMPRODUCT() will return a #VALUE! error if the vectors do not have equal length.

For example, if the first vector has length 20 and the second vectorhas length 19, then the formula =SUMPRODUCT(A1:A20, B1:B19) will return an error.

The two vectors need to have the same length in order for the dot product to be calculated.

Related: How to Calculate the Dot Product in Excel

x