1

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].

Intersection of surfaces

Thanks.

user42582
  • 4,195
  • 1
  • 10
  • 31

2 Answers2

3

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}}
 ]

Mathematica graphics

See also: Plotting implicitly-defined space curves for other interesting approaches.

MarcoB
  • 67,153
  • 18
  • 91
  • 189
2
ContourPlot[1+x^2-y^2==3Log[1+x^2],{x,-1.5,1.5},{y,-1.5,1.5}]
Kuba
  • 136,707
  • 13
  • 279
  • 740
OkkesDulgerci
  • 10,716
  • 1
  • 19
  • 38