Ask Your Question

KostasT's profile - activity

2024-01-29 23:10:34 +0200 asked a question Gram_schmidt

Gram_schmidt Hello . Does the command (on a given matrix A ) : A.gram_schmidt() consider the matrix to have row or col

2024-01-29 22:51:20 +0200 asked a question Gram_schmidt question

Gram_schmidt question Hello, Im using the gram_schmidt() function with a matrix P containing Lin. indep. column vectors

2023-11-01 17:28:14 +0200 marked best answer hi any help with TypeError: unable to convert b to an integer

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
2023-10-24 09:19:48 +0200 commented answer hi any help with TypeError: unable to convert b to an integer

That works..Thank you for the solution!

2023-10-24 05:51:26 +0200 asked a question hi any help with TypeError: unable to convert b to an integer

hi any help with TypeError: unable to convert b to an integer I have the following segment: M=matrix([[-3,1,1,1],[1,-3,1