学習環境
- Surface 3 (4G LTE)、Surface 3 タイプ カバー、Surface ペン(端末)
- Windows 10 Pro (OS)
- 数式入力ソフト(TeX, MathML): MathType
- MathML対応ブラウザ: Firefox、Safari
- MathML非対応ブラウザ(Internet Explorer, Google Chrome...)用JavaScript Library: MathJax
数学読本〈4〉数列の極限,順列/順列・組合せ/確率/関数の極限と微分法(松坂 和夫(著)、岩波書店)の第15章(「場合の数」 を数える - 順列・組合せ)、15.3(二項定理)、二項定理の応用、二項定理の性質、問38、39.を取り組んでみる。
コード(Emacs)
HTML5
<button id="run0">run</button> <button id="clear0">clear</button> <pre id="output0"></pre> <script src="sample38.js"></script>
JavaScript
let input0 = document.querySelector('#n0'), btn0 = document.querySelector('#run0'), btn1 = document.querySelector('#clear0'), pre0 = document.querySelector('#output0'), p = (x) => pre0.textContent += x + '\n'; let range = (start, end, step=1) => { let iter = (i, result) => { return i >= end ? result : iter(i + step, result.concat([i])); } return iter(start, []); }; let factorial = (n) => { return n <= 1 ? 1 : n * factorial(n - 1); }; let combination = (n, r) => { return factorial(n) / (factorial(r) * factorial(n - r)); }; let output = () => { p('38.'); p(combination(9, 6) * Math.pow(-1, 9 - 6)); p(combination(9, 4), Math.pow(-1, 9 - 4)); p('39.'); p(combination(6, 4) * Math.pow(3, 4), Math.pow(2, 4 - 6)); p(combination(6, 1) * 3 * Math.pow(2, 1 - 6) === 9 / 16); p(combination(6, 2) * Math.pow(3, 2) * Math.pow(2, 2 - 6) === 135 / 16); }; btn0.onclick = output; btn1.onclick = () => { pre0.textContent = ''; }; output();
0 コメント:
コメントを投稿