Xah Talk Show 2021-03-11 demo of Wolfram Language Mathematica
- https://youtu.be/mPigL6mH3yI
- Xah Talk Show 2021-03-11 demo of Wolfram Language Mathematica
// write a function to do factorial /* [ xah_range(min, max) → return a array from min to max, inclusive. xah_range(min, max, step) → in steps of step. If step is not integer, then max may not be included. http://xahlee.info/js/js_range_array.html version 2019-10-31 ] */ const xah_range = (( min, max, step = 1, ) => (Array(Math.floor((max - min) / step) + 1).fill(min).map( ((x, i) => (x + i * step)), ))); const factorial = ((x) => xah_range(1,x).reduce(((a,b) => a*b))); console.log( factorial(100) );
Topic talked:
- pi to 10k digits
- Factorial. JavaScript vs Mathematica
- JS: Range Function for Array
- JS: Array.prototype.reduce
- symbolic by default. demo fractions. Show the function N.
- demo 2d graphics.
- Geometry: Transformation of the Plane
- demo interactive graphics with slider.
- Requirements for a Visualization System (2010)
- Helicoid-Catenoid
- Stereographic Projection
- typesetting The TeX Pestilence: Why TeX LaTeX Sucks (2004)
- Get Wolfram Language free
- numerical analysis, complex analysis, data visualization
- Wolfram Language