裏 RjpWiki

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

算額(その596)

2023年12月28日 | Julia

算額(その596)

Tony さんの問題
http://takasakiwasan.web.fc2.com/gunnsann/pdf/2019_04_02_1.pdf

外円の中に甲円 5 個,乙円 5 個が入っている。甲円は互いに外接し,外円に内接している。乙円は互いに外接し,甲円とも外接している。
甲円の直径が 74 寸のとき,乙円の直径は以下ほどか。

外円の半径と中心座標を R, (0, 0)
甲円の半径と中心座標を r1, (x1, y1); x1 = r1, y1 = (R - r1)*cosd(36)
乙円の半径と中心座標を r2, (0, y2)
とおき,以下の連立方程式を解く。

include("julia-source.txt");

using SymPy

@syms R::positive, r1::positive, r2::positive, y2::positive;
eq1 = (R - r1)*sind(Sym(36)) - r1
eq2 = r1^2 + ((R - r1)*cosd(Sym(36))- y2)^2 - (r1 + r2)^2
eq3 = y2*sind(Sym(36)) - r2
res = solve([eq1, eq2, eq3], (R, r2, y2))

   2-element Vector{Tuple{Sym, Sym, Sym}}:
    (sqrt(5)*r1*sqrt(10 - 2*sqrt(5))/10 + r1 + r1*sqrt(10 - 2*sqrt(5))/2, r1*(-36*sqrt(10) - 80*sqrt(2) + 37*sqrt(25 - 5*sqrt(5)) + 83*sqrt(5 - sqrt(5)))/(sqrt(5 - sqrt(5))*(21*sqrt(5) + 47)), -8*sqrt(5)*r1/(sqrt(5) + 5) + 2*r1*(3*sqrt(10) + 10*sqrt(2))/(sqrt(5 - sqrt(5))*(2*sqrt(5) + 5)))
    (sqrt(5)*r1*sqrt(10 - 2*sqrt(5))/10 + r1 + r1*sqrt(10 - 2*sqrt(5))/2, r1*(80*sqrt(2) + 36*sqrt(10) + 37*sqrt(25 - 5*sqrt(5)) + 83*sqrt(5 - sqrt(5)))/(sqrt(5 - sqrt(5))*(21*sqrt(5) + 47)), 8*sqrt(5)*r1/(sqrt(5) + 5) + 2*r1*(3*sqrt(10) + 10*sqrt(2))/(sqrt(5 - sqrt(5))*(2*sqrt(5) + 5)))

2 組の解が得られるが,最初のものが適解である。

乙円の直径は 23.0026755202222 である。

2res[1][2](r1 => 74/2).evalf() |> println

   23.0026755202222

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

   乙円の直径 = 23.0027;  R = 99.9482;  r2 = 11.5013;  y2 = 19.5672;  x1 = 37;  y1 = 50.9261

function draw(more=false)
   pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   plot()
   r1 = 74/2
   (R, r2, y2) = (
       (sqrt(5)*r1*sqrt(10 - 2*sqrt(5))/10 + r1 + r1*sqrt(10 - 2*sqrt(5))/2,
       r1*(-36*sqrt(10) - 80*sqrt(2) + 37*sqrt(25 - 5*sqrt(5)) + 83*sqrt(5 - sqrt(5)))/(sqrt(5 - sqrt(5))*(21*sqrt(5) + 47)),
       -8*sqrt(5)*r1/(sqrt(5) + 5) + 2*r1*(3*sqrt(10) + 10*sqrt(2))/(sqrt(5 - sqrt(5))*(2*sqrt(5) + 5)))
   )
   x1 = r1
   y1 = (R - r1)*cosd(Sym(36))
   @printf("乙円の直径 = %g;  R = %g;  r2 = %g;  y2 = %g;  x1 = %g;  y1 = %g\n", 2r2, R, r2, y2, x1, y1)
   circle(0, 0, R, :red)
   for i in 1:5
       x = cosd((i - 1)*72 + 54)*(R - r1)
       y = sind((i - 1)*72 + 54)*(R - r1)
       circle(x, y, r1, :blue)
       x = cosd((i - 1)*72 + 18)*y2
       y = sind((i - 1)*72 + 18)*y2
       circle(x, y, r2, :green)
   end
   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, y2, " r2,(0,y2)", :black, :left, :bottom, delta=delta/3)
       point(x1, y1, "r1,(x1,y1)", :blue, :center, delta=-delta/2)
   end
end;

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

算額(その595)

2023年12月28日 | Julia

算額(その595)

長崎市 鎮西大社諏訪神社 明治20年(1887)
米光丁: 長崎県の和算の概説

http://hyonemitsu.web.fc2.com/Nagasakiwasan.pdf

問題 20. 外円の中に正六角形を入れる。正六角形の矢の長さが 24 寸,内側の正六角形の一辺の長さが 15 寸のとき,外円の直径はいかほどか。

内側の正六角形の一辺の長さを r とする。
点A(x,y) は内側の正六角形が内接する半径 R 円周上にある。図の AB は正六角形の矢,AR は矢の長さから内側の正六角形の一辺の長さを差し引いたものになっている。三角形 ABR において第二余弦定理を適用する。

include("julia-source.txt");

using SymPy

@syms R::positive, 矢::positive, r::positive, a::positive, b::positive,
     x::positive, y::negative

r = 15
矢 = 24
a = 矢
b = sqrt((R - x)^2 + y^2);

eq1 = a^2 + b^2 - a*b - R^2
eq2 = b + r - 矢
eq3 = x^2 + y^2 - r^2

res = solve([eq1, eq2, eq3], (x, y, R))

   1-element Vector{Tuple{Sym, Sym, Sym}}:
    (195/14, -45*sqrt(3)/14, 21)

外円の半径は 21 である。

上の連立方程式において,「r」, 「矢」 を変数のままで,[eq1, eq2] から (x, R) で解くと以下のようになる。

@syms R::positive, 矢::positive, r::positive, a::positive, b::positive,
     x::positive, y::negative

a = 矢
b = sqrt((R - x)^2 + y^2);

eq1 = a^2 + b^2 - a*b - R^2
eq2 = b + r - 矢

res = solve([eq1, eq2], (x, R))

   2-element Vector{Tuple{Sym, Sym}}:
    (-sqrt(-(-r + y + 矢)*(r + y - 矢)) + sqrt(r^2 - 2*r*矢 + 2*矢^2 - 矢*sqrt(r^2 - 2*r*矢 + 矢^2)), sqrt(r^2 - 2*r*矢 + 2*矢^2 - 矢*sqrt(r^2 - 2*r*矢 + 矢^2)))
    (sqrt(-(-r + y + 矢)*(r + y - 矢)) + sqrt(r^2 - 2*r*矢 + 2*矢^2 - 矢*sqrt(r^2 - 2*r*矢 + 矢^2)), sqrt(r^2 - 2*r*矢 + 2*矢^2 - 矢*sqrt(r^2 - 2*r*矢 + 矢^2)))

2組の解が得られる。x の式は y も未知数として含むが,R の式はどちらも同じ式になり,「r」 と 「矢」のみからなる。
SymPy では簡約化できないが手動で以下のように簡約化できる。

外円の半径は得られた式を簡約化して,sqrt(r^2 - r*矢 + 矢^2) である。

R = sqrt(r^2 - r*矢 + 矢^2)
R(r => 15, 矢 => 24).evalf() |> println

   21.0000000000000

正六角形の矢の長さが 24 寸,内側の正六角形の一辺の長さが 15 寸のとき,外円の直径は 42 寸である。

function draw(more=false)
   pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   r = 15
   矢 = 24
   (x, y, R) =  (195/14, -45*sqrt(3)/14, 21)
   θ = atand(y, x)
   n = 7
   outerx = Vector{Float64}(undef, n)
   outery = Vector{Float64}(undef, n)
   innerx = Vector{Float64}(undef, n)
   innery = Vector{Float64}(undef, n)
   plot()
   for i in 1:n
       outerx[i] = cosd((i - 1)*60)*R
       outery[i] = sind((i - 1)*60)*R
       innerx[i] = cosd((i - 1)*60 + θ)*r
       innery[i] = sind((i - 1)*60 + θ)*r
   end
   circle(0, 0, R)
   circle(0, 0, r, :gray90)
   plot!(outerx, outery, color=:blue, lw=0.5)
   for i in 2:7
       segment(outerx[i], outery[i], innerx[i-1], innery[i-1], :green)
   end
   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, 0, " R(R,0)", :blue, :left, :bottom, delta=delta/2)
       point(r, 0, " r", :magenta, :left, :bottom, delta=delta/2)
       point(x, y, "A(x,y)  ", :green, :right, :vcenter)
       point(innerx[1], innery[1], "A(x,y)  ", :green, :right, :vcenter)
       point(outerx[2], outery[2], "B(R*cos(π/3),R*sin(π/3)", :blue, :center, :bottom, delta=delta)
   end
end;

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

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

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