From 65a755388a7d1351b46402f78c68b5d1d800058f Mon Sep 17 00:00:00 2001 From: paciic <70255895+Paciic@users.noreply.github.com> Date: Tue, 14 Oct 2025 23:27:58 +0100 Subject: [PATCH 1/2] Create 3.tex --- .../means_medians_modes_moments/problems/3.tex | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/chapters/6/sections/means_medians_modes_moments/problems/3.tex diff --git a/src/chapters/6/sections/means_medians_modes_moments/problems/3.tex b/src/chapters/6/sections/means_medians_modes_moments/problems/3.tex new file mode 100644 index 00000000..2de38f3b --- /dev/null +++ b/src/chapters/6/sections/means_medians_modes_moments/problems/3.tex @@ -0,0 +1,18 @@ +Let k be the median, and F be the CDF of X, such that +\[F(k) = 1/2\] +since X is continuous from 1 onwards, and 0 otherwise, +\begin{align*} +F(k) &= \int_{-\infty}^{k}{\frac{a}{x^{a+1}}} \\ +&= \int_{1}^{k}{\frac{a}{x^{a+1}}} \\ +&= 1 - k^{-a} +\end{align*} +It follows that +\begin{align*} +1-k^{-a} &= \frac{1}{2} \\ +k &= \sqrt[a]{2} +\end{align*} +The median is therefore \(\sqrt[a]{2}\). \\ + +Let $f$ be the PDF of X, then, +\[f'(x) = -a(a+1)x^{-a-2}\] +since $f'(x) \le 0$ for all $x \in [1,\infty)$, $f(x)$ is strictly decreasing between 1 and \(\infty\) and 0 otherwise, $f(x)$ has maximum at 1, so 1 is the mode. From 3498618e534608bfe623db3e08a8d4934a4317c3 Mon Sep 17 00:00:00 2001 From: paciic <70255895+Paciic@users.noreply.github.com> Date: Tue, 14 Oct 2025 23:28:34 +0100 Subject: [PATCH 2/2] Update index.tex --- src/chapters/6/sections/means_medians_modes_moments/index.tex | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/chapters/6/sections/means_medians_modes_moments/index.tex b/src/chapters/6/sections/means_medians_modes_moments/index.tex index c70da03e..7511188e 100644 --- a/src/chapters/6/sections/means_medians_modes_moments/index.tex +++ b/src/chapters/6/sections/means_medians_modes_moments/index.tex @@ -2,3 +2,5 @@ \section{Means, Medians, Modes, Moments} \subsection{problem 1} \input{problems/1} +\subsection{problem 3} +\input{problems/3}