Given a set of numbers, find the majority group (non equal numbers) The Next CEO of Stack OverflowCalculating Percent Variance Of Dates?How do I calculate a confidence interval with a description that on average one group is less than another?Statistical Test for Two Group MeansHow to calculate continous variance of given set of functions?How can I get the covariance just given the variance?Variance of first 30 odd numbersFind the expectations of the largest and smallest order statistics $X_(n)$ and $X_(1)$ respectively. Uniform distributionFind the critical value in Tukey's HSDFind the average spacing between an array of numbersGiven arbitrary set if each member map randomly to a different set injectively, is the k smallest number of the new set representative of the old set?
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
What steps are necessary to read a Modern SSD in Medieval Europe?
Make solar eclipses exceedingly rare, but still have new moons
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Do I need to write [sic] when a number is less than 10 but isn't written out?
Running a General Election and the European Elections together
Is French Guiana a (hard) EU border?
What happened in Rome, when the western empire "fell"?
Won the lottery - how do I keep the money?
Where do students learn to solve polynomial equations these days?
How I can get glyphs from a fraktur font and use them as identifiers?
Is micro rebar a better way to reinforce concrete than rebar?
How to install OpenCV on Raspbian Stretch?
How to count occurrences of text in a file?
The exact meaning of 'Mom made me a sandwich'
What flight has the highest ratio of timezone difference to flight time?
Is it okay to majorly distort historical facts while writing a fiction story?
Flying from Cape Town to England and return to another province
Does soap repel water?
Is there a way to save my career from absolute disaster?
Why doesn't UK go for the same deal Japan has with EU to resolve Brexit?
Why the difference in type-inference over the as-pattern in two similar function definitions?
If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?
Reference request: Grassmannian and Plucker coordinates in type B, C, D
Given a set of numbers, find the majority group (non equal numbers)
The Next CEO of Stack OverflowCalculating Percent Variance Of Dates?How do I calculate a confidence interval with a description that on average one group is less than another?Statistical Test for Two Group MeansHow to calculate continous variance of given set of functions?How can I get the covariance just given the variance?Variance of first 30 odd numbersFind the expectations of the largest and smallest order statistics $X_(n)$ and $X_(1)$ respectively. Uniform distributionFind the critical value in Tukey's HSDFind the average spacing between an array of numbersGiven arbitrary set if each member map randomly to a different set injectively, is the k smallest number of the new set representative of the old set?
$begingroup$
Suppose the given set is $0.01,0.2,4,0.3$ then the result should be $1,2,4$ respectively, this means finding the largest (at least $n/2 + 1)$ group with the smallest variance.
My problem is how to classify such groups so I could calculate the variance?
statistics
$endgroup$
add a comment |
$begingroup$
Suppose the given set is $0.01,0.2,4,0.3$ then the result should be $1,2,4$ respectively, this means finding the largest (at least $n/2 + 1)$ group with the smallest variance.
My problem is how to classify such groups so I could calculate the variance?
statistics
$endgroup$
add a comment |
$begingroup$
Suppose the given set is $0.01,0.2,4,0.3$ then the result should be $1,2,4$ respectively, this means finding the largest (at least $n/2 + 1)$ group with the smallest variance.
My problem is how to classify such groups so I could calculate the variance?
statistics
$endgroup$
Suppose the given set is $0.01,0.2,4,0.3$ then the result should be $1,2,4$ respectively, this means finding the largest (at least $n/2 + 1)$ group with the smallest variance.
My problem is how to classify such groups so I could calculate the variance?
statistics
statistics
edited Mar 20 at 5:01
YuiTo Cheng
2,1862937
2,1862937
asked Mar 19 at 12:23
user9275053user9275053
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
For a set of $m$ numbers $a_j$, the variance is
$$ frac1m sum_j a_j^2 - frac1m^2left(sum_j a_jright)^2 $$
If you have $n$ numbers $a_1, ldots, a_n$, sorted in increasing or decreasing order, and you want a subset of size $m$ with least possible variance, it's easy to see that you'll want to take
$a_k, ldots, a_k+m-1$ for some $k$. So there are not too many cases to try.
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3153999%2fgiven-a-set-of-numbers-find-the-majority-group-non-equal-numbers%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
For a set of $m$ numbers $a_j$, the variance is
$$ frac1m sum_j a_j^2 - frac1m^2left(sum_j a_jright)^2 $$
If you have $n$ numbers $a_1, ldots, a_n$, sorted in increasing or decreasing order, and you want a subset of size $m$ with least possible variance, it's easy to see that you'll want to take
$a_k, ldots, a_k+m-1$ for some $k$. So there are not too many cases to try.
$endgroup$
add a comment |
$begingroup$
For a set of $m$ numbers $a_j$, the variance is
$$ frac1m sum_j a_j^2 - frac1m^2left(sum_j a_jright)^2 $$
If you have $n$ numbers $a_1, ldots, a_n$, sorted in increasing or decreasing order, and you want a subset of size $m$ with least possible variance, it's easy to see that you'll want to take
$a_k, ldots, a_k+m-1$ for some $k$. So there are not too many cases to try.
$endgroup$
add a comment |
$begingroup$
For a set of $m$ numbers $a_j$, the variance is
$$ frac1m sum_j a_j^2 - frac1m^2left(sum_j a_jright)^2 $$
If you have $n$ numbers $a_1, ldots, a_n$, sorted in increasing or decreasing order, and you want a subset of size $m$ with least possible variance, it's easy to see that you'll want to take
$a_k, ldots, a_k+m-1$ for some $k$. So there are not too many cases to try.
$endgroup$
For a set of $m$ numbers $a_j$, the variance is
$$ frac1m sum_j a_j^2 - frac1m^2left(sum_j a_jright)^2 $$
If you have $n$ numbers $a_1, ldots, a_n$, sorted in increasing or decreasing order, and you want a subset of size $m$ with least possible variance, it's easy to see that you'll want to take
$a_k, ldots, a_k+m-1$ for some $k$. So there are not too many cases to try.
answered Mar 19 at 12:38
Robert IsraelRobert Israel
330k23218473
330k23218473
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3153999%2fgiven-a-set-of-numbers-find-the-majority-group-non-equal-numbers%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown