What do you call a statistical mean that is calculated from upper and lower extremes in any given...
Why were these characters absent in Spider-Man: Far From Home?
What happens if a company buys back all of its shares?
How do you give a date interval with diffuse dates?
Demographic consequences of closed loop reincarnation
Random piece of plastic
Why are flying carpets banned while flying brooms are not?
Why isn't a binary file shown as 0s and 1s?
Grouping into more groups in one iteration
Why won't some unicode characters print to my terminal?
How to interpret a promising preprint that was never published?
Why jet engines sound louder on the ground than inside the aircraft?
Why does a tetrahedral molecule like methane have a dipole moment of zero?
Who or what determines if a curse is valid or not?
Why did my "seldom" get corrected?
I have found a mistake on someone's code published online: what is the protocol?
Applying for jobs with an obvious scar
Is it legal for a supermarket to refuse to sell an adult beer if an adult with them doesn’t have their ID?
Did Hitler say this quote about homeschooling?
Does unblocking power bar outlets through short extension cords increase fire risk?
Is surviving this (blood loss) scenario possible?
How can electric field be defined as force per charge, if the charge makes its own, singular electric field?
Time signature inconsistent
Difference between c++14 and c++17 using: `*p++ = *p`
Which GPUs to get for Mathematical Optimization (if any)?
What do you call a statistical mean that is calculated from upper and lower extremes in any given dataset?
Probability and limitsWhat is the difference between “mean value” and “average”?What do you call an average that does not include outliers?How do you take a weighted mean where values farther from a given number are weighted less?How to generate random data that conforms to a given mean and upper / lower endpoints?Confidence Levels for Mean of measured distributionSample Within a SampleConsidering sample size when comparing average ratingsCombining both arithmetic and geometric mean in dataset with zeros and extreme valuesHow to find the average given that you have the mean, standard deviation and amount?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
$begingroup$
What do you call a statistical mean that is calculated from upper and lower extremes in any given dataset?
For example, if you have a set:
{ -2, 0 , 8, 9, 1, 50, -2, 6}
The upper extreme of this set is 50
and lower extreme is -2
. So, average of the extremes would be (-2 + 50 / 2) = 48/2 = 24
Is there a term for this kind of statistical mean?
mathematical-statistics mean average
New contributor
$endgroup$
add a comment |
$begingroup$
What do you call a statistical mean that is calculated from upper and lower extremes in any given dataset?
For example, if you have a set:
{ -2, 0 , 8, 9, 1, 50, -2, 6}
The upper extreme of this set is 50
and lower extreme is -2
. So, average of the extremes would be (-2 + 50 / 2) = 48/2 = 24
Is there a term for this kind of statistical mean?
mathematical-statistics mean average
New contributor
$endgroup$
3
$begingroup$
It's the "midrange".
$endgroup$
– jbowman
8 hours ago
add a comment |
$begingroup$
What do you call a statistical mean that is calculated from upper and lower extremes in any given dataset?
For example, if you have a set:
{ -2, 0 , 8, 9, 1, 50, -2, 6}
The upper extreme of this set is 50
and lower extreme is -2
. So, average of the extremes would be (-2 + 50 / 2) = 48/2 = 24
Is there a term for this kind of statistical mean?
mathematical-statistics mean average
New contributor
$endgroup$
What do you call a statistical mean that is calculated from upper and lower extremes in any given dataset?
For example, if you have a set:
{ -2, 0 , 8, 9, 1, 50, -2, 6}
The upper extreme of this set is 50
and lower extreme is -2
. So, average of the extremes would be (-2 + 50 / 2) = 48/2 = 24
Is there a term for this kind of statistical mean?
mathematical-statistics mean average
mathematical-statistics mean average
New contributor
New contributor
New contributor
asked 8 hours ago
blackbeardblackbeard
232 bronze badges
232 bronze badges
New contributor
New contributor
3
$begingroup$
It's the "midrange".
$endgroup$
– jbowman
8 hours ago
add a comment |
3
$begingroup$
It's the "midrange".
$endgroup$
– jbowman
8 hours ago
3
3
$begingroup$
It's the "midrange".
$endgroup$
– jbowman
8 hours ago
$begingroup$
It's the "midrange".
$endgroup$
– jbowman
8 hours ago
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
It's called the midrange and while it's not the most widely used statistic in the world it does have some relevance to the uniform distribution.
Let's introduce the order statistic notation: if have $n$ i.i.d. random variables $X_1, ..., X_n$, then the notation $X_{(i)}$ is used to refer to the $i$-th largest of the set ${X_1, ..., X_n}$. Thus we have:
$$ X_{(1)} ≤ X_{(2)} ≤···≤ X_{(n)} tag{1} $$
Where $X_{(1)}$ is the minimum and $X_{(n)}$ is the maximum element. Then range and midrange are defined as:
$$ begin{align}
R & = X_{(n)} - X_{(1)} tag{2} \
A & = frac{X_{(1)} + X_{(n)}}{2} tag{3} \
end{align}
$$
These formulas are taken from CRC Standard Probability and Statistics Tables and Formulae, section 4.6.6.
If $X_i$ is assumed to have a uniform distribution $X_i sim U(alpha, beta)$, where $alpha$ and $beta$ are the lower and upper bounds respectively, then we can give the MLE estimates in terms of these formulas:
$$
begin{align}
hat{alpha} & = X_{(1)} tag{4} \
hat{beta} & = X_{(n)} tag{5}
end{align}
$$
The mean of the resulting distribution is the same as the midrange:
$$
begin{align}
mu & = A = frac{X_{(1)} + X_{(n)}}{2} tag{6} \
end{align}
$$
This is probably the only use for this particular statistic.
$endgroup$
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "65"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
blackbeard is a new contributor. Be nice, and check out our Code of Conduct.
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%2fstats.stackexchange.com%2fquestions%2f418171%2fwhat-do-you-call-a-statistical-mean-that-is-calculated-from-upper-and-lower-extr%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$
It's called the midrange and while it's not the most widely used statistic in the world it does have some relevance to the uniform distribution.
Let's introduce the order statistic notation: if have $n$ i.i.d. random variables $X_1, ..., X_n$, then the notation $X_{(i)}$ is used to refer to the $i$-th largest of the set ${X_1, ..., X_n}$. Thus we have:
$$ X_{(1)} ≤ X_{(2)} ≤···≤ X_{(n)} tag{1} $$
Where $X_{(1)}$ is the minimum and $X_{(n)}$ is the maximum element. Then range and midrange are defined as:
$$ begin{align}
R & = X_{(n)} - X_{(1)} tag{2} \
A & = frac{X_{(1)} + X_{(n)}}{2} tag{3} \
end{align}
$$
These formulas are taken from CRC Standard Probability and Statistics Tables and Formulae, section 4.6.6.
If $X_i$ is assumed to have a uniform distribution $X_i sim U(alpha, beta)$, where $alpha$ and $beta$ are the lower and upper bounds respectively, then we can give the MLE estimates in terms of these formulas:
$$
begin{align}
hat{alpha} & = X_{(1)} tag{4} \
hat{beta} & = X_{(n)} tag{5}
end{align}
$$
The mean of the resulting distribution is the same as the midrange:
$$
begin{align}
mu & = A = frac{X_{(1)} + X_{(n)}}{2} tag{6} \
end{align}
$$
This is probably the only use for this particular statistic.
$endgroup$
add a comment |
$begingroup$
It's called the midrange and while it's not the most widely used statistic in the world it does have some relevance to the uniform distribution.
Let's introduce the order statistic notation: if have $n$ i.i.d. random variables $X_1, ..., X_n$, then the notation $X_{(i)}$ is used to refer to the $i$-th largest of the set ${X_1, ..., X_n}$. Thus we have:
$$ X_{(1)} ≤ X_{(2)} ≤···≤ X_{(n)} tag{1} $$
Where $X_{(1)}$ is the minimum and $X_{(n)}$ is the maximum element. Then range and midrange are defined as:
$$ begin{align}
R & = X_{(n)} - X_{(1)} tag{2} \
A & = frac{X_{(1)} + X_{(n)}}{2} tag{3} \
end{align}
$$
These formulas are taken from CRC Standard Probability and Statistics Tables and Formulae, section 4.6.6.
If $X_i$ is assumed to have a uniform distribution $X_i sim U(alpha, beta)$, where $alpha$ and $beta$ are the lower and upper bounds respectively, then we can give the MLE estimates in terms of these formulas:
$$
begin{align}
hat{alpha} & = X_{(1)} tag{4} \
hat{beta} & = X_{(n)} tag{5}
end{align}
$$
The mean of the resulting distribution is the same as the midrange:
$$
begin{align}
mu & = A = frac{X_{(1)} + X_{(n)}}{2} tag{6} \
end{align}
$$
This is probably the only use for this particular statistic.
$endgroup$
add a comment |
$begingroup$
It's called the midrange and while it's not the most widely used statistic in the world it does have some relevance to the uniform distribution.
Let's introduce the order statistic notation: if have $n$ i.i.d. random variables $X_1, ..., X_n$, then the notation $X_{(i)}$ is used to refer to the $i$-th largest of the set ${X_1, ..., X_n}$. Thus we have:
$$ X_{(1)} ≤ X_{(2)} ≤···≤ X_{(n)} tag{1} $$
Where $X_{(1)}$ is the minimum and $X_{(n)}$ is the maximum element. Then range and midrange are defined as:
$$ begin{align}
R & = X_{(n)} - X_{(1)} tag{2} \
A & = frac{X_{(1)} + X_{(n)}}{2} tag{3} \
end{align}
$$
These formulas are taken from CRC Standard Probability and Statistics Tables and Formulae, section 4.6.6.
If $X_i$ is assumed to have a uniform distribution $X_i sim U(alpha, beta)$, where $alpha$ and $beta$ are the lower and upper bounds respectively, then we can give the MLE estimates in terms of these formulas:
$$
begin{align}
hat{alpha} & = X_{(1)} tag{4} \
hat{beta} & = X_{(n)} tag{5}
end{align}
$$
The mean of the resulting distribution is the same as the midrange:
$$
begin{align}
mu & = A = frac{X_{(1)} + X_{(n)}}{2} tag{6} \
end{align}
$$
This is probably the only use for this particular statistic.
$endgroup$
It's called the midrange and while it's not the most widely used statistic in the world it does have some relevance to the uniform distribution.
Let's introduce the order statistic notation: if have $n$ i.i.d. random variables $X_1, ..., X_n$, then the notation $X_{(i)}$ is used to refer to the $i$-th largest of the set ${X_1, ..., X_n}$. Thus we have:
$$ X_{(1)} ≤ X_{(2)} ≤···≤ X_{(n)} tag{1} $$
Where $X_{(1)}$ is the minimum and $X_{(n)}$ is the maximum element. Then range and midrange are defined as:
$$ begin{align}
R & = X_{(n)} - X_{(1)} tag{2} \
A & = frac{X_{(1)} + X_{(n)}}{2} tag{3} \
end{align}
$$
These formulas are taken from CRC Standard Probability and Statistics Tables and Formulae, section 4.6.6.
If $X_i$ is assumed to have a uniform distribution $X_i sim U(alpha, beta)$, where $alpha$ and $beta$ are the lower and upper bounds respectively, then we can give the MLE estimates in terms of these formulas:
$$
begin{align}
hat{alpha} & = X_{(1)} tag{4} \
hat{beta} & = X_{(n)} tag{5}
end{align}
$$
The mean of the resulting distribution is the same as the midrange:
$$
begin{align}
mu & = A = frac{X_{(1)} + X_{(n)}}{2} tag{6} \
end{align}
$$
This is probably the only use for this particular statistic.
answered 7 hours ago
olooneyolooney
2,0588 silver badges19 bronze badges
2,0588 silver badges19 bronze badges
add a comment |
add a comment |
blackbeard is a new contributor. Be nice, and check out our Code of Conduct.
blackbeard is a new contributor. Be nice, and check out our Code of Conduct.
blackbeard is a new contributor. Be nice, and check out our Code of Conduct.
blackbeard is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Cross Validated!
- 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%2fstats.stackexchange.com%2fquestions%2f418171%2fwhat-do-you-call-a-statistical-mean-that-is-calculated-from-upper-and-lower-extr%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
3
$begingroup$
It's the "midrange".
$endgroup$
– jbowman
8 hours ago