Laurenso

20 Reputation

One Badge

1 years, 15 days

MaplePrimes Activity


These are replies submitted by Laurenso

Now, I compile with Maple 2023, I get the massage:

@nm Thank you very much.

@Carl Love Yes. Thank you very much.

@Carl Love I use geom3d to check points in my list. Can you add your code to check a point on the sphere?

@Carl Love Thank you very much.

@mmcdara The question from me.  I don't see onobjl key (I use Maple 2022). 

@Rouben Rostamian  I know how to write the equation of the tangent plane to a sphere at a given point. Let T is center of sphere and P is a point lion the sphere. The tangent plane to a sphere at the point A take vector TA = (n1, n2,n3) as normal vector. Therefore, the equation of the plane is 
n1*(x-xA) + n2*(y-yA) + n3*(z-zA) = 0, It means TA  dot  (M- A) = 0, where M = (x,y,z). In my code, I use geom3d package. 

With a single point, I tried
restart;
with(geom3d);
sphere(S, (x - 1)^2 + (y - 3)^2 + (z - 5)^2 - 169 = 0, [x, y, z], 'centername' = T);
point(A, -11, -1, 8);
IsOnObject(A, S);
line(d, [T, A]);
n := ParallelVector(d);
Equation(plane(P, [A, n], [x, y, z]));
expr := sort(primpart(lhs(Equation(P))));
expr*signum(lcoeff(expr)) = 0;


Page 1 of 1