Using the current status of mathematical operation supported by Tiddlywiki 5.1.21+ and without using third party plugins
is there any way to calculate the standard deviation?

Use case:
I have a tiddler per student and these tiddler have a field called score which keep the student score. I wish to calculate the class standard deviation for this course scores.
Ref:
I can calculate the average or mean (mu in the above picture, the formula at the right)
\define mean(filter)
<$vars
xcount ={{{ [subfilter<__filter__>count[]] }}}
xsum ={{{ [subfilter<__filter__>sum[]] }}} >
<$text text={{{ [<xsum>divide<xcount>] }}}/>
</$vars>
\end
For example
mean: <<mean filter:"[tag[student]has[score]get[score]]">>
--Mohammad
p.s:
If TW supports power operator like "1 2 +[power[2]" and "1 2 +[power[0.5]]" then it was straight forward to compute the standard deviation.
So, the question may be how implement fractional and complete power in TW