まさしく「組合せ爆発(Combinatorial explosion)」の語源ですね。 統計言語Rでの計算例 f0<-function(x){factorial(x)}#グラフのスケール決定gs_x<-c(0,7)gs_y<-c(0,1000)#タイトル定義Main_title<-c("Combinatorial explosion")x_title<-c("X")y_title<-c("Y=X!")#グラフ描画plot(f0,xlim=gs_x,ylim=gs_y,type="l", mai…