I only recently started studying the Lagrange Multipliers, and was given a task to create some challenging problems on them and also provide solutions. Could somebody please suggest how I could get started on this? Some example problems would be welcome!
Thanks very much!

Sure, here's 2:
a really good one to start out with is the optimization problem behind Principal Component Analysis.
$$\text{max$_{\bf v}$ } \langle \bf{v},\Sigma_n \bf{v}\rangle$$ $$\text {s.t.}$$ $$||\bf {v}||_2=1$$
where $\bf v$ is a vector and $\Sigma_n= \frac 1n\sum_{i=1}^n(\bf x_i -\mu_n)(\bf x_i - \mu_n)^T$ is the Covariance matrix of the data points $\bf x_i$
The answer for $\bf v$ is the vector that points in the direction of the eigenvector of $\Sigma_n$ corresponding to its largest eigenvalue $\lambda_{max}$
Another really good application of Lagrange multipliers/ difficult problem involving Lagrange multipliers is solving for the Euler equation in Economics for logarithmic utility. This is extremely important in the theory of dynamic programming as well.
$$max \sum_{t=0}^{T-1} lnc_t + lnx_T$$ $$\text{s.t.}$$ $$x_{t+1} =\alpha (x_t-c_t)$$
Be careful, $x_t$ shows up twice. Interpret as maximizing consumption and final wealth where $x_t$ is the wealth at period $t$ with $t=0$ corresponding to initial wealth and $c_t$ is the consumption for period $t$.
The solution is: $x_t^*=\frac {T+1-t}{T+1}(\frac 1{\alpha})^{-t}x_0$ and $c_t^*=\frac {(\frac 1{\alpha})^{-t}x_0}{T+1}$
These two problems include applications of lagrange multipliers to 1. a problem involving matrix calculus. and 2. a problem in which an optimal consumption path is determined (function), which has ties to optimal control and the functional optimization.