Immersive Linear Algebra – textbook with fully interactive figures (2015)
31–40 of 78 posts
Re: Immersive Linear Algebra – textbook with fully interactive figures (2015)
#32Excellent work! I've been trying to get my mother (she's a physics teacher) to learn linear algebra properly for a long time. Artin didn't work (ha), Khan Academy moved too slow/bored her, but she seems interested in this. It's important to appreciate how useful it might be to make math "tangible". Sure, someone who can define a manifold by saying "oh, put charts on it, locally diffeo blah blah" probably has a good s…
Re: Immersive Linear Algebra – textbook with fully interactive figures (2015)
#33Earlier quoted context omitted.
I thought the same thing. A set of problems to test the reader's understanding and a scratch area like a Jupyter notebook would improve the interactivity.
I've recently worked on http://dspillustrations.com for a pictorial description of signal processing concepts. In the online version, it's not fully interactive, just animations. But after downloading, you can certainly change formulas and run it interactively. Would be interested how one would manage to include a jupyter scratchpad in the online version?
Temporary notebook service: https://github.com/jupyter/tmpnb
Jupyter javascript plugin for static sites: https://github.com/oreillymedia/thebe
Also, you may want to consider trinket: https://trinket.io/
http://www.hnwatcher.com/r/984396/Embed-interactive-Python-a...
For example, this book uses trinket for interactive Python: https://books.trinket.io/pfe/index.html
I've just tried running:
import numpy as np
from scipy import linalg
A = np.array([[1,2],[3,4]])
print(linalg.det(A))
at https://trinket.io/features/python3 and it worked like a charm :)Re: Immersive Linear Algebra – textbook with fully interactive figures (2015)
#34Earlier quoted context omitted.
These are the best linear algebra videos I've ever seen. The creator is now working on an introductory calculus series. He's already released the first few episodes to patrons.
Wasn't he hired by Khan Academy recently? It's great if that helps a wider audience to benefit from his work.
And then started to do his own thing a little more.
Re: Immersive Linear Algebra – textbook with fully interactive figures (2015)
#35Re: Immersive Linear Algebra – textbook with fully interactive figures (2015)
#36I'm a MSc in CS student at the university where the authors (whom I've met a few times) teach. If you have any questions you think I'd know the answer to, ask away!
Re: Immersive Linear Algebra – textbook with fully interactive figures (2015)
#37Wait, how can I teach calculus to an untalented 11 year old?
Re: Immersive Linear Algebra – textbook with fully interactive figures (2015)
#38Earlier quoted context omitted.
I've recently worked on http://dspillustrations.com for a pictorial description of signal processing concepts. In the online version, it's not fully interactive, just animations. But after downloading, you can certainly change formulas and run it interactively. Would be interested how one would manage to include a jupyter scratchpad in the online version?
Embedding Jupyter Widgets in Other Contexts than the Notebook: http://ipywidgets.readthedocs.io/en/latest/embedding.html Temporary notebook service: https://github.com/jupyter/tmpnb Jupyter javascript plugin for static sites: https://github.com/oreillymedia/thebe Also, you may want to consider trinket: https://trinket.io/ http://www.hnwatcher.com/r/984396/Embed-interactive-Python-a... For example, this book uses trin…
Re: Immersive Linear Algebra – textbook with fully interactive figures (2015)
#39Wow, this is great.