HallsofIvy said:
Yes, in general, if you have m equations with n variables, n> m, you can reduce to m-1 equations with n-1 variables and, repeating, eventually arrive at one equation with n-(m-1)= n-m+1 variable. You could then write one of those variables as a function of the other n-m variables and, working back, eventually write all variables as functions of those n-m "free variables".
Here is an example. Find a basis for the subspace of all (x, y, z) in R3 satisfying x+ y- z= 0 and x- y+ 2z= 0 (two equations in 3 variables). Adding those equations together I get 2x+ z= 0 (one equation in two variabes) so z= -2x. Putting that into the first equation, x+ y-(-2x)= 3x+ y= 0 so y= -3x. Any such vector is of the form (x, -3x, -2x)= x(1, -3, -2). The single vector (1, -3, -2) forms a basis for that (one dimensional) subspace.
Thank you Ivy:)
so basically what you have done in that example is write a set of two implicit functions as explicit functions of x, that is, you have solved the system for y and z (can I put it like that?). It's like, you've considered the 'free' variable to be x, ie., as if it were a parameter instead of a variable, and you've solved the system of two equations with two unknown variables y and z.
So eliminating variables is the first step to actually solving an implicit system of equations to end up with explicit equations, or parametric equations, yes? But it's also obtaining implicit equations from explicit ones, no?
Say for example, I'm given a curve in space by its parametric equations:
[tex]x=f(s)[/tex]
[tex]y=g(s)[/tex]
[tex]z=h(s)[/tex]
I could eliminate s to obtain two implicit functions by doing the following:
[tex]x=f(s) \rightarrow s=f^{-1}(x)[/tex]
[tex]y=g(s) \rightarrow s=g^{-1}(y)[/tex]
[tex]z=h(s) \rightarrow s=h^{-1}(z)[/tex]
from which:
[tex]f^{-1}(x)=g^{-1}(y)[/tex]
[tex]g^{-1}(y)=h^{-1}(z)[/tex]
ie.
[tex]F(x,y)=0[/tex]
[tex]G(y,z)=0[/tex]
which would be the two surfaces whose intersection is the curve.
But now suppose I'm given the parametric equations of a surface:
[tex]x=f(u,v)[/tex]
[tex]y=g(u,v)[/tex]
[tex]z=h(u,v)[/tex]
In theory, I could eliminate u and v and I'd be left with a single equation in the variables x,y and z, which would be the implicit equation of the surface. But, say if from the first two equations I solve for u and v, and I do the same using the second pair of equations, I'd have:
[tex]u=f_1(x,y)[/tex]
[tex]v=f_2(x,y)[/tex]
and
[tex]u=g_1(y,z)[/tex]
[tex]v=g_2(y,z)[/tex]
and eliminating u and v from these four equations, I have:
[tex]f_1(x,y)=g_1(y,z)[/tex]
[tex]f_2(x,y)=g_2(y,z)[/tex]
ie. I end up with two equations in the variables x,y and z instead of just one!
[tex]f_1(x,y)=g_1(y,z) \rightarrow F(x,y,z)=0[/tex]
[tex]f_2(x,y)=g_2(y,z) \rightarrow G(x,y,z)=0[/tex]
which define a curve, not a surface. Can you tell me where I am going wrong?