I have the following implicit function, for which I need to pick up a point $(x0, y0)$ on it and determine the expression of its normal vector pointing outside. "Outside" here means that the said vector points towards the opposite side of the circle of curvature.
-2.75 + y^2 - Cos[x] + y Sin[x]==0
Its figure looks like:
To see the essence of my question, we can look at a simpler example:
Let's say we have a planar curve $x^2+y^2=1$, upon differentiation, we obtain $(2x,2y)\cdot (dx, dy)=0$, with $(dx, dy)$ associated with the tangent direction of the curve at point $(x,y)$. Hence, $(2x,2y)$ is parallel to the normal vector.
My question is, how to decide whether $(2x,2y)$ or $-(2x,2y)$ points outside the curve, and how to implement this in Mathematica?
Update 1:
My previous statement may be ambiguous; I'm not trying to get the normal vectors pointing outside sth, which seems to be what @Syed has produced. The precise statement should be that, if we place the end of the arrow of the normal vector on the curve, then its head should be pointing in the direction opposite to the circle of curvature.
Taking the cosine function as an example, the arrows between $0,\pi/2$ should be pointing right up, while those between $\pi/2,0$ should be pointing left down. In other words, I want to know which side the curve lies w.r.t. the tangent line.


