算額(その643)
長野県軽井沢町峠 熊野神社 安政4年(1857)
中村信弥「改訂増補 長野県の算額」
http://www.wasan.jp/zoho/zoho.html
外円の中に 4 つの円弧と 2 つの等円が入っている。等円は互いに外接し円弧とも外接している。
大矢,小矢がそれぞれ 49寸,36.75寸のとき,等円の直径を求めよ。
外円の半径と中心座標を r0, (0, 0)
等円の半径と中心座標を r1, (r1, y1)
上部の円弧を構成する円の半径と中心座標を r2, (r2, r0)
下部の円弧を構成する円の半径と中心座標を r3, (r3, -r0)
とおき,以下の連立方程式を解く。
include("julia-source.txt");
# julia-source.txt ソース https://blog.goo.ne.jp/r-de-r/e/ad3a427b84bb416c4f5b73089ae813cf
using SymPy
@syms r0::positive, r1::positive, y1::positive, r2::positive, r3::positive
eq1 = (r2 - r1)^2 + (r0 - y1)^2 - (r1 + r2)^2
eq2 = r2^2 + r0^2 - (r0 + r2 - 3675//100)^2
eq3 = r3^2 + r0^2 - (r0 + r3 - 49)^2
eq4 = r0 - sqrt(r2*r3)
eq5 = 1/sqrt(r2) + 1/sqrt(r3) - 1/sqrt(r1);
using NLsolve
function nls(func, params...; ini = [0.0])
if typeof(ini) <: Number
r = nlsolve((vout, vin) -> vout[1] = func(vin[1], params..., [ini]), ftol=big"1e-40")
v = r.zero[1]
else
r = nlsolve((vout, vin)->vout .= func(vin, params...), ini, ftol=big"1e-40")
v = r.zero
end
return v, r.f_converged
end;
function H(u)
(r0, r1, y1, r2, r3) = u
return [
(r0 - y1)^2 + (-r1 + r2)^2 - (r1 + r2)^2, # eq1
r0^2 + r2^2 - (r0 + r2 - 147/4)^2, # eq2
r0^2 + r3^2 - (r0 + r3 - 49)^2, # eq3
r0 - sqrt(r2)*sqrt(r3), # eq4
1/sqrt(r3) + 1/sqrt(r2) - 1/sqrt(r1), # eq5
]
end;
iniv = BigFloat[73.5, 20, 10, 54, 97]
res = nls(H, ini=iniv)
(BigFloat[73.49999999999999999999999999999999999999999999999999999999999999999999999999889, 17.99999999999999999999999999999999999999999999999999999999999999999999511910947, 10.50000000000000000000000000000000000000000000000000000000000000000000678816348, 55.12500000000000000000000000000000000000000000000000000000000000000000000000055, 97.99999999999999999999999999999999999999999999999999999999999999999999999999779], true)
等円の半径は 18 寸である(直径 36寸 )。
その他のパラメータは以下の通りである。
r0 = 73.5; r1 = 18; y1 = 10.5; r2 = 55.125; r3 = 98
function draw(more=false)
pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
(r0, r1, y1, r2, r3) = res[1]
@printf("r0 = %g; r1 = %g; y1 = %g; r2 = %g; r3 = %g\n", r0, r1, y1, r2, r3)
plot()
circle(0, 0, r0, :blue)
circle(r1, y1, r1)
circle(-r1, y1, r1)
circle(r2, r0, r2, :green)
circle(-r2, r0, r2, :green)
circle(r3, -r0, r3, :magenta)
circle(-r3, -r0, r3, :magenta)
if more
delta = (fontheight = (ylims()[2]- ylims()[1]) / 500 * 10 * 2) /3 # size[2] * fontsize * 2
vline!([0], color=:black, lw=0.5)
hline!([0], color=:black, lw=0.5)
point(r1, y1, "(r1,y1)",)
point(r2, r0, "(r2,r0)")
point(r3, -r0, "(r3,-r0) ", :magenta, :right, :bottom, delta=delta/2)
point(r0, 0, " r0", :blue, :left, :bottom, delta=delta/2)
fr3 = Float64(r3)
fr0 = Float64(r0)
rect(-fr3, -fr0, fr3, fr0)
plot!(xlims=(-fr3 - 5, fr3 + 5), ylims=(-fr0 - 5, fr0 + 5))
θ = atand(r0/r2)
(px1, py1, px2, py2) = (r0*cosd(θ), r0*sind(θ), 2(r0 - r2)*cosd(θ), 2(r0 - r2)*sind(θ))
segment(0, 0, r2, r0, :gray60)
segment(px1, py1, px2, py2, lw=1)
segment(-px1, py1, -px2, py2, lw=1)
point((px1 + px2)/2, (py1 + py2)/2, " 小矢", mark=false)
θ = atand(-r0/r3)
(px1, py1, px2, py2) = (r0*cosd(θ), r0*sind(θ), -(r0 - r3)*cosd(θ), -(r0 - r3)*sind(θ))
segment(0, 0, r3, -r0, :gray60)
segment(px1, py1, px2, py2, lw=1)
segment(-px1, py1, -px2, py2, lw=1)
point((px1 + px2)/2, (py1 + py2)/2, " 大矢", mark=false, delta=2delta)
end
end;