To find positive square root of $a>0$ by solving equation $x^2-a$ by Newton-Raphson mathod, if $x_n$ denotes $n$th iterate with $x_0>0, x_0\neq\sqrt{a}$, then the sequence $(x_n) $ is
$1.$ strictly increasing.
$2.$ strictly decreasing.
$3.$ constant.
$4.$ not convergent.
According to me if I start from right of square root of $a$ we get decreasing sequence and if started from left then increasing sequence. How can be some option correct ? For me it seems all options as incorrect. Please comment. Thank you.
This is not intended to be a complete answer, but more of a guide to how to approach this and similar problems.
The first thing to do is some experimentation. For this I would recommend 'geogebra', which is a program for experimenting with graphs and plane geometry. You pick a value of a, and plot your function. Then pick a value of $x_0$. From here you need to construct the Newton - Raphson method one iteration at a time, which should be quite instructive as to how it works. Plot point at $(x_0,0)$, then a vertical line through this point, then a tangent where it intersects the graph, where this tangent intersects the axis is $x_1$. Do this a few more times so you can see what the method is doing until it disappears and each step is too small.
At this point you should be able to vary the values of $a$ and $x_0$, and see what the method does for various cases. I suggest you do this yourself and reach your own conclusions before reading on. Firstly, for $x_0 >\sqrt{a}$ the sequence is decreasing. This is because of the curvature of the function. Secondly, for $0<x_0<\sqrt{a}$ we have $x_1>\sqrt{a} $, which then proceeds as previously. Hopefully with the visual representation it should be obvious that these are true, but it may also be instructive to try to prove these statements.