Meaning of success rate
$begingroup$
What is the meaning of success rate?
ex: success rate = 4%
Someone told me it means doing something 100 times consecutively and that there would be at least 4 times it succeeds.
But I think its not true. As far as I understand, 4% success rate of doing something is like when you do it, a perfectly balanced dice with 100 sides is cast, there are 4 green sides and 96 red sides. If you get a green side, you succeed otherwise you fail. So theoretically, you can fail 100 times consecutively or even infinitely because the success rate of a try A exists independently from other tries.
Which definition is correct, 1 or 2 or neither?
If 1 is correct then what do you call 2?
If 2 is correct how do you even calculate the success rate of doing anything? Since there's no way to know how many green/ red sides there are.
The reason Im asking this question is because as a computer science student, I often find myself implementing the success rate in my code using the definition(2). for ex:
randomly take a in (0..9)
if ( a <= 3) succeed
else fail
probability percentages
$endgroup$
add a comment |
$begingroup$
What is the meaning of success rate?
ex: success rate = 4%
Someone told me it means doing something 100 times consecutively and that there would be at least 4 times it succeeds.
But I think its not true. As far as I understand, 4% success rate of doing something is like when you do it, a perfectly balanced dice with 100 sides is cast, there are 4 green sides and 96 red sides. If you get a green side, you succeed otherwise you fail. So theoretically, you can fail 100 times consecutively or even infinitely because the success rate of a try A exists independently from other tries.
Which definition is correct, 1 or 2 or neither?
If 1 is correct then what do you call 2?
If 2 is correct how do you even calculate the success rate of doing anything? Since there's no way to know how many green/ red sides there are.
The reason Im asking this question is because as a computer science student, I often find myself implementing the success rate in my code using the definition(2). for ex:
randomly take a in (0..9)
if ( a <= 3) succeed
else fail
probability percentages
$endgroup$
add a comment |
$begingroup$
What is the meaning of success rate?
ex: success rate = 4%
Someone told me it means doing something 100 times consecutively and that there would be at least 4 times it succeeds.
But I think its not true. As far as I understand, 4% success rate of doing something is like when you do it, a perfectly balanced dice with 100 sides is cast, there are 4 green sides and 96 red sides. If you get a green side, you succeed otherwise you fail. So theoretically, you can fail 100 times consecutively or even infinitely because the success rate of a try A exists independently from other tries.
Which definition is correct, 1 or 2 or neither?
If 1 is correct then what do you call 2?
If 2 is correct how do you even calculate the success rate of doing anything? Since there's no way to know how many green/ red sides there are.
The reason Im asking this question is because as a computer science student, I often find myself implementing the success rate in my code using the definition(2). for ex:
randomly take a in (0..9)
if ( a <= 3) succeed
else fail
probability percentages
$endgroup$
What is the meaning of success rate?
ex: success rate = 4%
Someone told me it means doing something 100 times consecutively and that there would be at least 4 times it succeeds.
But I think its not true. As far as I understand, 4% success rate of doing something is like when you do it, a perfectly balanced dice with 100 sides is cast, there are 4 green sides and 96 red sides. If you get a green side, you succeed otherwise you fail. So theoretically, you can fail 100 times consecutively or even infinitely because the success rate of a try A exists independently from other tries.
Which definition is correct, 1 or 2 or neither?
If 1 is correct then what do you call 2?
If 2 is correct how do you even calculate the success rate of doing anything? Since there's no way to know how many green/ red sides there are.
The reason Im asking this question is because as a computer science student, I often find myself implementing the success rate in my code using the definition(2). for ex:
randomly take a in (0..9)
if ( a <= 3) succeed
else fail
probability percentages
probability percentages
edited Jan 16 at 23:06
Stewie
asked Jan 16 at 22:12


StewieStewie
32
32
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Success rate is, first of all, a rate (of success). So naturally its $$ frac{#{text{succesful events}}}{#{text{successful events} + text{unsuccessful events}}} ~~(= 0.04 = 4%)$$
here $#$ denotes a number (count) of events.
$endgroup$
add a comment |
$begingroup$
If you run the experiment 100 times the 4 times would be the green side ! This is what success rate means.
Yes you can fail 100 consecutively times, but if you run the experiment infinitely you will get an average of 4 percent. You should think of the percentage as a normalized value.
$endgroup$
$begingroup$
The success rate of each time I try the experiment exists independently from other tries. So doesnt 4 success out of 100 tries with 4% success rate mean 0.04^4 instead?
$endgroup$
– Stewie
Jan 16 at 22:21
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%2f3076356%2fmeaning-of-success-rate%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Success rate is, first of all, a rate (of success). So naturally its $$ frac{#{text{succesful events}}}{#{text{successful events} + text{unsuccessful events}}} ~~(= 0.04 = 4%)$$
here $#$ denotes a number (count) of events.
$endgroup$
add a comment |
$begingroup$
Success rate is, first of all, a rate (of success). So naturally its $$ frac{#{text{succesful events}}}{#{text{successful events} + text{unsuccessful events}}} ~~(= 0.04 = 4%)$$
here $#$ denotes a number (count) of events.
$endgroup$
add a comment |
$begingroup$
Success rate is, first of all, a rate (of success). So naturally its $$ frac{#{text{succesful events}}}{#{text{successful events} + text{unsuccessful events}}} ~~(= 0.04 = 4%)$$
here $#$ denotes a number (count) of events.
$endgroup$
Success rate is, first of all, a rate (of success). So naturally its $$ frac{#{text{succesful events}}}{#{text{successful events} + text{unsuccessful events}}} ~~(= 0.04 = 4%)$$
here $#$ denotes a number (count) of events.
answered Jan 16 at 22:39
sjoksjok
353
353
add a comment |
add a comment |
$begingroup$
If you run the experiment 100 times the 4 times would be the green side ! This is what success rate means.
Yes you can fail 100 consecutively times, but if you run the experiment infinitely you will get an average of 4 percent. You should think of the percentage as a normalized value.
$endgroup$
$begingroup$
The success rate of each time I try the experiment exists independently from other tries. So doesnt 4 success out of 100 tries with 4% success rate mean 0.04^4 instead?
$endgroup$
– Stewie
Jan 16 at 22:21
add a comment |
$begingroup$
If you run the experiment 100 times the 4 times would be the green side ! This is what success rate means.
Yes you can fail 100 consecutively times, but if you run the experiment infinitely you will get an average of 4 percent. You should think of the percentage as a normalized value.
$endgroup$
$begingroup$
The success rate of each time I try the experiment exists independently from other tries. So doesnt 4 success out of 100 tries with 4% success rate mean 0.04^4 instead?
$endgroup$
– Stewie
Jan 16 at 22:21
add a comment |
$begingroup$
If you run the experiment 100 times the 4 times would be the green side ! This is what success rate means.
Yes you can fail 100 consecutively times, but if you run the experiment infinitely you will get an average of 4 percent. You should think of the percentage as a normalized value.
$endgroup$
If you run the experiment 100 times the 4 times would be the green side ! This is what success rate means.
Yes you can fail 100 consecutively times, but if you run the experiment infinitely you will get an average of 4 percent. You should think of the percentage as a normalized value.
edited Jan 16 at 23:11
answered Jan 16 at 22:16


ItsYouItsYou
63
63
$begingroup$
The success rate of each time I try the experiment exists independently from other tries. So doesnt 4 success out of 100 tries with 4% success rate mean 0.04^4 instead?
$endgroup$
– Stewie
Jan 16 at 22:21
add a comment |
$begingroup$
The success rate of each time I try the experiment exists independently from other tries. So doesnt 4 success out of 100 tries with 4% success rate mean 0.04^4 instead?
$endgroup$
– Stewie
Jan 16 at 22:21
$begingroup$
The success rate of each time I try the experiment exists independently from other tries. So doesnt 4 success out of 100 tries with 4% success rate mean 0.04^4 instead?
$endgroup$
– Stewie
Jan 16 at 22:21
$begingroup$
The success rate of each time I try the experiment exists independently from other tries. So doesnt 4 success out of 100 tries with 4% success rate mean 0.04^4 instead?
$endgroup$
– Stewie
Jan 16 at 22:21
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%2f3076356%2fmeaning-of-success-rate%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