3D plot of equation involving variables

3 views (last 30 days)
Scott Stearns
Scott Stearns on 11 Jun 2021
Answered: Walter Roberson on 11 Jun 2021
Original Problem:
  1. Find an equation for the surface consisting of all points 𝑃P for which the distance from 𝑃P to the 𝑥x-axis is twice the distance from 𝑃P to the 𝑦𝑧yz-plane and identify the surface.
Equation I've gotten thus far is y^2+z^2=4*x^2. How would i go about plotting a 3D representation of this equation?

Answers (1)

Walter Roberson
Walter Roberson on 11 Jun 2021
Assuming you have found the right equation:
syms x y z real
fimplicit3(y^2+z^2==4*x^2)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!