0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【トーラス構造と古典数学】等比数列(幾何数列)④公比Dが正の場合の収束と拡散, そして対数尺(自然指数関数)

Last updated at Posted at 2020-04-12

【Rで球面幾何学】等比数列(幾何数列)①その基本的性質について。
とりあえず今回は細かい解説は抜きにして必要な数式集めに徹したいと思います。

##公比D=1の時
初項1,公差1の等差数列は初項1,公差0の等差数列、さらにはX軸,Y軸…と次元を重ねる直交座標系上(単位円,単位球…)におけるピタゴラスの定理sqrt(X^2+Y^2…)=1と完全に一致する。
【Rで球面幾何学】等比数列(幾何数列)②同心円集合(Concentric Set)に射影(Projection)する準備
OIAS003.gif

##0<公比D<1の時
純粋な1次元展開により0へ向けて収束する。
MOF036.gif

#振動関数(Mathematical Oscillation Function)
#公比D=0.8

MOF01<-function(index){
z0<-complex(real=0.8,imaginary=0)
f0<-function(x)z0^(2*x)
c0<-f0(index)
cx<-Re(c0)
cy<-Im(c0)
plot(cx,cy,asp=1,type="l",xlim=c(-1,1),ylim=c(-1,1),main="Mathematical Oscillation Function",xlab="X axis",ylab="Y axis")
text(cx,cy,"X",cex=2,col=rgb(0,1,0))
text(1,0,"1",cex=2,col=rgb(0,0,1))
text(0,0,"0",cex=2,col=rgb(0,0,1))
segments(0,0,cx,cy,col=rgb(0,1,0))
abline(h=0, col=c(200,200,200))
abline(v=0, col=c(200,200,200))
}

#アニメーション動作設定
Time_Code<-seq(0,8,length=30)
#アニメーション
library("animation")
saveGIF({
for (i in Time_Code){
 MOF01(i)
}
}, interval = 0.1, movie.name = "MOF36.gif")

##公比D>1の時
純粋な1次元展開により無限大に向けて発散する。
MOF037.gif

#振動関数(Mathematical Oscillation Function)
#公比D=1.2

MOF01<-function(index){
z0<-complex(real=1.2,imaginary=0)
f0<-function(x)z0^(2*x)
c0<-f0(index)
cx<-Re(c0)
cy<-Im(c0)
plot(cx,cy,asp=1,type="l",xlim=c(-3,3),ylim=c(-3,3),main="Mathematical Oscillation Function",xlab="X axis",ylab="Y axis")
text(cx,cy,"X",cex=2,col=rgb(0,1,0))
text(1,0,"1",cex=2,col=rgb(0,0,1))
text(0,0,"0",cex=2,col=rgb(0,0,1))
segments(0,0,cx,cy,col=rgb(0,1,0))
abline(h=0, col=c(200,200,200))
abline(v=0, col=c(200,200,200))
}

#アニメーション動作設定
Time_Code<-seq(0,8,length=30)
#アニメーション
library("animation")
saveGIF({
for (i in Time_Code){
 MOF01(i)
}
}, interval = 0.1, movie.name = "MOF37.gif")

###「射影」としての等比数列と自然指数関数
数直線の概念がその同心円を描く回転性の黙殺によって成立する様に、「公比Dの符号が正の場合の等比数列の直線的動作」は「公比Dの符号が負の場合の等比数列の回転性」を黙殺する事によって成立しているといえそうです。要するに、これが絶対値概念の正体とも。

【Rで球面幾何学】等比数列(幾何数列)③振動関数を巡る収束と拡散。
公比D=-1の時
MOF021.gif
MOF022.gif
0<公比D<-1の時
MOF024.gif
公比D>-1の時
MOF025.gif

とはいえその結果を両側無限数列に射影するとまた回転問題が振り返すので「数直線上の0から1に無限小(1/Inf)から0までの値を、1から無限大の範囲に0から無限大の範囲を射影する」特殊な片側無限数列を用います。どこかで見覚えがありませんか? そう、自然指数関数の発想ですね。
MOF038.gif

#振動関数(Mathematical Oscillation Function)
#公比D=e

MOF01<-function(index){
z0<-complex(real=1.2,imaginary=0)
f0<-function(x)exp(x)
c0<-f0(index)
cx<-Re(c0)
cy<-Im(c0)
plot(cx,cy,asp=1,type="l",xlim=c(-4,4),ylim=c(-4,4),main="Mathematical Oscillation Function",xlab="X axis",ylab="Y axis")
text(cx,cy,"X",cex=2,col=rgb(0,1,0))
text(1,0,"1",cex=2,col=rgb(0,0,1))
text(0,0,"0",cex=2,col=rgb(0,0,1))
segments(0,0,cx,cy,col=rgb(0,1,0))
abline(h=0, col=c(200,200,200))
abline(v=0, col=c(200,200,200))
}

#アニメーション動作設定
Time_Code<-seq(-1.5,1.5,length=30)
#アニメーション
library("animation")
saveGIF({
for (i in Time_Code){
 MOF01(i)
}
}, interval = 0.1, movie.name = "MOF38.gif")

【Rで球面幾何学】指数・対数関数の発見
OIAS009.gif

こうして等比数列関係の数式が出揃ったところで以下続報…

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?