I am trying to make a projection on the xy-plane of the intersection of the surfaces from the functions: 1 + x^2 - y^2, 3 Log[1 + x^2].
Thanks.
I am trying to make a projection on the xy-plane of the intersection of the surfaces from the functions: 1 + x^2 - y^2, 3 Log[1 + x^2].
Thanks.
Using geometric region functions:
RegionPlot@
ImplicitRegion[
1 + x^2 - y^2 == 3 Log[1 + x^2],
{{x, -1.5, 1.5}, {y, -1.5, 1.5}}
]

See also: Plotting implicitly-defined space curves for other interesting approaches.
ContourPlot[1+x^2-y^2==3Log[1+x^2],{x,-1.5,1.5},{y,-1.5,1.5}]