The first optimization model: $$ \begin{array}{cl} \arg \min \limits_{C} & \sum\limits_{i=1}^{3}\gamma_i\|{C_{(i)}}\|_*\\ \mathrm{s.t.} & \|A\mathbf{c}-\mathbf{b}\|_2^2+ \mathbf{c}^TG\mathbf{c}+2\mathbf{g}^T\mathbf{c}\le tol \end{array} $$
The second optimization model: $$ \begin{array}{cl} \arg \min \limits_{C} & \sum\limits_{i=1}^{3}\gamma_i\|{C_{(i)}}\|_*+\lambda(\|A\mathbf{c}-\mathbf{b}\|_2^2+ \mathbf{c}^TG\mathbf{c}+2\mathbf{g}^T\mathbf{c}) \end{array} $$ where $C$ is a three-order tensor, $C_{(i)}$ is a matrix whose column are the mode-i fibers of $C$,(i=1,2,3),$\mathbf{c}$ is vec$(C)$, $G,\mathbf{g}$ are given,$\lambda$ is a parameter.
My question: are these two problems equivalent to each other?
You can make the second one almost equivalent to the first one, by modifying it slightly ($\lambda$ becomes a variable instead of a fixed parameter) \begin{array}{cl} \min \limits_{C}\max \limits_{\lambda} & \sum\limits_{i=1}^{3}\gamma_i\|{C_{(i)}}\|_*+\lambda(\|A\mathbf{c}-\mathbf{b}\|_2^2+ \mathbf{c}^TG\mathbf{c}+2\mathbf{g}^T\mathbf{c}-tol). \end{array} Intuitively, the $\max_{\lambda}$ makes sure that $C$ satisfies the constraint $$\|A\mathbf{c}-\mathbf{b}\|_2^2+ \mathbf{c}^TG\mathbf{c}+2\mathbf{g}^T\mathbf{c}\le tol.$$ In the context of constrained optimization, $\lambda$ is called the Lagrange mulitplier and you usually solve the problem by switching the order of $\min$ and $\max$, that is, to solve \begin{array}{cl} \max \limits_{\lambda} \min \limits_{C} & \sum\limits_{i=1}^{3}\gamma_i\|{C_{(i)}}\|_*+\lambda(\|A\mathbf{c}-\mathbf{b}\|_2^2+ \mathbf{c}^TG\mathbf{c}+2\mathbf{g}^T\mathbf{c}-tol), \end{array} related to duality. The reason for "almost equivalent" is that the sets under the constraint could be empty, and obviously $$ \max \limits_{\lambda} \sum\limits_{i=1}^{3}\gamma_i\|{C_{(i)}}\|_*+\lambda(\|A\mathbf{c}-\mathbf{b}\|_2^2+ \mathbf{c}^TG\mathbf{c}+2\mathbf{g}^T\mathbf{c}-tol) = +\infty.$$ For this reason, it is better to use $\sup$ and $\inf$, instead of $\max$ and $\min$.