How many solutions for vector are there such thnat
Note that this is a cross product.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
First Find is there a solution to this or not...
We can do this by doting [2,3,4] and [1,2,-2]
= 2 · 1 + 3 · 2 + 4 · (-2)
= 2 + 6 - 8
= 0
Therefore there is a solution.
Now Cross Product [2,3,4] X [a,b,c]
You get the following equations
3c-4b = 1
4a-2c = 2
2b-3a = -2
//You can isolate in terms of another variable
Isolate "c" in terms of a
c = 2a -1
Isolate "b" in terms of a
b = 1.5a - 1
Plug them in eq " 3c-4b = 1"
3(2a-1)-4(1.5a-1) = 1
6a - 3 - 6a + 4 = 1
6a -6a = 1+4-3
0a = 0 //Should end like this
This means "a" can be any value and therefore have infinite solutions