Drawing Graphs: Concentric Circles & Straight Lines

  • Thread starter Thread starter Raees
  • Start date Start date
  • Tags Tags
    Drawing Functions
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
Raees
Messages
8
Reaction score
0
Hi, how would I go about drawing these two graphs?

31e4a231b2f01490ad29b8db02cbfd4c.png


and

3bbb0c98927abe3e79236b39a7587ef4.png
The first one would be concentric circles with the centre at (0,0).
The second one would be straight lines through (0,0).

Is this correct?
Also, what happens at ln(0) = constant for the first graph and x = 0 for the second graph?

[Moderator's note: Moved from a technical forum and thus no template.]
 
Last edited by a moderator:
Physics news on Phys.org
Correct.
Raees said:
Also, what happens at ln(0) = constant for the first graph
That is not possible. x=y=0 is never a solution. Same for x=0 in the second case.

For "interesting" functions f(x)=constant usually means x has one or a somewhat special set of values for a given constant. If f is injective then it is equivalent to x=constant.
 
For the first one, [itex]ln(x^2+ y^2)= constant[/itex], taking the exponential of both sides, [itex]x^2+ y^2= e^{constant}[/itex]. Yes, the graph of that is a circle with center at the origin and radius [itex]\sqrt{e^{constant}}[/itex].

For the second one, [itex]arctan(y/x)= constant[/itex], taking the tangent of both sides, [itex]y/x= tan(constant)[/itex] so [itex]y= (tan(constant))x[/itex]. Since the tangent of a constant is also a constant, this is a straight line through the origin with slope tan(constant).
 
HallsofIvy said:
For the first one, [itex]ln(x^2+ y^2)= constant[/itex], taking the exponential of both sides, [itex]x^2+ y^2= e^{constant}[/itex]. Yes, the graph of that is a circle with center at the origin and radius [itex]\sqrt{e^{constant}}[/itex].

For the second one, [itex]arctan(y/x)= constant[/itex], taking the tangent of both sides, [itex]y/x= tan(constant)[/itex] so [itex]y= (tan(constant))x[/itex]. Since the tangent of a constant is also a constant, this is a straight line through the origin with slope tan(constant).

Thanks, that helps a lot!