SUMSQ, SUMXMY2, SUMX2MY2, SUMXPY2 functions - Sum function contains squared values in Excel
The following article details the total functions that contain squared values: SUMSQ, SUMXMY2, SUMX2MY2, SUMXPY2
1. The SUMSQ function
Description: The SUMSQ function is used to calculate the sum of squares of numbers.
Syntax: = SUMSQ (number1, number2, .) .
Inside:
- number1, number2 . are the values to sum of squares, using up to 255 number values. Number parameters can be numbers, arrays, or referenced to numeric data.
Attention:
- If the number values are not numbers -> the function returns the #VALUE! Error value
- The formula to calculate the SUMSQ function (x, y) = x ^ 2 + y ^ 2.
2. SUMXMY2 function
2.1. SUMXMY2 function
The function sums the difference of the square of the corresponding elements from left to right in the data array SUMX2MY2 (x, y) = Σ (x2-y2) .
Syntax: = SUMX2MY2 (array _x, array_y) .
2.2. SUMX2PY2 function
The function performs the sum of squares of elements in the data array: SUMXPY2 (x, y) = Σ (x2 + y2) .
Syntax: = SUMX2PY2 (array_x, array_y) .
2.3. SUMXMY2 function
The function performs the sum of squares of elements in the array: SUMXMY2 (x, y) = Σ (x - y) 2 .
Syntax: = SUMXMY2 (array_x, array_y) .
In all 3 functions above:
- array_x , array_y are 2 data arrays that contain values that need the sum of the difference of squares. array_x , array_y must be the same size.
Attention:
- If array_x , array_y are text values that the function ignores are not counted.
- If array_x , array_y is not the same size -> the function returns N / A value.
- Name memorization: Basically all three functions are summing the functions of squared values. In all 3 functions only differ from 1 to 2 characters. Based on that difference to remember the function name:
+ Function SUMXMY2 : Contains the letter M means Minus = minus => Calculate the sum of the difference of squared values.
+ SUMX2PY2 function : Contains the letter P means Plus = Add => Calculate the sum of squared values.
+ SUMXMY2 function : Does not contain the number 2, the letter M is Minus -> Calculate the sum of squares.
3. Example of using the 4 functions above
- Summing squares using the SUMSQ function.
In the cell to calculate enter the formula = SUMSQ (B8: B12, C8: C12) -> Press Enter the result received is:
- Calculate the square of the squares using the SUMX2MY2 function .
In the cell to calculate enter the formula: = SUMX2MY2 (B8: B12, C8: C12) .
Pressing Enter results returns:
- Calculate the sum of squares using the SUMX2PY2 function .
In the cell to calculate enter the formula: = SUMX2PY2 (B8: B12, C8: C12) .
Pressing Enter results returns:
- Calculate the sum of squares of differences 2 values using the SUMMY2 function .
In the cell to calculate enter the formula: = SUMXMY2 (B8: B12, C8: C12) .
Pressing Enter results returns:
The above is how to use the sum function with square values. Although the function name looks very complicated, you may notice it a bit.
Good luck!
You should read it
- CHISQ.INV function - The function returns the inverse of the probability of the left end of the distribution when squared in Excel
- CHISQ.DIST - Function returns the distribution when squared in Excel
- Basic Excel functions that anyone must know
- MODE.MULT function - The function returns a vertical array of the most common values in Excel
- How to use the IFS function in Excel 2016
- How to use Excel's VALUE function
- How to use the kernel function (PRODUCT function) in Excel
- PHP functions
May be interested
- PHP functionsphp functions are similar to other programming languages. a function is a piece of code that takes one or more inputs in the parameter template, and performs some processing and returns a value.
- How to use the kernel function (PRODUCT function) in Excelin excel, product helps users to calculate product values, multiply arguments together, and return their results correctly.
- QUARTILE.INC function - The function returns the quartile of a dataset including values 0 and 1 in Excelquartile.inc function: the function returns the quartile of a data set, with percentile values from 0 to 1 including 0 and 1. support functions from execl 2010 onwards. syntax: quartile.inc (array, quart)
- How to combine Index and Match functions in Excelcombining the index and match functions in excel helps you find values accurately and quickly.
- CHISQ.INV.RT function - The function returns the inverse of the right end probability of the distribution when squared in Excelchisq.inv.rt function: the function returns the inverse of the right end probability of the distribution when squared. support function from excel 2010 version. syntax: chisq.inv.rt (probability, deg_freedom)
- CHISQ.DIST.RT function - The function returns the right end probability of the distribution when squared in Excelchisq.dist.rt function: the function returns the probability of the right end of the distribution when squared. support function from excel 2010 version. syntax: chisq.dist.rt (x, deg_freedom)
- 6 Conditional Functions That Make Excel Spreadsheets Smarterif your formulas get complex, conditional functions are a smarter choice, hidden in plain sight.
- CHIDIST function - Function returns the right end probability of the distribution when squared in Excelthe following article introduces the chidist function - the function returns the right end probability of a distribution when the distribution helps you have a basis to determine the correctness of the expected with the original hypothesis.
- How to use MID functions to get strings in Excelmid function in excel is a function that takes the middle character string corresponding to the value that the user requires to perform.
- Differentiate between SUM, SUMIF, SUMIFS and DSUM functionswhenever you enter a function = sum in a cell in excel, you will get a lot of functions starting with sum and wondering how they are different? this article will help you solve that question.