Ask Your Question

symb0's profile - activity

2013-11-21 06:53:16 +0200 commented question Arrange related variables in a set and visualize relations

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

2013-11-17 23:11:26 +0200 asked a question Arrange related variables in a set and visualize relations

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.