Here's the question: $$\lim _{x \rightarrow-2} f\left(x\right) =?$$ where $$f\left(x\right)= 3 x+1, \quad x \neq-2$$ $$ f\left(x\right) = 2, \quad x=-2$$
Here's the code:
reset()
x=var(’x’)
f1(x)=3*x+1
f2(x)=2
f(x)=piecewise([((-oo,-2),f1(x)),((-2,oo),f1(x)),([-2,-2],f2(x))])
limit(f(x),x=-2,algorithm="sympy")
Sage returns 2, but it should return -5. May someone please advise me on what I am doing wrong?