Ask Your Question
0

How to make formal variables with more than one index?

asked 2019-06-19 15:47:11 +0200

sum8tion gravatar image

I'd like to make formal variables that can be multiplied, added etc. but have them labelled by two indices.
Here: https://ask.sagemath.org/question/792... it's done for variables with one index, and I asked a similar question about defining differential forms with multi-labels here: https://ask.sagemath.org/question/468... I see no clear way of merging these two approaches.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2019-06-19 19:40:59 +0200

Juanjo gravatar image

updated 2019-06-19 20:50:31 +0200

Consider the following code:

sage: m, n = 3, 2
sage: g = matrix(m+1, n+1, [var("g_{}{}".format(i,j),
....: latex_name="g_{{{}{}}}".format(i,j))
....: for i in [0..m] for j in [0..n]])
sage: g
[g_00 g_01 g_02]
[g_10 g_11 g_12]
[g_20 g_21 g_22]
[g_30 g_31 g_32]

It creates a matrix g of symbolic variables g_00, g_01, etc. You can access each variable either by g_ij or g[i,j].

Edit. To cope with a more general case you can use a dictionary, for example:

sage: m, n, p = 3, 2, 2
sage: g = {(i,j,k): var("g_{}{}{}".format(i,j,k),
....: latex_name="g_{{{}{}{}}}".format(i,j,k))
....: for i in [0..m] for j in [0..n] for k in [0..p]}
sage: g
{(0, 0, 0): g_000,
 (0, 0, 1): g_001,
 (0, 0, 2): g_002,
 (0, 1, 0): g_010,
 (0, 1, 1): g_011,
.................................
 (3, 2, 0): g_320,
 (3, 2, 1): g_321,
 (3, 2, 2): g_322}

Variables can be accessed by g_ijk or g[(i,j,k)].

edit flag offensive delete link more

Comments

Thanks! What if I wanted to make variables with 3 indices? It doesn't seem like the matrix approach would work in that case.

sum8tion gravatar imagesum8tion ( 2019-06-19 20:24:37 +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: 2019-06-19 15:47:11 +0200

Seen: 905 times

Last updated: Jun 19 '19