I am trying to find the intersection points of $2^x$ and $x^2$.
To do this, I set the two functions equal to each other: $2^x = x^2$. It seems intuitive to take the log base two of both sides of the equations, and I got: $x = \log_2{x^2}$.
I'm not entirely sure how to proceed from here. Can someone please help me?
Since $2^4 = 4^2$ and $2^2 = 2^2$ you get $x=2$ and $x=4$ as solutions.
Between $x= -1$ and $x=0,$ the function $x\mapsto x^2$ decreases while $x\mapsto 2^x$ increases, and at $x=-1,$ the second one is smaller than the first and at $x=0$ the first one is smaller. Therefore the intermediate value theorem tells you there is a solution somewhere between $x=-1$ and $x=0.$ You could start with the very crude first guess $x=1/2$ and then apply Newton's method. Maybe three iterations will give you a reasonable approximation. There can be no other negative solutions because the graphs of a decreasing function and an increasing function can intersect only once.
As $x$ increases, $2^x$ ultimately grows faster than $x^2,$ so for $x$ greater than some positive number there can be no solutions.
Ruling out other small positive numbers will take more work, so for now I'm leaving this incomplete.