Sketching Graph: Tips, Hints & Solution

  • Thread starter Thread starter Gameowner
  • Start date Start date
  • Tags Tags
    Graph
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 2K views
Gameowner
Messages
43
Reaction score
0

Homework Statement



Question attached

Homework Equations





The Attempt at a Solution



I have no idea at all how to start this, I've plotted all 3 separated as x=, y= and z=, which gave me 3 different curves, would I then just join them together?

any hint, tips would be much appareciated
 

Attachments

  • q4.jpg
    q4.jpg
    12.3 KB · Views: 470
Physics news on Phys.org
LCKurtz said:
[tex]x =\sqrt z \sin(\theta),\ y = \frac{\sqrt z} 2 \cos(\theta)[/tex]

Hint: Multiply the second equation by 2, square both and add and see if that helps.

yes! that has helped a lot, although when it came to plotting the equation, I was not sure about the domain of the graph. But this is what I got

I assume since the question specifies that theta is between 0 and 2pi, the maximum allowable value for x-axis and y-axis is -1/1?

As for the h, which is any number greater than 0, I just substituted an arbitrary point greater than 0.
 

Attachments

  • Line plot.JPG.jpg
    Line plot.JPG.jpg
    22.2 KB · Views: 387
Try this code for a nicer plot,which might help you with your domain. I used h = 10 for an example:

restart;
h := 10;
surface := [sqrt(z)*cos(theta), sqrt(z)*sin(theta), z];
domain := [sqrt(z)*cos(theta), sqrt(z)*sin(theta), 0];
plot3d({domain, surface}, theta = 0 .. 2*Pi, z = 0 .. h, style = patchcontour);