Question

Answer the question with words only, NO equations Find an equation of the plane. The plane...

Answer the question with words only, NO equations

  1. Find an equation of the plane. The plane through the points (2,1,2), (3,-8,6), and (-2,-3,1)

I need steps in words and Matlab code for above question.

Homework Answers

Answer #1

step 1

First we assign three points:

Code:

P1 =  [2,1,2];

P2 = [3,-8,6];

P3 = [-2,-3,1]

Step 2

we will find the normal vector using cross product between two vector lying on plane. these two vector is vector joining position vector of these three point.

Code:

normal = cross(P1-P2, P1-P3)

normal = (25, -10, 31) ; "this is direction cosine or vector perpendicular to required plane"

Step 3

Next assign x, y, z as variable, dot product of vector lying on plane (using this variable) with normal vector will become zero.

Code:

syms x y z

P = [x,y,z]

eqPlane = dot(normal, P-P1)

eqPlane = 25x-15y-40z+45, "this will be output"

Our required equation of plane is :  25x-15y-40z+45 = 0

Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Find an equation of the tangent plane and find the equations for the normal line to...
Find an equation of the tangent plane and find the equations for the normal line to the following surface at the given point. 3xyz = 18 at (1, 2, 3)
12. Find the equation of the following planes: (b) pass through the point (1,-1,-1) and parallel...
12. Find the equation of the following planes: (b) pass through the point (1,-1,-1) and parallel to the plane 5x − y − z = 6 . c) pass through the points (2,1,2), (3, -8, 6), and (-2, -3, 1)
Find an equation for the plane that contains the line  v=(4,−4,−2)+t(3,−3,1) and is perpendicular to the plane...
Find an equation for the plane that contains the line  v=(4,−4,−2)+t(3,−3,1) and is perpendicular to the plane 2x+y+4z+1=0 (Use symbolic notation and fractions where needed. Please note that the solution expects you to solve for zz. You may need to scale your answer suitably. ) z = .
Let P be the plane given by the equation 2x + y − 3z = 2....
Let P be the plane given by the equation 2x + y − 3z = 2. The point Q(1, 2, 3) is not on the plane P, the point R is on the plane P, and the line L1 through Q and R is orthogonal to the plane P. Let W be another point (1, 1, 3). Find parametric equations of the line L2 that passes through points W and R.
1) Find an equation of the plane. The plane through the point (7, 0, 4)and perpendicular...
1) Find an equation of the plane. The plane through the point (7, 0, 4)and perpendicular to the line x = 3t,y = 3 − t,z = 1 + 7t 2) Consider the following planes.x + y + z = 2, x + 6y + 6z = 2 (a) Find parametric equations for the line of intersection of the planes. (Use the parameter t.) (x(t), y(t), z(t)) = (b)Find the angle between the planes. (Round your answer to one decimal...
Find an equation of the plane. The plane that passes through the line of intersection of...
Find an equation of the plane. The plane that passes through the line of intersection of the planes x − z = 2 and y + 3z = 1 and is perpendicular to the plane x + y − 3z = 3
Find an equation of the plane. The plane that passes through the point (−3, 3, 2)...
Find an equation of the plane. The plane that passes through the point (−3, 3, 2) and contains the line of intersection of the planes x + y − z = 2 and 2x − y + 4z = 1
Find the equation of the sphere with center in the xz- plane and passing through the...
Find the equation of the sphere with center in the xz- plane and passing through the points (0,8,0), (4,6,2), (0,12,4)
This exercise emphasizes the "mechanical aspects" of working with linear equations. Find the equation of a...
This exercise emphasizes the "mechanical aspects" of working with linear equations. Find the equation of a line with the following characteristics. (a) Passing through the points (1, −1) and (−3, 4). please show your work and explanation. I am having a hard time with doing the problem step by step! Thank you.
Find a vector equation, parametric equations, and symmetric equations for the line through the point (6,...
Find a vector equation, parametric equations, and symmetric equations for the line through the point (6, -5, 2) and parallel to the vector < 1, 3, − 2 3 >