裏 RjpWiki

Julia ときどき R, Python によるコンピュータプログラム,コンピュータ・サイエンス,統計学

算額(その540)

2023年12月04日 | Julia

算額(その540)

和算図形問題あれこれ - 『両式容題問』より
https://gunmawasan.web.fc2.com/kongetu-no-mondai.html

外円内に弦と等円 5 個を入れる。等円の直径が 1 寸のとき,外円の直径はいかほどか。

弦と y 軸の交点の y 座標を a + r とする(下の 3 個の等円の中心の y 座標が a, a < 0 である)。
外円の半径と中心座標を R, (0, 0)
等円の半径と中心座標を r, (r, a + 2r), (2r, a) 
として以下の連立方程式を解く。

include("julia-source.txt");

using SymPy

@syms a::negative, r::positive, R::positive

eq1 = (2r)^2 + a^2 - (R - r)^2
eq2 = r^2 + (a + 2r)^2 - (R - r)^2
res = solve([eq1, eq2], (R, a))

   1-element Vector{Tuple{Sym, Sym}}:
    (r*(1 + sqrt(65)/4), -r/4)

外円の半径は等円の半径の 1 + (√65)/4 ≒ 3.0155644370746373 倍である。
したがって,等円の直径が 1 寸のとき,外円の直径は 3.0155644370746373 寸である。

1 + (√65)/4

   3.0155644370746373

その他のパラメータは以下の通り。

   a = -0.125;  R = 1.50778;  外円の直径 = 3.01556

function draw(more=false)
    pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   r = 1/2
   (R, a) = (r*(1 + sqrt(65)/4), -r/4)
   @printf("a = %g;  R = %g;  外円の直径 = %g\n", a, R, 2R)
   plot()
   circle(0, 0, R, :blue)
   circle(r, a + 2r, r)
   circle(-r, a + 2r, r)
   circle(2r, a, r)
   circle(-2r, a, r)
   circle(0, a, r)
   segment(-sqrt(R^2 - (a + r)^2), a + r, sqrt(R^2 - (a + r)^2), a + r, :blue)
    if more
       delta = (fontheight = (ylims()[2]- ylims()[1]) / 500 * 10 * 2) /3  # size[2] * fontsize * 2
       hline!([0], color=:black, lw=0.5)
       vline!([0], color=:black, lw=0.5)
       point(r, a + 2r, "(r,a+2r)", :red, :center, delta=-delta/2)
       point(2r, a, "(2r,a)", :red, :center, delta=-delta/2)
       point(0, a, " a", :red, :left, :vcenter)
       point(0, a + r, " a+r", :blue, :left, :bottom, delta=delta/2)
       point(0, R, " R", :blue, :left, :bottom, delta=delta/2)
    end
end;

コメント
  • X
  • Facebookでシェアする
  • はてなブックマークに追加する
  • LINEでシェアする

算額(その539)

2023年12月04日 | Julia

算額(その539)

和算図形問題あれこれ - 加須市騎西での算額展示会(氷川神社の復元算額より)
https://gunmawasan.web.fc2.com/kongetu-no-mondai.html

正方形の中に四分円 2 個,半円,大円,小円 をそれぞれ 1 個が入っている。大円の直径が 1 寸のとき,正方形の一辺の長さ,小円の直径を求めよ。

正方形の一辺の長さを 2a として,左下の頂点を原点に置く。
大円の半径と中心座標を r1, (a, a + r1)
小円の半径と中心座標を r2, (x2, y2)
とおき,以下の連立方程式を解く。

include("julia-source.txt");

using SymPy

@syms a::positive, r1::positive, r2::positive, x2::positive, y2::positive

eq1 = a^2 + (a + r1)^2 - (2a - r1)^2
eq2 = (2a - x2)^2 + y2^2 - (2a - r2)^2
eq3 = (x2 - a)^2 + (2a - y2)^2 - (a - r2)^2
eq4 = x2^2 + y2^2 - (2a + r2)^2
res = solve([eq1, eq2, eq3, eq4], (a, r2, x2, y2))

   1-element Vector{NTuple{4, Sym}}:
    (3*r1, 3*r1*(26 - sqrt(-52*sqrt(3)*sqrt(19 - 8*sqrt(3)) - 24*sqrt(3) + 733))/13, 3*r1*(2*sqrt(57 - 24*sqrt(3)) + 13)/13, 6*r1*(sqrt(3) + 9)/13)

正方形の一辺の長さは大円の半径の 6 倍である。
小円の半径は大円の半径の 3(4√3 - 3)/3 倍である。

したがって,大円の直径が 1 寸のとき,正方形の一辺の長さは 3 寸,小円の直径は 0.9065084377558866 寸である。

res[1][2] |> sympy.sqrtdenest |> simplify |> println

   3*r1*(-3 + 4*sqrt(3))/13

res[1][2].evalf() |> println

   0.906508437755886*r1

その他のパラメータは以下の通り。

   r1 = 0.5;  a = 1.5;  r2 = 0.453254;  x2 = 2.40651;  y2 = 2.47663
   小円の直径 = 0.906508;  正方形の一辺の長さ = 3

function draw(more=false)
    pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   r1 = 1/2
   (a, r2, x2, y2) = (3*r1, 3*r1*(26 - sqrt(-52*sqrt(3)*sqrt(19 - 8*sqrt(3)) - 24*sqrt(3) + 733))/13, 3*r1*(2*sqrt(57 - 24*sqrt(3)) + 13)/13, 6*r1*(sqrt(3) + 9)/13)
   @printf("r1 = %g;  a = %g;  r2 = %g;  x2 = %g;  y2 = %g\n", r1, a, r2, x2,  y2)
   @printf("小円の直径 = %g;  正方形の一辺の長さ = %g\n", 2r2, 2a)
   plot([0, 2a, 2a, 0, 0], [0, 0, 2a, 2a, 0], color=:black, lw=1)
   circle(0, 0, 2a, :magenta, beginangle=0, endangle=90)
   circle(2a, 0, 2a, :magenta, beginangle=90, endangle=180)
   circle(a, 2a, a, :orange, beginangle=180, endangle=360)
   circle(a, a + r1, r1, :blue)
   circle(x2, y2, r2, :red)
    if more
       delta = (fontheight = (ylims()[2]- ylims()[1]) / 500 * 10 * 2) /3  # size[2] * fontsize * 2
       hline!([0], color=:black, lw=0.5)
       vline!([0], color=:black, lw=0.5)
       point(a, 2a, "(a,2a)", :orange, :center, delta=-delta)
       point(x2, y2, "小円:r2,(x2,y2)", :red, :center, delta=-delta)
       point(a, a + r1, "大円:r1,(a,a+r1)", :blue, :center, delta=-delta)
       point(2a, 0, "2a ", :blue, :right, :bottom, delta=delta/2)
    end
end;

コメント
  • X
  • Facebookでシェアする
  • はてなブックマークに追加する
  • LINEでシェアする

算額(その538)

2023年12月04日 | Julia

算額(その538)

和算図形問題あれこれ - 加須市騎西での算額展示会(氷川神社の復元算額より)
https://gunmawasan.web.fc2.com/kongetu-no-mondai.html

外円内に正方形 5 個と等円 4 個を配置する。等円の直径が 1 寸のとき,外円の直径を求めよ。

正方形の一辺の長さを 2x
外円の半径と中心座標を R, (0, 0)
等円の半径と中心座標を r, (x + r, x + r)
とおき,以下の連立方程式を解く。

include("julia-source.txt");

using SymPy

@syms x::positive, r::positive, R::positive

eq1 = x^2 + (3x)^2 - R^2
eq2 = 2(x + r)^2 - (R - r)^2
res = solve([eq1, eq2], (R, x))

   2-element Vector{Tuple{Sym, Sym}}:
    ((-r^2 - 4*r^2*(-sqrt(10)/8 + 1/4 + sqrt(2)*sqrt(11 - 2*sqrt(10))/8) + 8*r^2*(-sqrt(10)/8 + 1/4 + sqrt(2)*sqrt(11 - 2*sqrt(10))/8)^2)/(2*r), r*(-sqrt(10)/8 + 1/4 + sqrt(2)*sqrt(11 - 2*sqrt(10))/8))
    ((-4*r^2*(1/4 + sqrt(10)/8 + sqrt(2)*sqrt(2*sqrt(10) + 11)/8) - r^2 + 8*r^2*(1/4 + sqrt(10)/8 + sqrt(2)*sqrt(2*sqrt(10) + 11)/8)^2)/(2*r), r*(1/4 + sqrt(10)/8 + sqrt(2)*sqrt(2*sqrt(10) + 11)/8))

2 組の解が得られるが,2 番目のものが適解である。簡約化して以下を得る。

res[2][1] |> sympy.sqrtdenest |> simplify |> println

   r*(sqrt(5) + sqrt(10) + 5 + 5*sqrt(2))/4

res[2][2] |> sympy.sqrtdenest |> simplify |> println

   r*(2 + sqrt(10) + sqrt(2)*(1 + sqrt(10)))/8

外円の半径は等円の半径の (√5 + √10 + 5 + 5√2)/4 倍,正方形の一辺の長さの半分は等円の半径の (2 + √10 + √2(1 + √10))/8 倍である。
等円の直径が 1 寸のとき,外円の直径は 4.367353362383412 寸,正方形の一辺の長さは 1.381078397192632 である。

(√5 + √10 + 5 + 5√2)/4, (2 + √10 + √2(1 + √10))/8

   (4.367353362383412, 1.381078397192632)

   R = 2.18368;  x = 0.690539
   外円の直径 = 4.36735;  正方形の一辺の長さ = 1.38108

function draw(more=false)
    pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   r = 1/2
   (R, x) = ((-4*r^2*(1/4 + sqrt(10)/8 + sqrt(2)*sqrt(2*sqrt(10) + 11)/8) - r^2 + 8*r^2*(1/4 + sqrt(10)/8 + sqrt(2)*sqrt(2*sqrt(10) + 11)/8)^2)/(2*r), r*(1/4 + sqrt(10)/8 + sqrt(2)*sqrt(2*sqrt(10) + 11)/8))
   @printf("R = %g;  x = %g\n", R, x)
   @printf("外円の直径 = %g;  正方形の一辺の長さ = %g\n", 2R, 2x)
   plot()
   circle(0, 0, R, :magenta)
   plot!([3x, 3x, -3x, -3x, 3x], [-x, x, x, -x, -x], color=:blue, lw=0.5)
   plot!([-x, x, x, -x, -x], [3x, 3x, -3x, -3x, 3x], color=:blue, lw=0.5)
   circle4(x + r, x + r, r)
    if more
       delta = (fontheight = (ylims()[2]- ylims()[1]) / 500 * 10 * 2) /3  # size[2] * fontsize * 2
       hline!([0], color=:black, lw=0.5)
       vline!([0], color=:black, lw=0.5)
       point(x, 0, " x", :blue, :left, :bottom, delta=delta)
       point(x + r, x + r, "(x+r,x+r)", :red, :center, delta=-delta)
       point(3x, x, "(3x,x) ", :magenta, :right, :top, delta=-delta/2)
    end
end;

 

コメント
  • X
  • Facebookでシェアする
  • はてなブックマークに追加する
  • LINEでシェアする

算額(その537)

2023年12月04日 | Julia

算額(その537)

和算図形問題あれこれ - 令和4年3月の問題-No.1
https://gunmawasan.web.fc2.com/kongetu-no-mondai.html

正方形内に辺の長さがすべて等しい六角形(正六角形ではない)を入れる。正方形の辺が 494 寸のとき,六角形の一辺の長さを求めよ。

正方形の一辺の長さを a,六角形の一辺の長さを x として,以下の方程式を解く。
図の左下にある直角三角形にピタゴラスの定理を適用する。

include("julia-source.txt");

using SymPy

@syms a::positive, x::positive

eq = sqrt(((a - x)/2)^2 + (a/2)^2) - x
res = solve(eq, x)[1]
res |> println

   a*(-1 + sqrt(7))/3

六角形の一辺の長さ x は,正方形の一辺の長さ a の (√7 - 1)/3 倍である。
a = 494 のとき,x ≒ 271.000382555303 である。

res(a => 494).evalf() |> println

   271.000382555303

function draw(more=false)
    pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   a = 494
   x = a*(√7 - 1)/3
   y = (a - x)/2
   @printf("a = %g;  x = %g\n", a, x)
   plot([0, a, a, 0, 0], [0, 0, a, a, 0], color=:red, lw=0.5)
   plot!([0, a/2, a, a, a/2, 0, 0], [y, 0, y,  a - y, a, a - y, y], color=:blue, lw=1)
    if more
       delta = (fontheight = (ylims()[2]- ylims()[1]) / 500 * 10 * 2) /3  # size[2] * fontsize * 2
       # hline!([0], color=:black, lw=0.5)
       # vline!([0], color=:black, lw=0.5)
       point(0, a, " a", :red, :left, :top)
       point(0, a - y, " a - y", :blue, :left, :top)
       point(0, y, " y = (a - x)/2", :blue, :left, :bottom)
       point(a/2, 0, "a/2", :blue, :center, :bottom, delta=2delta)
    end
end;

コメント
  • X
  • Facebookでシェアする
  • はてなブックマークに追加する
  • LINEでシェアする

算額(その536)

2023年12月04日 | Julia

算額(その536)

一〇一 大宮市高鼻町 氷川神社 明治31年(1898)
埼玉県立図書館:埼玉県史料集 第二集『埼玉の算額』,昭和44年,誠美堂印刷所,埼玉県与野市.

和算図形問題あれこれ - 加須市騎西での算額展示会(氷川神社の復元算額より)
https://gunmawasan.web.fc2.com/kongetu-no-mondai.html

外円内に甲円 2 個,乙円 6 個を入れる。乙円の直径が 1 寸のとき,甲円の直径はいかほどか。

外円の半径と中心座標を r0, (0, 0); r0 = 2r1
甲円の半径と中心座標を r1, (0, r1)
等円の半径と中心座標を r2, (x21, 0), (x22, y2)
とおき,以下の連立方程式を解く。

include("julia-source.txt");

using SymPy

@syms r0::positive, r1::positive, r2::positive, x21::positive, x22::positive, y2::positive

r0 = 2r1
eq1 = x22^2 + r1^2 - (r1 + r2)^2
eq2 = x21^2 + (r1 - y2)^2 - (r1 + r2)^2
eq3 = (x21 - x22)^2 + y2^2 - (2r2)^2
eq4 = x21^2 + y2^2 - (r0 - r2)^2
res = solve([eq1, eq2, eq3, eq4], (r1, x21, x22, y2))

   1-element Vector{NTuple{4, Sym}}:
    (r2*(1 + sqrt(73))/4, 8*sqrt(2)*r2/sqrt(3 + sqrt(73)), r2*sqrt(3/2 + sqrt(73)/2), r2*(-5/2 + sqrt(73)/2))

甲円の直径は乙円の直径の (1 + √73)/4 倍である。
乙円の直径が 1 寸のとき,甲円の直径は約 2.386 寸である。

(1 + √73)/4

   2.3860009363293826

その他のパラメータは以下の通り。

   r1 = 1.193;  x21 = 1.66493;  x22 = 1.20125;  y2 = 0.886001;  甲円の直径 = 2.386

function draw(more=false)
    pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   r2 = 1//2
   (r1, x21, x22, y2) = (r2*(1 + sqrt(73))/4, 8*sqrt(2)*r2/sqrt(3 + sqrt(73)), r2*sqrt(3/2 + sqrt(73)/2), r2*(-5/2 + sqrt(73)/2))
   r0 = 2r1
   @printf("r1 = %g;  x21 = %g;  x22 = %g;  y2 = %g;  甲円の直径 = %g\n", r1, x21, x22, y2, 2r1)
   plot()
   circle(0, 0, r0, :black)
   circle(0, r1, r1, :blue)
   circle(0, -r1, r1, :blue)
   circle4(x21, y2, r2, :red)
   circle(x22, 0, r2, :red)
   circle(-x22, 0, r2, :red)
    if more
       delta = (fontheight = (ylims()[2]- ylims()[1]) / 500 * 10 * 2) /3  # size[2] * fontsize * 2
       hline!([0, -r0], color=:black, lw=0.5)
       vline!([0], color=:black, lw=0.5)
       point(0, r1, " 甲円:r1,(0,r1)", :blue, :left, :vcenter)
       point(x21, y2, "乙円:r2,(x21,y2)", :black, :center, delta=-delta)
       point(x22, 0, "乙円:r2,(x22,0)", :black, :center, delta=-delta)
       point(r0, 0, "r0 ", :black, :right, delta=-delta)

    end
end;

コメント
  • X
  • Facebookでシェアする
  • はてなブックマークに追加する
  • LINEでシェアする

PVアクセスランキング にほんブログ村

PVアクセスランキング にほんブログ村