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: 446
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 tried to combine those 2 formulas but it didn't work. I tried using another case where there are 2 red balls and 2 blue balls only so when combining the formula I got ##\frac{(4-1)!}{2!2!}=\frac{3}{2}## which does not make sense. Is there any formula to calculate cyclic permutation of identical objects or I have to do it by listing all the possibilities? Thanks
Since ##px^9+q## is the factor, then ##x^9=\frac{-q}{p}## will be one of the roots. Let ##f(x)=27x^{18}+bx^9+70##, then: $$27\left(\frac{-q}{p}\right)^2+b\left(\frac{-q}{p}\right)+70=0$$ $$b=27 \frac{q}{p}+70 \frac{p}{q}$$ $$b=\frac{27q^2+70p^2}{pq}$$ From this expression, it looks like there is no greatest value of ##b## because increasing the value of ##p## and ##q## will also increase the value of ##b##. How to find the greatest value of ##b##? Thanks
Back
Top