Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
| Download
Balancing Chemical Reactions
Project: Sage notebooks for Math 224
Views: 16Image: ubuntu2204
(a, b, c, d)
2*a == c
6*a == 2*d
2*b == 2*c + d
[ 6 0 0 2]
[ 0 6 0 7]
[ 0 0 6 -4]
(a, b, c, d)
6*a == c
2*b == 2*c + d
Error in lines 1-1
Traceback (most recent call last):
File "/cocalc/lib/python3.11/site-packages/smc_sagews/sage_server.py", line 1244, in execute
exec(
File "", line 1, in <module>
NameError: name 'c' is not defined
2*d == 12*a
[ 6 0 0 -1]
[ 0 6 0 -6]
[ 0 0 6 -6]
(a, b, c, d)
a == c
Error in lines 1-1
Traceback (most recent call last):
File "/cocalc/lib/python3.11/site-packages/smc_sagews/sage_server.py", line 1244, in execute
exec(
File "", line 1, in <module>
NameError: name 'b' is not defined
Error in lines 1-1
Traceback (most recent call last):
File "/cocalc/lib/python3.11/site-packages/smc_sagews/sage_server.py", line 1244, in execute
exec(
File "", line 1, in <module>
NameError: name 'b' is not defined
[ 1 0 0 2]
[ 0 1 0 1]
[ 0 0 1 -2]