I solved the second problem so my question is just about the first now.
Main Topics
Browse All TopicsI have two questions, but what would help more is if someone explained the concepts behind the problems.
y1 = [1,1,1]T
y2 = [1,1,0]T
y3 = [1,0,0]T
and I is the identity operator on R^3
Find coordinates of I(e1), I(e2), I(e3) with respect to [y1,y2,y3]
and find a matrix A such that Ax is the coordinate vector of x with respect to [y1,y2,y3].
If L(c1y1 + c2y2 + c3y3) = (c1 + c2 + c3)y1 + (2c1 + c3)y2 - (2c2 + c3)y3 find a matrix representing L with respect to basis [y1,y2,y3]
and write x as a linear combination of y1, y2, y3 and use the matrix determined above to determine L(x).
x = [7,5,2]T
The second problem is L is the linear operator mapping P2 into R^2 defined by
L(p(x)) = [integral from 0 to 1 of p(x) dx, p(0) ] T
Find a matrix A such that L(alpha + beta * x) = A[alpha, beta]T.
I already have the solutions to these, but I do not understand how they were attained. Could someone explain the process behind how to solve these problems? That would be most helpful. Thank you.
-lj8866
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
If L(c1y1 + c2y2 + c3y3) = (c1 + c2 + c3)y1 + (2c1 + c3)y2 - (2c2 + c3)y3 find a matrix representing L with respect to basis [y1,y2,y3]
unless I understood wrongly your english Maths jargon (I'm French), this means :
L=((c1,2c1,0),(c2,0,-2c2),
I must admit I've problems apprehending your way of presenting linear algebra
I find your problem very badly stated as we don't have the type of "constants" c1,c2,c3 (vectors?matrices?integers
also I can't translate-understand the meaning of "coordinates of I(e1), I(e2), I(e3) " and "the coordinate vector of x with respect to [y1,y2,y3]."
Sorry, you'll have to wait for someone passing by which is more accustomed to that way of writing Maths as simple as linear algebra and matrix operations 8-)
So assume you are given the standard basic vectors:
e1 = 1,0,0..0
e2 = 0,1,0..0
..
en = 0,0,0..1
and their corresponding y(i) values, e.g.
T(1,0,0..0) = T(e1) = y1 = (2,4,...4) (m values)
T(0,1,0..0) = T(e2) = y2 = (1,-2,..2) (m values)
...
T(0,0,0..1) = T(e3) = yn = (3,0,..-2) (m values)
So every vector in the form (x1,x2,...xn) in R(n) can be expanded as a linear combination of the e1,e2,..en right?
(x1,x2,..xn) = x1(1,0,0..0) + x2(0,1,0..0) + ... + xn(0,0,0..1)
= x1e1 + x2e2 + ... + xnen
Now you want to find a matrix a to be the reduced function for T, i.e. use T = Ax (A times x) to transform a vector x from R(n) to R(m).
Apply the transformation to (x1,x2,...xn) we have:
T(x1,x2,..xn) = T(x1e1 + x2e2 + ...+ xnen)
= x1*T(e1) + x2*T(e2) + ... + xn*T(en)
(Notice that T(x) by definition always follow the addition and scalar multiplication properties, i.e.
T(u + v) = T(u) + T(v)
T(ru) = rT(u)
)
So now you can replace T(e(i)) with y(i), you'll end up with
T(x) = T(x1,x2,..xn) = x1y1 + x2y2 + ... + xnyn
Since Ax = T(x), T(x) is in the column space (CS) of A, thus y(i)'s have to be the columns of A.
(If you haven't learned about CS then here's an *cheating* explanation:
Let A be an m x n matrix with y(i) as columns then.
(Please copy and paste into Notepad or something to be able to read this)
| x1 |
| x2 |
[y1 y2 ... yn]| .. | = x1y1 + x2y2 + ... + xnyn (an mx1 matrix)
| .. |
| xn |
This works for any matrix.
)
So you've realized that A is only formed by making y(i) the columns of it, or in another words, transpose the matrix on the right hand side of the T[1,0,0..0] etc.
Now the problem you're having is you're not given the standard basis, in your case you are given
[1,1,1]
[1,1,0]
[1,0,0]
Don't worry the path to go is: since these vectors are linearly independant and they span R3, you can effectively express ANY vector in R3 with them right?
So now the only thing you need to do is to go and try to express the standard basis vectors as a Linear combination of these. In some case you have to go through and find
[1,1,1][a] [1]
[1,1,0][b] = [0]
[1,0,0][c] [0]
----------------
[1,1,1][e] [0]
[1,1,0][f] = [1]
[1,0,0][g] [0]
----------------
[1,1,1][h] [0]
[1,1,0][i] = [0]
[1,0,0][j] [1]
but here you can cheat and see that
e1 = (1,0,0) = y3
e2 = (0,1,0) = y2 - y3 = [1,1,0] - [1,0,0]
e3 = (0,0,1) = y1 - y2 = [1,1,1] - [1,1,0]
just like I said. Any more question about this part?
>>e1 = (1,0,0) = y3
>>e2 = (0,1,0) = y2 - y3 = [1,1,0] - [1,0,0]
>>e3 = (0,0,1) = y1 - y2 = [1,1,1] - [1,1,0]
Aye, sorry for my just getting up. No, whatever I said until that point is correct but this is bogus haha.
e1 = [1,0,0] so T(e1) = T(1,0,0) = y3
e2 = [0,1,0] = [1,1,0] - [1,0,0] so T(e2) = y2 - y3
e3 = [0,0,1] = [1,1,1] - [1,1,0] so T(e3) = y1 - y2
(It's the T of e(i) not e(i) itself, sorry)
AND THEN A would have y3 as the first column, y2-y3 as the second column and y1-y2 as the third.
For the second part you have x = [7,5,2]T
then you can express x as:
[7] [1] [1] [1]
[5]T = 2[1]T + 3[1]T + 2[0]T = 2y1 + 3y2 + 2y3
[2] [1] [0] [0]
Then L(x) = L(2y1 + 3y2 + 2y3) = blah blah blah (expand them out you have the formula.
The only thing left now is to find a matrix to represent L with respect to [y1,y2,y3]. This is simple:
L(c1y1 + c2y2 + c3y3) = (c1 + c2 + c3)y1 + (2c1 + c3)y2 - (2c2 + c3)y3
So you have
[1 1 1][c1]
[2 0 1][c2][y1 y2 y3] = L(c1y1 + c2y2 + c3y3) right?
[0 -2 -1][c3]
-------------
(this part)
so haven't you got the matrix you want?
I looked at your work; it looks impressive but I don't really understand it. I really don't care about it anymore since I realized it was way more complicated than what I needed to know. I had fun doing the problem though :)
I increased the points a bit and I'll give you an A for the problem.
Oh yea, part I looks correct I think. I got two answers:
[0 0 1] [0 0 1]
[0 0 -1] [0 1 -1]
[1 -1 0] [1 -1 0]
I know one of those is correct.
Part II I don't know if it's correct but I got
[0 0 1]
[0 1 -1]
[1 -1 0]
Business Accounts
Answer for Membership
by: lj8866Posted on 2003-03-24 at 20:42:46ID: 8200320
I solved the second problem so my question is just about the first now.