First time here? Check out the FAQ!

Ask Your Question
0

hi any help with TypeError: unable to convert b to an integer

asked 1 year ago

updated 1 year ago

Max Alekseyev gravatar image

I have the following segment:

M=matrix([[-3,1,1,1],[1,-3,1,1],[1,1,-3,1],[1,1,1,-3]])

b=var("b");
v = vector([1,b,b**2,b**3]);
AUG=M.augment(v,subdivide=true)

---------------------------------------------------------------------------

TypeError: unable to convert b to an integer
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 1 year ago

Max Alekseyev gravatar image

updated 1 year ago

If you want to augment M with symbolic elements it needs to be defined over the symbolic ring SR. You can do so upfront via

M = matrix(SR, [[-3,1,1,1],[1,-3,1,1],[1,1,-3,1],[1,1,1,-3]])

Alternatively, you can keep the original definition of M intact, but change its ring just before the augmenation:

AUG = M.change_ring(SR).augment(v,subdivide=true)
Preview: (hide)
link

Comments

That works..Thank you for the solution!

KostasT gravatar imageKostasT ( 1 year ago )

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: 1 year ago

Seen: 156 times

Last updated: Oct 24 '23