Mathematica Mathematica Help with Table command and Matrix operations

AI Thread Summary
The user is trying to generate a data table in Mathematica and perform matrix operations but is encountering issues with extra parentheses in the output. The command used to create the table results in nested lists, complicating matrix multiplication with another matrix. Attempts to multiply the matrices using standard commands have failed. A suggested solution is to modify the table command to eliminate the extra parentheses by indexing into the solution list. This adjustment should allow for successful matrix operations.
Amatya
Messages
1
Reaction score
0
Hi,

I need to generate some data in a Table and then be able to do all kinds of matrix and other mathematical operations on them. Right now I am testing the commands but am unable to get them to work. My table has this extra parenthesis floating around which I'm not sure how to get rid of.

Code:
test = Table[{i^2, y /. Solve[2 y + i == 0]}, {i, 1, 10}]
Code:
 Out[8]={{1, {-(1/2)}}, {4, {-1}}, {9, {-(3/2)}}, {16, {-2}}, {25, {-(5/
    2)}}, {36, {-3}}, {49, {-(7/2)}}, {64, {-4}}, {81, {-(9/
    2)}}, {100, {-5}}}
Code:
test2 = {{1/2, 0}, {0, 1/2}}


Now I am unable to multiply the two Matrices, Test 2x10 and Test2 2x2. I have tried
Code:
test2.test
and also
Code:
test.test2
and neither command works. Also, Test has this additional set of parenthesis around the entries in the second column, for example like this:
Code:
{1, {-(1/2)}}
. I would like to be able to get rid of them if possible.. though I'm not sure if that messes anything up.

Any help will be greatly appreciated. Thanks a lot,
 
Physics news on Phys.org
Replace your code with

Code:
test=Table[{i^2,y/.Solve[2 y+i==0][[1]]},{i,1,10}]
 

Similar threads

Replies
1
Views
2K
Replies
4
Views
2K
Replies
1
Views
2K
Replies
5
Views
3K
Replies
1
Views
2K
Back
Top