I want to plot a function (f(x,y)=x^2+3y^2 under the restriction 4x+3y<=12; Wolfram Alpha suggests a function on the help pages - https://reference.wolfram.com/language/ref/RegionFunction.html
However, copying their example
Plot3D[x^2 - y^2, {x, -3, 3}, {y, -3, 3}, RegionFunction -> Function[{x, y, z}, 2 < x^2 + y^2 < 9]]
into my WA input line leads to nothing - (Try the following: Use different phrasing or notations Enter whole words instead of abbreviations etc)
so I´m pretty lost ... Thanks in advance for any help!