Sketching Graph: Tips, Hints & Solution

  • Thread starter Thread starter Gameowner
  • Start date Start date
  • Tags Tags
    Graph
Click For Summary

Homework Help Overview

The discussion revolves around sketching a graph based on a set of parametric equations involving variables x, y, and z, with a specific focus on the parameter theta. Participants are exploring how to combine the separate curves derived from these equations into a cohesive graph.

Discussion Character

  • Exploratory, Conceptual clarification, Problem interpretation

Approaches and Questions Raised

  • The original poster expresses uncertainty about how to begin the problem and questions whether to join the three curves they have plotted. Some participants suggest manipulating the equations to aid in understanding, while others raise questions about the domain of the graph and the implications of the parameter values.

Discussion Status

Participants are actively engaging with the problem, with some providing hints that have been acknowledged as helpful. There is an ongoing exploration of the domain for the graph, and while various interpretations are being discussed, no consensus has been reached yet.

Contextual Notes

There are constraints regarding the values of theta, which is specified to be between 0 and 2pi, and the variable h, which must be greater than 0. These conditions are influencing the participants' reasoning about the graph's characteristics.

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: 458
Physics news on Phys.org
[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.
 
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: 380
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);
 

Similar threads

  • · Replies 10 ·
Replies
10
Views
4K
Replies
4
Views
3K
Replies
6
Views
4K
  • · Replies 14 ·
Replies
14
Views
3K
  • · Replies 11 ·
Replies
11
Views
3K
Replies
3
Views
2K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 4 ·
Replies
4
Views
5K