学習環境/開発環境
- 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
- OS X El Capitan - Apple (OS)
- Emacs (Text Editor)
- JavaScript (プログラミング言語)
- kjs-math-number (JavaScript Library)
- Safari(Web browser)
線型代数入門 (松坂 和夫(著)、岩波書店)の第4章(複素数、複素ベクトル空間)、2(複素平面)、問5.を取り組んでみる。
問5.
number.js で確認。
JavaScript
コード(Emacs)
(function () {
'use strict';
var div_output = document.querySelector('#output0'),
button_calc = document.querySelector('#calc0'),
nl = '<br>',
display;
display = function () {
var a,
b,
a,
b,
d = -Math.floor(Math.random() * 100),
left,
right,
output = '';
a = new Complex(Math.floor(Math.random() * 100) + 1,
Math.floor(Math.random() * 100) + 1);
b = new Complex(Math.floor(Math.random() * 100) + 1,
Math.floor(Math.random() * 100) + 1);
left = a.sub(b).abs();
right = a.abs().add(b.abs());
output +=
'a = <math>' + a + '</math>, b = <math>' + b + '</math>' + nl +
'左辺: <math><mn>' + left + '</mn></math>' + nl +
'右辺: <math><mn>' + right + '</mn></math>' + nl +
'左辺 ≤ 右辺 : ' + left.le(right) + nl + nl;
a = 0;
b = new Complex(Math.floor(Math.random() * 100) + 1,
Math.floor(Math.random() * 100) + 1);
left = a.sub(b).abs();
right = a.abs().add(b.abs());
output +=
'a = <math><mn>' + a + '</mn></math>, ' +
'b = <math>' + b +'</math>' + nl +
'左辺: <math><mn>' + left + '</mn></math>' + nl +
'右辺: <math><mn>' + right + '</mn></math>' + nl +
'左辺 = 右辺: ' + left.isEqual(right) + nl +
'差: ' + left.sub(right).abs() + nl + nl;
a = new Complex(Math.floor(Math.random() * 100) + 1,
Math.floor(Math.random() * 100) + 1);
b = d.mul(a);
left = a.sub(b).abs();
right = a.abs().add(b.abs());
output +=
'a = <math>' + a + '</math>, b = <math>' + b +'</math>' + nl +
'左辺: <math><mn>' + left + '</mn></math>' + nl +
'右辺: <math><mn>' + right + '</mn></math>' + nl +
'左辺 = 右辺: ' + left.isEqual(right) + nl +
'差: ' + left.sub(right).abs() + nl + nl;
div_output.innerHTML = output;
};
button_calc.onclick = display;
display();
}());
0 コメント:
コメントを投稿