Problem statement:
Find the minimum (over x, y) of the function f(x,y), subject to
g(x,y)=0, where f(x,y) = 2 * x**2 + 3 * y**2 and g(x,y) = x**2 + y**2 - 4.
Solution: We will solve this problem by performing the following steps:
Specify the Lagrangian function for the problem
Determine the K...