I want to find the minimum of the following optimization problem but don't even understand the problem in the first place.
$$\min\limits_{AX=b}\frac{1}{2}X^{T}QX+C^TX+\alpha$$
where $Q, A \in M_{n \times n} (\Bbb{R})$, $X, b, C \in \Bbb{R^n}$ and $\alpha \in \Bbb{R}$. Also, matrix $Q$ is symmetric and positive definite.
This is all I have about the problem. So, can anyone please, explain the problem to me? Thanks for your time.
You are given two fixed $n \times n$ matrices $Q$ and $A$, two fixed n-dimensional vectors $B$ and $C$, and a fixed real number $\alpha$. You are supposed to minimize the value of the objective function $f(X)=\tfrac12 X^T Q X + B^T X + \alpha$ by varying $X$, subject to the constraint $AX=B$.
So, if we define $S = \{X \in \mathbb{R}^n : AX=B\}$, then you need to find $\bar X \in S$ Such that $f(\bar X) \le f(X)$ for all $X \in S$.
So, this is a quadratic programming problem with a set of linear equality constraints.