元のファイル (SVG ファイル、422 × 421 ピクセル、ファイルサイズ: 26キロバイト)

概要

解説
English: Cobweb plot of , an extension of the Collatz map to the real line, studied by Marc Chamberland. The orbit of the starting point is shown in red, with values .
日付
原典 投稿者自身による著作物
作者 Hugo Spinelli
SVG 開発
InfoField
 
このSVGのソースコードは正しい
 
この ベクター画像Inkscapeで作成されました。
ソースコード
InfoField
Try it here (permalink). Cleaned up with Inkscape afterwards.
SageMath code
var('x')
f = (x/2)*cos(pi*x/2)^2 + ((3*x + 1)/2)*sin(pi*x/2)^2
f_latex = r'$\frac{x}{2}\cdot\cos^2\left(\frac{\pi x}{2}\right) \,+\, \frac{3x + 1}{2}\cdot\sin^2\left(\frac{\pi x}{2}\right)$'

def cobweb(f, x, xmin, xmax, max_iter=100, f_latex=None):
    p = plot(f, (xmin, xmax), ymin=xmin, ymax=xmax, aspect_ratio=1, legend_label=f_latex)
    p += plot(lambda x: x, xmin=xmin, xmax=xmax, color='gray')
    path = [(x, 0)]
    for k in range(max_iter):
        y = f(x=x)
        path.append((x, y))
        x = y
        path.append((x, x))
        if (x, x) in path[:-1]:
            break
    p += line(path, rgbcolor=(1, 0, 0))
    return p

x0 = 10
xmin, xmax = 0, 12
p = cobweb(f, x=x0, xmin=xmin, xmax=xmax, f_latex=f_latex)
config = dict(
    aspect_ratio=1, legend_font_size=13.5, legend_handlelength=1.5, legend_borderpad=0.3, legend_loc='upper left',
    ticks=[[xmin..xmax], [xmin..xmax]], tick_formatter='latex', ticks_integer=True,
    gridlines=True, gridlinesstyle={'linestyle': ':'}
)
show(p, **config)
p.save('Collatz_Cobweb.svg', **config)

ライセンス

この作品の著作権者である私は、この作品を以下のライセンスで提供します。
Creative Commons CC-Zero このファイルはクリエイティブ・コモンズ CC0 1.0 全世界 パブリック・ドメイン提供のもとで利用可能にされています。
ある作品に本コモンズ証を関連づけた者は、その作品について世界全地域において著作権法上認められる、その者が持つすべての権利(その作品に関する権利や隣接する権利を含む。)を、法令上認められる最大限の範囲で放棄して、パブリック・ドメインに提供しています。

この作品は、たとえ営利目的であっても、許可を得ずに複製、改変・翻案、配布、上演・演奏することが出来ます。

キャプション

このファイルの内容を1行で記述してください
Cobweb plot of Chamberland's extension of the Collatz map, with the orbit of the starting point x = 10.

このファイルに描写されている項目

題材

5 10 2023

851e6b2d103653e07f4c8714fcb238e86bbb5b19

26,657 バイト

421 ピクセル

422 ピクセル

ファイルの履歴

過去の版のファイルを表示するには、その版の日時をクリックしてください。

日付と時刻サムネイル寸法利用者コメント
現在の版2023年10月5日 (木) 21:392023年10月5日 (木) 21:39時点における版のサムネイル422 × 421 (26キロバイト)Hugo SpinelliUploaded own work with UploadWizard

以下のページがこのファイルを使用しています:

グローバルなファイル使用状況

以下に挙げる他のウィキがこの画像を使っています:

メタデータ

  NODES