Testing of Hypothesis In statistical hypothesis testing, our goal is to use sample data to make decisions about population characteristics. We set up two competing claims: the null hypothesis ( $H_0$ ), which typically represents the status quo or no effect, and the alternative hypothesis ( $H_1$ ), which represents the effect we are looking for. However, not all statistical tests are created equal. The challenge is to find the "best" test—one that correctly rejects a false null hypothesis as often as possible. This is where the concepts of Most Powerful (MP) and Uniformly Most Powerful (UMP) tests become critical. A most powerful test that is one of size $\alpha$ that have highest power among all powerful test that exist. Consider, for instance, a clinical trial designed to evaluate whether a new drug is more effective than the standard treatment. A poorly chosen test may fail to detect a g...
Power Series Distribution Power series distributions are the discrete type of distributions and we can say it they are family of some other distributions like Poisson Distribution, Geometric Distribution, Negative Binomial Distribution. Suppose a = $(a_1, a_2, a_3,...........a_n)$ is a sequence of non negative real numbers then power series coefficient is given by `f_(\theta)(x)=\sum_{x=1}^{n} a_{x}\theta^{x}` the Power Series is defined by $\lim_{n\arrow \infty) f_{\theta}(x)$ and is denoted by `f(x) = \sum_{x=1}^{\infty} a_{x}\theta^{x} ` this power is with center 0 and its radius of convergence is $|x|< R$ where is $ R = \left( \frac{1}{\lim |\frac{a_{n+1}}{a_n}|} \right)$ if radius of convergence is $\infty$ then the series is convergent for all real values of $x$,. Its Distribution if we restrict the $x \in [0, r)$, this will be our parameter space. then its distribution is given by Power series distribution) [Roy and Mitra (1957)] Let $X_1, X_2...
Let \(X_{1},X_{2},X_{3},...............X_{n}\) be an identically independent sample drawn from the exponential family. `f(x ; \theta) = c(\theta)h(x)\exp{(p(\theta).T(x))} \tag{1}` The joint density function of exponential family is `f(x_{i} \, ; \, \theta) = c(\theta)^n \prod_{i=1}^{n} h(x_{i}) \exp\left(\sum_{i=1}^{n} p(\theta) \cdot T(x_{i})\right)` here $h(\underline{x})=\prod_{i=1}^{n}h(x_{i})$ and `g\left(\sum_{i=1}^{n} T(x_i), p(\theta)\right) = \left[c(\theta)\right]^n \exp\left(\sum_{i=1}^{n} T(x_i) \cdot p(\theta)\right)` The exponential families of distributions are also called regular families since they satisfy certain mild regularity conditions apart from the property that its support does not depend on the parameter $\boldsymbol{\theta}$. We have an important result \[ E_{\boldsymbol{\eta}} \left( \sum_{i=1}^{n} T_j(X_i) \right) = n \frac{\partial...
MLE Estimation and Log-Likelihood Contour for Pareto Distribution
Log-Likelihood Contour for Pareto Distribution
MLE Estimation for Pareto Distribution
Python code for Python code for Pareto Distribution
Pareto Distribution Code Block
# Python program to plot the Pareto distribution curveimport numpy as np
import matplotlib.pyplot as plt
from scipy.stats import pareto
# Parameters for the Pareto distribution
alpha = 3# Shape parameter
scale = 1# Scale parameter# Generate x values
x = np.linspace(1, 5, 1000)
# Pareto PDF values
y = pareto.pdf(x, alpha, scale=scale)
# Plot the Pareto distribution curve
plt.plot(x, y, label='Pareto Distribution', color='orange')
plt.title('Pareto Distribution Curve')
plt.xlabel('x')
plt.ylabel('Density')
plt.legend()
plt.grid(True)
# Show the plot
plt.show()