Monday, December 26, 2016

球辞苑: クイックモーション



  • Masato Yoshii (吉井理人)
  • 論文
  • Yutaka Fukumoto (福本豊)
  • Katsuya Nomura (野村克也)
  • Michio Sato (佐藤道郎)
  • すり足クイック
  • Choji Murata (村田兆治)
  • Hideo Nomo (野茂英雄)
  • Yukinaga Maeda (前田幸長)
  • 捕手への愛
クイックモーションのタイム(2016年最速順位)
  1. 久保康友(1.06秒)
  2. 塩見貴洋(1.11秒)
  3. 菅野智之(1.15秒)
  4. 大谷翔平(1.19秒)
  5. メッセンジャー(1.20秒)
クイックモーションの歴史
  1. 70年代、福本豊の盗塁阻止を目的に、野村克也が考案
  2. 佐藤道郎が習得した「すり足クイック」が原型
クイックモーションの研究
  1. モーションの速さと東急の質、どちらを重視するかは、プロのコーチでも意見が食い違う
  2. 球速と制球力を落とさずにモーションを速くするには、肩と腰のひねり方が重要
  3. モーションの速さを変えることで、打者のタイミングを外す武器にもなる

Sunday, December 25, 2016

Ryo Fukui (福居良): Scenery (1976)

Ryo Fukui

Airi Taira (平愛梨): 志村の時間: 実は超天然キャラ・㊙エピソード

Airi Taira


  • AV≠アダルト・ビクトリー
  • インリン・オブ・ジョイトイ
  • ボジョレ・ヌーヴォー≠ボラギノール
  • ピータン≠ダチョウのフン
  • 無洗米≠高級米
  • 家庭でツッコミ
  • コンビニと営業時間
  • 兵庫県明石市
  • お母さん携帯忘れたと電話
  • スマホと虫眼鏡
  • 三瓶さん
  • 悩みがない
  • お風呂に時間
  • 私は毎日パラダイスだ

Thursday, December 22, 2016

Derek Muller (Veritasium): Post-Truth: Why Facts Don't Matter Anymore

Derek Muller

  • Splinternet (Cyberbalkanization)
  • Arab spring (アラブの春)
  • Political faction (派閥)

Monday, December 19, 2016

Noncommutative geometry and particle physics

The Cosmic Code Breakers (素数の魔力に囚われた人々): リーマン予想・天才たちの150年の闘い

Louis de Branges de Bourcia
Don Zagier
Peter Sarnak
Brian Conrey
Leonhard Euler
Carl Friedrich Gauss
Bernhard Riemann
Marcus du Sautoy
G. H. Hardy
John Edensor Littlewood
John Forbes Nash Jr.
Atle Selberg
Ron Rivest
Hugh Lowell Montgomery
Freeman Dyson
Alain Connes

  • Riemann hypothesis (リーマン予想)
  • Prime number (素数)
  • Louis de Branges de Bourcia (ルイ・ド・ブランジュ)
  • Don Zagier (ドン・ザギエ)
  • Peter Sarnak (ピーター・サルナック)
  • Brian Conrey ()
  • Nikolai Mnev (ニコライ・ムニェフ)
  • Leonhard Euler (レオンハルト・オイラー)
  • Carl Friedrich Gauss (カール・フリードリヒ・ガウス)
  • 素数階段
  • 自然対数表
  • 素数だけの式
  • (Pi^2)/6
  • 素数と円の関係
  • Bernhard Riemann (ベルンハルト・リーマン)
  • Riemann zeta function (リーマンゼータ関数)
  • Zero (complex analysis) (零点)
  • G. H. Hardy (ゴッドフレイ・ハロルド・ハーディ)
  • John Edensor Littlewood (ジョン・エデンサー・リトルウッド)
  • John Forbes Nash Jr. (ジョン・ナッシュ)
  • Men of Mathematics (数学を作った人々)
  • Eric Temple Bell (E.T.ベル)
  • Alan Turing (アラン・チューリング)
  • Potassium cyanide (シアン化カリウム)
  • Atle Selberg (アトル・セルバーグ)
  • 「リーマン予想自殺行為」
  • ミクロの空間とリーマン予想
  • de Branges's theorem (ド・ブランジュの定理) (ビーベルバッハ予想)
  • Ron Rivest (ロナルド・リベスト)
  • VeriSign and cryptography
  • Stewart Baker (スチュアート・ベイカー)
  • NSA
  • Hugh Lowell Montgomery (ヒュー・モンゴメリー)
  • Montgomery's pair correlation conjecture (モンゴメリー・オドリズコ予想)
  • 零点の間隔と原子核のエネルギーの間隔
  • Michael Berry (physicist) (マイケル・ベリー)
  • ハート型のビリヤード台
  • ミクロの物理学と零点の共通点
  • Alain Connes (アラン・コンヌ)
  • Noncommutative geometry (非可換幾何)
  • 物理学者は空間を探している
  • Sanae Ueda (上田早苗)

Sunday, December 18, 2016

Wednesday, December 14, 2016

Takuya Kimura (木村拓哉) & Takako Tokiwa (常盤貴子): Beautiful Life (Japanese TV series) (ビューティフルライフ): 第1話

Takuya Kimura
Takako Tokiwa


  • だったら俺があんたのバリアフリーになってやるよ

C (programming language): Summation of Arithmetic Progression with Common Difference of 1

Command:

$ cat summation1.c


Result:

#include<stdio.h>
#include<stdlib.h>
int main(int argc, char* argv[]){
        if(argc!=2){
               printf("Bad argument\n");
               exit(1);
        }
        long int a=0;
        for (long int i=1; i<=atoi(argv[1]); i++){
               a+=i;
        }
        printf("%ld\n",a);
        return 0;
}


Command:

$ cat summation2.c


Result:

#include<stdio.h>
#include<stdlib.h>
int main(int argc, char* argv[]){
  if (argc != 2){
printf("Bad argument\n");
exit(1);
}
long int a = 0;
long int n = atoi(argv[1]);
a = (n*(n+1))/2;
printf("%ld\n", a);
         return 0;
}


Command:

$ gcc -o summation1 summation1.c
$ gcc -o summation2 summation2.c
$ time ./summation1 100000000


Result:

5000000050000000

real 0m3.517s
user 0m3.511s
sys 0m0.002s


Command:

$ time ./summation2 100000000


Result:

5000000050000000

real 0m0.005s
user 0m0.001s
sys 0m0.001s


Monday, December 12, 2016

Faces In My Mind

Faces in my mind

Timothy Browning: Numberphile: Hasse Principle

Timothy Browning

Bobby Wilson: Numberphile: Let's Talk About Sets

Bobby Wilson

  • Arithmetic progression (等差数列)
  • Geometric progression (等比数列)
  • Cantor middle third set

Philip Moriarty: Computerphile: Physics of Computer Chips

Philip Moriarty

David Brailsford: Computerphile: Computers Without Memory

David Brailsford

Jem Davies: Computerphile: CPU vs GPU (What's the Difference?)

Jem Davies


  • Specialist processor
  • 3D plane equations
  • extracting parallelism
  • we care bulk throughput
  • throughput computing

Jem Davies: Computerphile: ARM Don't Make Computer Chips

Jem Davies


  • IP blocks

Steve Furber: Computerphile: Why ARM Owes Apple

Steve Furber

Gaming Historian: The Story of Super Mario Bros. 2

Philip Moriarty: Sixty Symbols: A Magic Number: The Feigenbaum Constant

Philip Moriarty


δ ≈ 4.6692

Saturday, December 10, 2016

Grant Sanderson: 3Blue1Brown: Visualizing the Riemann zeta function and Analytic Continuation

Grant Sanderson


  • Analytic continuation (解析接続)
  • Riemann zeta function (リーマンゼータ関数)
  • Complex analysis
  • Analytic = Angle-preserving ...kind of

Burkard Polster: Mathologer: Times Tables, Mandelbrot and the Heart of Mathematics

Burkard Polster


  • Cardioid (カージオイド)
  • Multiplication table (九九)
  • Catacaustic
  • 2 times table modulo 200
  • 34 times table modulo 200
  • 51 times table modulo 200
  • 99 times table modulo 200