I need to solve the following exercise where I'm asked to find the coefficient $\beta $ of the following model $ y_i = \beta x_{i}^2 + \epsilon_{i}$ knowing only that $ E[x_{i}^2\epsilon_{i}] = 0$ and check whether is consistent. I know that it's like an exercise for kids but I don't know how to proceed because of the $x^2$. I wrote the equation for $\hat{\beta}= (X'^{2}X^{2})^{-1} (X^{2}Y) $ then I basically got stuck since I don't know how to proceed. Can someone explain me how to deal with this case and in general with non linear also for the part of consistency?? Thanks
2026-03-26 09:14:52.1774516492
Non linear regression with one parameter
87 Views Asked by user326096 https://math.techqa.club/user/user326096/detail At
1
There are 1 best solutions below
Related Questions in REGRESSION
- How do you calculate the horizontal asymptote for a declining exponential?
- Linear regression where the error is modified
- Statistics - regression, calculating variance
- Why does ANOVA (and related modeling) exist as a separate technique when we have regression?
- Gaussian Processes Regression with multiple input frequencies
- Convergence of linear regression coefficients
- The Linear Regression model is computed well only with uncorrelated variables
- How does the probabilistic interpretation of least squares for linear regression works?
- How to statistically estimate multiple linear coefficients?
- Ridge Regression in Hilbert Space (RKHS)
Related Questions in REGRESSION-ANALYSIS
- Average distance between consecutive points in a one-dimensional auto-correlated sequence
- A question regarding standardized regression coefficient in a regression model with more than one independent variable
- find a linear function $f(x,y) = ax + by + c$ which minimizes the total square error
- Calculating Taylor coefficients by fitting
- Interpretation of Sampling Distribution and Relationship to Test Statistics
- How are the equations of non linear data determined?
- The expected value of mean sum of square for the simple linear regression
- For the simple linear regression model, show that the elements of the hat matrix $H$ are...
- Derivation of Maximum Likelihood Estimators for heteroskedasticity case of simple linear regression
- How to fit a cumulative time series?
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
1) You said nothing about the distribution of $\epsilon$, so I will assume that the standard assumptions that the error terms are i.i.d $\epsilon \sim \mathcal{N}(0,\sigma^2)$ hold. This is crucial, as different assumptions may complicate the maximization of the Likelihood functions w.r.t to $\beta$. So, assuming the $i.i.d$ behavior of the noise terms, we can apply the classic OLS algorithm (the results will be the same as in the maximization problem).
2) This regression model, $y = \beta x^2+\epsilon$, is linear. The linearity of the regression model is defined w.r.t the coefficients. I.e., whether $\frac{\partial}{\partial \beta}y$ depends on $\beta$ or not. Hence, for all elemntary $g$, the model $y=\beta g(x) + \epsilon$ is linear.
3) As such you can simply apply the stated result $\hat{\beta} = (X'X)^{-1}X'Y $ or derive it implicitly, \begin{align} \min_{\beta} S(\beta) =\min_{\beta} \sum_{i=1}^{n}\epsilon_i^2 = \min_{\beta} \sum_{i=1}^n(y_i - \beta x_i^2)^2 , \end{align} so taking derivative w.r.t $\beta$ and equating to $0$, you will get that $$ \hat{\beta} = \frac{\sum y_i x_i^2}{\sum x_{i}^4}. $$ Note that if you want to use the matrix notation, then $\mathrm{x} = (x_1, ..., x_n)'$ and $\mathrm{y} = (y_1, ..., y_n)'$. It will yield the same result.