Arrange related variables in a set and visualize relations

asked 2013-11-17 23:11:26 +0200

symb0 gravatar image

Hi,

I have a basic question, let me explain with this simple example;

variables;

b=var('b')
c=var('c')
d=var('d')
e=var('e')
f=var('f')
g=var('g')

relations;

a = b + c
m = d + e + b
n = f + g + c

So everything is related to each other. I want to form some kind of set-system and visualize these relations in Sage with arrows and so on. How can I achieve this ?

Thank you.

edit retag flag offensive close merge delete

Comments

1

Can you give more details of the kind of structure you want for "with arrows and so on" ? Do you want a simplicial complex, a graph, which graph ? For example, could you provide an example of a picture you would like to get in your example ?

tmonteil gravatar imagetmonteil ( 2013-11-18 12:23:55 +0200 )edit

In the following link you can find an example for SymPy. I am trying to implement in Sage. http://s22.postimg.org/shauzsnch/pic.png

symb0 gravatar imagesymb0 ( 2013-11-21 06:53:16 +0200 )edit