Graphing the implicit relationship in mathematica Abu Saleh 11:01 PM Code Mathematica Programming Abu Saleh Question: Load the package Graphic`ImplicitPlot` if you have not already done so in this session of Mathematica. DO NOT load it more than once per session. Graph the implicit relationship x2y2 = (y+1)2(4-y)2. Solution: ImplicitPlot[x^2 * y^2 ==(y+1)^2 * (4-y)^2 , {x,-10,10}, PlotRange->All,PlotStyle[Hue[0.9],Thickness[0.006]}]; SHIFT + ENTER Related Posts