From 55f6ed8e54f6da237bd2dc789c9ab0937aaa2c7d Mon Sep 17 00:00:00 2001 From: Muhammed Mustafa Date: Sat, 11 Jun 2022 17:19:11 +0200 Subject: [PATCH] Fix(curriculum): external RMS link in CIP (#46389) * removed wiki link * removed wiki text * added abbr tag * Clearer description Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com> * Better RMS description Co-authored-by: Jeremy L Thompson * Nice catch Co-authored-by: Jeremy L Thompson Co-authored-by: Sem Bauke <46919888+Sembauke@users.noreply.github.com> Co-authored-by: Jeremy L Thompson --- .../rosetta-code/averages-root-mean-square.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/averages-root-mean-square.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/averages-root-mean-square.md index 080f3e6eeaa..485d2c09942 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/averages-root-mean-square.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/averages-root-mean-square.md @@ -8,11 +8,9 @@ dashedName: averagesroot-mean-square # --description-- -Compute the [Root mean square]( "wp: Root mean square") of the numbers 1 through 10 inclusive. +Compute the Root Mean Square (RMS) of the numbers 1 through 10 inclusive. -The *root mean square* is also known by its initials RMS (or rms), and as the **quadratic mean**. - -The RMS is calculated as the mean of the squares of the numbers, square-rooted: +The RMS is calculated by taking the square root of the mean of the squares of the numbers, given by the equation: $$x\_{\\mathrm{rms}} = \\sqrt {{{x_1}^2 + {x_2}^2 + \\cdots + {x_n}^2} \\over n}. $$