Given an arbitrary vector $\mathbf{y}\in \mathbb{R}^{n}$, I would like to find $\mathbf{x^*} \in \mathbb{R}^n$ which is $$ \text{argmin}_\mathbf{x} \|\mathbf{x}-\mathbf{y} \|_F^2$$ s.t. $$ \mathbf{x}\cdot \underline{1} = 0$$ where $\underline{1}$ is a vector of 1's with length $n$. How do I solve for $\mathbf{x}^*$?
2026-03-26 01:07:22.1774487242
Quadratic cost minimization with zero mean constraint
25 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in LINEAR-ALGEBRA
- An underdetermined system derived for rotated coordinate system
- How to prove the following equality with matrix norm?
- Alternate basis for a subspace of $\mathcal P_3(\mathbb R)$?
- Why the derivative of $T(\gamma(s))$ is $T$ if this composition is not a linear transformation?
- Why is necessary ask $F$ to be infinite in order to obtain: $ f(v)=0$ for all $ f\in V^* \implies v=0 $
- I don't understand this $\left(\left[T\right]^B_C\right)^{-1}=\left[T^{-1}\right]^C_B$
- Summation in subsets
- $C=AB-BA$. If $CA=AC$, then $C$ is not invertible.
- Basis of span in $R^4$
- Prove if A is regular skew symmetric, I+A is regular (with obstacles)
Related Questions in QUADRATIC-PROGRAMMING
- Minimization of a convex quadratic form
- Using a Lagrange multiplier to handle an inequality constraint
- Given matrix $Q$ and vector $s$, find a vector $w$ that minimizes $\| Qw-s \|^2$
- Linear Matrix Least Squares with Linear Equality Constraint - Minimize $ {\left\| A - B \right\|}_{F}^{2} $ Subject to $ B x = v $
- Closed form solution to this constrained optimization?
- Bound on the solution of a constrained least squares problem
- Minimisation of a scalar function with respect to a vector
- How to reformulate an objective function with absolute
- Generalized Projection of a Matrix onto the Non Negative Orthant
- Optimize quadratic non-convex function with project gradient descent
Related Questions in CONSTRAINT-PROGRAMMING
- A minimization chance constrained optimization problem
- Reducing the set of constraints in an optimization problem
- How to formulate the constrained optimization problem?
- How to solve a linear program with some infeasible constraints?
- How does terminal constraint lead to degeneracy?
- Linear optimization with rotation matrix constraint
- Team optimization with constraints
- How to deal with Constraints having Large or Infinite Domains.
- Is it possible to check quality of solution in an optimization problem? If yes, how?
- Does redundancy removal in linear programming follow a distributive property?
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?
Extend $\textbf{1}$ to a basis of $\mathbb{R}^n$, e.g., $\{\textbf{1},\textbf{e}_1,\ldots, \textbf{e}_{n-1}\}$ will do, where $\textbf{e}_i$ is the standard basis vector having $1$ in the $i$-th coordinate, and $0$ elsewhere. Now run Gram-Schmidt orthogonalization on this basis to get a orthogonal basis $\{\textbf{1},\textbf{b}_1,\ldots, \textbf{b}_{n-1}\}$, thus getting the basis, $\{\textbf{b}_1,\ldots, \textbf{b}_{n-1}\}$, of the subspace, $S$, that is orthgonal to $\textbf{1}$. Clearly $\textbf{x}$ belongs to $S$ and is the projection of $\textbf{y}$ onto $S$. Hence, $$\textbf{x}=\frac{\langle\textbf{b}_1, \textbf{y}\rangle}{\|\textbf{b}_1\|^2}\textbf{b}_1+\cdots+\frac{\langle\textbf{b}_{n-1}, \textbf{y}\rangle}{\|\textbf{b}_{n-1}\|^2}\textbf{b}_{n-1}$$