Sketching Graph: Tips, Hints & Solution

  • Thread starter Thread starter Gameowner
  • Start date Start date
  • Tags Tags
    Graph
AI Thread Summary
The discussion focuses on solving a homework problem involving plotting a 3D graph based on parametric equations. Initial confusion arises regarding how to combine the separate curves derived from the equations x = √z sin(θ) and y = (√z/2) cos(θ). A helpful hint suggests multiplying the second equation by 2, squaring both equations, and adding them to simplify the process. The user also seeks clarification on the domain of the graph, concluding that since θ ranges from 0 to 2π, the x and y values should be between -1 and 1. A code snippet is provided to assist in generating a clearer plot, using h = 10 as an example.
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: 445
Physics news on Phys.org
x =\sqrt z \sin(\theta),\ y = \frac{\sqrt z} 2 \cos(\theta)

Hint: Multiply the second equation by 2, square both and add and see if that helps.
 
LCKurtz said:
x =\sqrt z \sin(\theta),\ y = \frac{\sqrt z} 2 \cos(\theta)

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: 366
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);
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...
Essentially I just have this problem that I'm stuck on, on a sheet about complex numbers: Show that, for ##|r|<1,## $$1+r\cos(x)+r^2\cos(2x)+r^3\cos(3x)...=\frac{1-r\cos(x)}{1-2r\cos(x)+r^2}$$ My first thought was to express it as a geometric series, where the real part of the sum of the series would be the series you see above: $$1+re^{ix}+r^2e^{2ix}+r^3e^{3ix}...$$ The sum of this series is just: $$\frac{(re^{ix})^n-1}{re^{ix} - 1}$$ I'm having some trouble trying to figure out what to...
Back
Top