Difference between revisions of "Manuals/calci/DEVSQ"
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
==Description== | ==Description== | ||
− | *This function gives the sum of | + | *This function gives the sum of Squares of Deviation of a given set of numbers. |
*This function will calculate with following steps : | *This function will calculate with following steps : | ||
#Find the mean. | #Find the mean. | ||
Line 18: | Line 18: | ||
*DEVSQ(50,52, 54, 56, 58, 60) | *DEVSQ(50,52, 54, 56, 58, 60) | ||
'''Steps''' | '''Steps''' | ||
− | Mean=50+52+ 54+ 56+ 58+ 60/6=330/6=55 | + | Mean = (50+52+ 54+ 56+ 58+ 60)/6 = 330/6 = 55 |
Deviation = |50-55|,|52-55|,|54-55|,|56-55|,|58-55|,|60-55| = 5,3,1,1,3,5 | Deviation = |50-55|,|52-55|,|54-55|,|56-55|,|58-55|,|60-55| = 5,3,1,1,3,5 | ||
− | 5^2,3^2,1^2,1^2,3^2,5^2 = 25+9+1+1+9+25 = 70 | + | Squares of Deviation = 5^2,3^2,1^2,1^2,3^2,5^2 = 25+9+1+1+9+25 = 70 |
*DEVSQ(5,-10,13,-7,9)=404 | *DEVSQ(5,-10,13,-7,9)=404 | ||
*DEVSQ(1.2,6.4,8.3,5.7,10)=44.068 | *DEVSQ(1.2,6.4,8.3,5.7,10)=44.068 | ||
==See Also== | ==See Also== | ||
− | *[[Manuals/calci/AVEDEV | AVEDEV ]] | + | *[[Manuals/calci/AVEDEV | AVEDEV]] |
− | *[[Manuals/calci/STDEV | STDEV ]] | + | *[[Manuals/calci/STDEV | STDEV]] |
==References== | ==References== | ||
[http://en.wikipedia.org/wiki/Absolute_value| Absolute_value] | [http://en.wikipedia.org/wiki/Absolute_value| Absolute_value] |
Revision as of 05:32, 21 November 2013
DEVSQ(n1,n2...)
- where are any real numbers.
Description
- This function gives the sum of Squares of Deviation of a given set of numbers.
- This function will calculate with following steps :
- Find the mean.
- Find the deviation of each value. For that, subtract all numbers with its mean value.
- Square each Deviation Values and find its sum.
- where is the every observation and is the Arithmetic Mean.
- Here we have to give more than one arguments and arguments can be either numbers,names,logical values,
arrays or cell references that contain numbers.
- Also cells with the value of '0' are considered and the arguments contains text, logical values or empty cells are ignored.
This function will give the result as error, when the text couldn't be converted to numbers.
Examples
- DEVSQ(50,52, 54, 56, 58, 60)
Steps
Mean = (50+52+ 54+ 56+ 58+ 60)/6 = 330/6 = 55 Deviation = |50-55|,|52-55|,|54-55|,|56-55|,|58-55|,|60-55| = 5,3,1,1,3,5 Squares of Deviation = 5^2,3^2,1^2,1^2,3^2,5^2 = 25+9+1+1+9+25 = 70
- DEVSQ(5,-10,13,-7,9)=404
- DEVSQ(1.2,6.4,8.3,5.7,10)=44.068