Ask Your Question
1

Can I get coefficients of a vector with respect to given basis for a vector space.

asked 2014-11-20 12:10:29 +0200

anonymous user

Anonymous

Hello.

I have a question.

For example,

  1. make vector space V by a basis B=[1+x,3*x,x^2] over the field of rationalsQ
  2. v=3*x^2+17*x+5 in V
  3. v=a*B[0]+b*B[1]+c*B[2] for some a,b,c in Q
  4. [a,b,c]=?

We easily know the solution of previous example.

In general, for given basis B and a vector v, how can I get the list of coefficients?

And is it possible to the case of matrix space (B: the basis consists of matrices) ?

Thanks. :)

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2014-11-20 18:26:55 +0200

fidbc gravatar image

Hi,

If V is the vector space, then you can simply ask for the coordinate vector of v by using V.coordinate_vector(v). If you wish to use a different basis, then you can construct the subspace U spanned by the new basis (see this other question) and then use U.coordinate_vector(v).

Hope this helps.

edit flag offensive delete link more

Comments

Oh, I see. By using that command, I solved my problem. :) I made a function that converts a polynomial to a vector in the vector space V. And then make the subspace U with the basis consists in converted vectors. Then I have coordinate vectors as I wanted. :)

Semin gravatar imageSemin ( 2014-11-22 10:16:28 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2014-11-20 12:10:29 +0200

Seen: 2,227 times

Last updated: Nov 20 '14