How to wrap the output or magnify it?
I am using Sagemath with JupyterLab-Desktop and/or Jupyter notebook / JupyterLab notebook
As you can see in the picture, The inverse of the matrix is too small, and the output of the expand doesn't wrap. you have to use the horizontal scroll:
Ho to fix these?
CODE:
a,b,c,d,e,f,g,h,i = var('a b c d e f g h i')
A = matrix([[a,b,c],[d,e,f],[g,h,i]])
show(A.inverse())
show(expand((a+b+c)^20))