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
- Helicoid-Catenoid
- Stereographic Projection
- typesetting The TeX Pestilence: Why TeX/LaTeX Sucks
- Get Wolfram Language free
- numerical analysis, complex analysis, data visualization
- Wolfram Language
Wolfram Language
- 2021-05-06 Wolfram Language Typesetting, TeX, Problems of Traditional Math Notation, Syntax and Proof Systems
- 2021-04-24 Lisp and Wolfram Language Syntax Isomorphism and Design
- 2021-04-12 Wolfram Language, and What is Algorithmic Mathematical Art
- 2021-04-01 Basics of Wolfram Language. Richard Stallman. Functional Programing in Java Perl Python
- 2021-03-26 Why Wolfram Language is a Artificial Intelligence Language
- 2021-03-21 Wolfram Language Mathematica Demo/Tutorial. Transformation of the Plane
- 2021-03-11 demo of Wolfram Language Mathematica
- 2021-02-06 Characteristics of haskell, python, lisp, Mathematica, Stephen Wolfram