裏 RjpWiki

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

算額(その1332)

2024年10月02日 | Julia

算額(その1332)

四十一 岩手県一関市牧沢 牧沢八幡神社 明治8年(1875)
山村善夫:現存 岩手の算額,昭和52年1月30日,熊谷印刷,盛岡市.
http://www.wasan.jp/yamamura/yamamura.html
キーワード:円3個,直角三角形,中鈎
#Julia, #SymPy, #算額, #和算

直角三角形の中に甲円を容れ,中鈎(直角の頂点から斜辺への垂線)で区切られた領域に乙円と丙円を容れる。鈎,股が 7 寸,24 寸のとき,3 円の直径の和はいかほどか。

上の図は,「問」とは異なり,「鈎,股が 3 寸,4 寸」のときのものである。問の場合の図は下の方に示す。

なお,それぞれの円の直径だけを求める場合には,算額(その2004)を参照のこと。

直角三角形の 3 辺を,「鈎」,「股」,「弦」
中鈎と斜辺の交点座標を (x0, y0)
甲円の半径と中心座標を r1, (r1, r1)
乙円の半径と中心座標を r2, (x2, r2)
丙円の半径と中心座標を r3, (r3, y3)
とおき,以下の連立方程式を解く。

まず,r1, x0, y0 を求める。
弦 = sqrt(鈎^2 + 股^2) である。

include("julia-source.txt");

using SymPy
@syms 鈎::positive, 股::positive, 弦::positive,
     x0::positive, y0::positive,
     r1::positive,
     r2::positive, x2::positive,
     r3::positive, y3::positive;
弦 = sqrt(鈎^2 + 股^2)
eq1 = (鈎 - y0)/x0 - 鈎/股
# eq2 = y0/(股 - x0) - 鈎/股
eq3 = sqrt(x0^2 + y0^2)/鈎 - 股/弦
eq4 = 鈎 + 股 - 弦 - 2r1
res = solve([eq1, eq3, eq4], (r1, x0, y0))[1]

   (股/2 + 鈎/2 - sqrt(股^2 + 鈎^2)/2, 股*鈎^2/(股^2 + 鈎^2), 股^2*鈎/(股^2 + 鈎^2))

甲円の半径は 股/2 + 鈎/2 - 弦/2 である。

(x0, y0) = (股*鈎^2/(股^2 + 鈎^2), 股^2*鈎/(股^2 + 鈎^2))
eq5 = dist2(0, 鈎, 股, 0, x2, r2, r2)
eq6 = dist2(0, 鈎, 股, 0, r3, y3, r3)
eq7 = dist2(0, 0, x0,  y0, x2, r2, r2)
eq8 = dist2(0, 0, x0,  y0, r3, y3, r3)
res2 = solve([eq5, eq6, eq7, eq8], (r2, x2, r3, y3))[7];  # 7 of 16;

甲円,乙円の半径 r2, r3 は以下のように簡略化できる。

res2[1] |> simplify |> println
res2[3] |> simplify |> println

   股*(股 + 鈎 - sqrt(股^2 + 鈎^2))/(2*sqrt(股^2 + 鈎^2))
   鈎*(股 + 鈎 - sqrt(股^2 + 鈎^2))/(2*sqrt(股^2 + 鈎^2))

甲円,乙円,丙円の直径の和(径和とする)は,以下のようになる。

径和 = 2(res[1] + res2[1] + res2[3]) |> simplify
径和 |> println

   2*股*鈎/sqrt(股^2 + 鈎^2)

鈎,股が 7 寸,24 寸のとき,径和は 336/25 = 13.44 寸である。

径和(鈎 => 7, 股 => 24) |> println
径和(鈎 => 7, 股 => 24).evalf() |> println

   336/25
   13.4400000000000

ちなみに,甲円,乙円,丙円の直径は 6 寸,144/25 寸, 42/25 寸である。

res[1](鈎 => 7, 股 => 24) * 2 |> println
res2[1](鈎 => 7, 股 => 24) * 2 |> println
res2[3](鈎 => 7, 股 => 24) * 2 |> println

   6
   144/25
   42/25

function draw(鈎, 股, more)
    pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   弦 = sqrt(股^2 + 鈎^2)
   (r1, x0, y0) = (股/2 + 鈎/2 - 弦/2, 股*鈎^2/(股^2 + 鈎^2), 股^2*鈎/(股^2 + 鈎^2))
   r2 = 股*(股 + 鈎 - 弦)/(2弦)
   x2 = (-股^2 + 股*鈎 + 股*弦)/(2弦)
   r3 = 鈎*(股 + 鈎 - 弦)/(2弦)
   y3 = (股*鈎 - 鈎^2 + 鈎*弦)/(2弦)
   println("径和 = $(2(r1+r2+r3))")
   plot([0, 股, 0, 0], [0, 0, 鈎, 0], color=:green, lw=0.5)
   segment(0, 0, x0, y0, :blue)
   circle(r1, r1, r1)
   circle(x2, r2, r2, :magenta)
   circle(r3, y3, r3, :orange)
   if more
       delta = (fontheight = (ylims()[2]- ylims()[1]) / 500 * 10 * 2) /3  # size[2] * fontsize * 2
       hline!([0], color=:gray80, lw=0.5)
       vline!([0], color=:gray80, lw=0.5)
       point(0, 鈎, " 鈎", :green, :left, :bottom, delta=delta/2)
       point(股, 0, " 股", :green, :left, :bottom, delta=delta/2)
       point(x0, y0, " (x0,y0)", :blue, :left, :bottom)
       point(r1, r1, "甲円:r1,(r1,r1)", :red, :left, :bottom, delta=delta)
       point(x2, r2, "乙円:r2,(x2,r2)", :magenta, :right, delta=-delta/2, deltax=8delta)
       point(r3, y3, "丙円:r3\n(r3,y3)", :orange, :center, delta=-delta/2)
   end  
end;

draw(7, 24, false)

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

算額(その1331)

2024年10月02日 | Julia

算額(その1331)

四十 岩手県一関市牧沢 牧沢八幡神社 明治5年(1872)
山村善夫:現存 岩手の算額,昭和52年1月30日,熊谷印刷,盛岡市.

http://www.wasan.jp/yamamura/yamamura.html
キーワード:円5個,外円,斜線2本
#Julia, #SymPy, #算額, #和算

大円(外円)の中に小円 1 個と中円 3 個を容れる。小円と大円の直径が与えられたとき,中円の直径はいかほどか。

外円の半径と中心座標を R, (0, 0)
中円の半径と中心座標を r1, (0, R - r1), (x1, y1)
小円の半径と中心座標を r2, (0, r2 - R)
とおき,以下の連立方程式を解く。

include("julia-source.txt");

using SymPy
@syms R::positive, r1::positive,
     x1::positive, y1::positive,
     r2::positive, x0::positive, y0::positive;
eq1 = dist2(0, R, x0, -sqrt(R^2 - x0^2), x1, y1, r1)
eq2 = dist2(0, R, x0, -sqrt(R^2 - x0^2), 0, r2 - R, r2)
eq3 = x1^2 + y1^2 - (R - r1)^2
eq4 = x1^2 + (R - r1 - y1)^2 - 4r1^2;

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 Float64.(v), r.f_converged
end;

function H(u)
   (r1, x1, y1, x0) = u
   t = sqrt(R^2 - x0^2)
   return [
(-4*R^3*r1^2 + R^3*x0^2 - 4*R^3*x0*x1 + 4*R^3*x1^2 - 4*R^2*r1^2*sqrt(R^2 - x0^2) - 2*R^2*x0^2*y1 + R^2*x0^2*sqrt(R^2 - x0^2) + 4*R^2*x0*x1*y1 - 4*R^2*x0*x1*sqrt(R^2 - x0^2) + 4*R^2*x1^2*sqrt(R^2 - x0^2) + 2*R*r1^2*x0^2 + 2*R*x0^3*x1 - 3*R*x0^2*x1^2 + R*x0^2*y1^2 - 2*R*x0^2*y1*sqrt(R^2 - x0^2) + 4*R*x0*x1*y1*sqrt(R^2 - x0^2) - 2*x0^3*x1*y1 - x0^2*x1^2*sqrt(R^2 - x0^2) + x0^2*y1^2*sqrt(R^2 - x0^2))/(2*R*(2*R^2 + 2*R*sqrt(R^2 - x0^2) - x0^2)),  # eq1
(-4*R^3*r2^2 + 4*R^3*x0^2 - 4*R^2*r2^2*sqrt(R^2 - x0^2) - 4*R^2*r2*x0^2 + 4*R^2*x0^2*sqrt(R^2 - x0^2) + 3*R*r2^2*x0^2 - 4*R*r2*x0^2*sqrt(R^2 - x0^2) + r2^2*x0^2*sqrt(R^2 - x0^2))/(2*R*(2*R^2 + 2*R*sqrt(R^2 - x0^2) - x0^2)),  # eq2
x1^2 + y1^2 - (R - r1)^2,  # eq3
-4*r1^2 + x1^2 + (R - r1 - y1)^2,  # eq4
   ]
end;
(R, r2) = (1/2, 0.2/2)
iniv = BigFloat[0.2, 0.3, 0.06, 0.2]
res = nls(H, ini=iniv)
res |> println
2res[1][1]|> println

   ([0.21665006633518888, 0.2792628680296955, -0.04795242900710796, 0.11042310999998962], true)
   0.43330013267037776

大円と小円の直径が 1 寸, 0.2 寸のとき,中円の直径は 0.43330013267037776 寸である。

function draw(R, r2, more)
    pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   (r1, x1, y1, x0) = res[1]
   y0 = -sqrt(R^2 - x0^2)
   @printf("大円と小円の直径が %g, %g のとき,中円の直径は %g である。\n", 2R, 2r2, 2r1)
   plot([-x0, 0, x0], [y0, R, y0], color=:green, lw=0.5)
   circle(0, 0, R, :magenta)
   circle(0, R - r1, r1)
   circle2(x1, y1, r1)
   circle(0, r2 - R, r2, :blue)
   if more
       delta = (fontheight = (ylims()[2]- ylims()[1]) / 500 * 10 * 2) /3  # size[2] * fontsize * 2
       hline!([0], color=:gray80, lw=0.5)
       vline!([0], color=:gray80, lw=0.5)
       point(0, R, "R", :magenta, :center, :bottom, delta=delta/2)
       point(0, R - r1, "中円:r1\n(0,R-r1)", :red, :left, :vcenter, deltax=3delta)
       point(x1, y1, "中円:r1,(x1,y1)", :red, :center, delta=-delta/2)
       point(0, r2 - R, "小円:r2\n(0,r2-R)", :blue, :center, delta=-delta/2)
       point(x0, -√(R^2 - x0^2), " -(x0,√(R^2-x0^2))", :green, :left, :vcenter)
   end  
end;

draw(1/2, 0.2/2, true)

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

算額(その1330)

2024年10月02日 | Julia

算額(その1330)

三十四 岩手県一関市舞川相川 菅原神社後額 嘉永3年(1850)
山村善夫:現存 岩手の算額,昭和52年1月30日,熊谷印刷,盛岡市.

http://www.wasan.jp/yamamura/yamamura.html
キーワード:円4個,外円,円弧,団扇
#Julia, #SymPy, #算額, #和算

外円の中に大円 1 個,小円 2 個を容れる。小円の直径が 1 寸のとき,大円の直径はいかほどか。

注:「全円内設全円背」とあり,円弧の直径は全円の直径と同じ。明記された条件は3個で,変数は 5 個(与えられる変数を含む)なので,条件が 1 個足りない。妥当な条件として,円弧の中心が外円の周上にある,つまり大円の直径が全円の直径の 1/2 とすると解ける。

外円の半径と中心座標を R, (0, 0)
円弧の半径と中心座標を R, (0, -R)
大円の半径と中心座標を r1, (0, R - r1); r1 = R/2
小円の半径と中心座標を r2, (x2, y2)
とおき,以下の連立方程式を解く。

include("julia-source.txt");

using SymPy
@syms R::positive, r1::positive,
     r2::positive, x2::positive,
     y2::positive;
R = 2r1
eq1 = x2^2 + (y2 + 2r1)^2 - (R + r2)^2
eq2 = x2^2 + y2^2 - (R - r2)^2
eq3 = x2^2 + (R - r1 - y2)^2 - (r1 + r2)^2
res = solve([eq1, eq2, eq3], (r1, x2, y2))[1]

   (5*r2/3, 4*sqrt(3)*r2/3, r2/3)

大円の半径 r1 は,小円の半径 r2 の 5/3 倍である。
小円の直径が 1 寸のとき,大円の直径は 5/3 = 1.67 寸である。

すべてのパラメータは以下のとおりである。

   r2 = 0.5;  r1 = 0.833333;  x2 = 1.1547;   y2 = 0.166667;  R = 1.66667

「答」,「術」は,大円の直径が「一寸六分一厘有奇」としている。

function draw(r2, more)
    pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   (r1, x2, y2) = (5*r2/3, 4*sqrt(3)*r2/3, r2/3)
   R = 2r1
   @printf("小円の直径が %g のとき,大円の直径は %g である(外円の直径は %g)。\n", 2r2, 2r1, 2R)
   @printf("r2 = %g;  r1 = %g;  x2 = %g;   y2 = %g;  R = %g\n", r2, r1, x2,  y2, R)
   plot()
   circle(0, 0, R)
   circle(0, -2r1, R, beginangle=30, endangle=150)    
   circle(0, R - r1, r1, :blue)
   circle2(x2, y2, r2, :green)
   if more
       delta = (fontheight = (ylims()[2]- ylims()[1]) / 500 * 10 * 2) /3  # size[2] * fontsize * 2
       hline!([0], color=:gray80, lw=0.5)
       vline!([0], color=:gray80, lw=0.5)
       point(0, R, "R", :red, :center, :bottom, delta=delta/2)
       point(0, R - r1, "大円:r1,(0,R-r1)", :blue, :center, delta=-delta/2)
       point(x2, y2, "小円:r2\n(x2,y2)", :green, :center, :bottom, delta=delta/2)
   end  
end;

draw(1/2, true)

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

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

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