Consider the (non-linear) optimization problem ($P$)
$$max \quad3x_1 + 4x_2$$
$$s.t. \quad x_1^2 + x_2^2 \leq 25$$
$$ \quad x_1,x_2 \geq 0$$
Solve the Lagrangian dual problem.
I don't have a clue how the dual problem is even obtained since the constraint is nonlinear. Could anyone please help me?
Here is a first couple of steps. See http://en.wikipedia.org/wiki/Duality_(optimization) for more details on Lagrangian duals.
To convert the original problem into a minimization problem, we minimize $-3x_1-4x_2$. Your Lagrangian is $$ \Lambda(x_1, x_2, \lambda) = -3x_1 - 4x_2 + \lambda (x_1^2 + x_2^2-25). $$ The dual problem is to maximimze $\Lambda(x_1, x_2, \lambda)$ over the region $x_1,x_2 \geq 0$.
Your problem is convex, so the min should occur where $\nabla \Lambda = \vec{0}$...