裏 RjpWiki

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

算額(その667)

2024年01月31日 | Julia

算額(その667)

長野市元善町 善光寺 寛政8年(1796)
中村信弥「改訂増補 長野県の算額」(p.56)

http://www.wasan.jp/zoho/zoho.html

台形内に甲円が内接する直角三角形を入れる。乙円,丙円も台形の辺と直角三角形の辺に内接する。甲円,乙円,丙円の直径がそれぞれ 20寸,24寸,10寸のとき,甲円が内接する直角三角形の直覚を挟む二辺のうち短い方の辺(鈎)の長さはいかほどか。

甲円が内接する直角三角形の頂点座標を (b, 0), (0, c), (a, d) とする。
甲円の半径と中心座標を r1, (x1, y1)
乙円の半径と中心座標を r2, (r2, r2)
丙円の半径と中心座標を r3, (a - r3, r3)
とおき,以下の連立方程式を解く。
求めるべき,「甲円が内接する直角三角形の直覚を挟む二辺のうち短い方の辺(鈎)の長さ」は (b, 0), (a, d) を端点とする直線の長さ sqrt((a - b)^2 + d^2) である。

include("julia-source.txt");
# julia-source.txt ソース https://blog.goo.ne.jp/r-de-r/e/ad3a427b84bb416c4f5b73089ae813cf

using SymPy
@syms a::positive, b::positive, c::positive, d::positive,
     x1::positive, y1::positive,
     r1::positive, r2::positive, r3::positive,
     鈎::positive, 股::positive, 弦::positive
弦 = sqrt(a^2 + (c - d)^2)
鈎 = sqrt((a - b)^2 + d^2)
股 = sqrt(b^2 + c^2)
eq1 = 鈎^2 + 股^2 - 弦^2 |> simplify
eq2 = 鈎 + 股 - 弦 - 2r1
eq3 = b + c - 股 - 2r2
eq4 = d + (a - b) - 鈎 -2r3
eq5 = dist(0, c, a, d, x1, y1) - r1^2
eq6 = dist(b, 0, a, d, x1, y1) - r1^2;
# res = solve([eq1, eq2, eq3, eq4, eq5, eq6], (a, b, c, d, x1, y1))

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)
   (a, b, c, d, x1, y1) = u
   return [
       -2*a*b + 2*b^2 + 2*c*d,  # eq1
       -2*r1 - sqrt(a^2 + (c - d)^2) + sqrt(b^2 + c^2) + sqrt(d^2 + (a - b)^2),  # eq2
       b + c - 2*r2 - sqrt(b^2 + c^2),  # eq3
       a - b + d - 2*r3 - sqrt(d^2 + (a - b)^2),  # eq4
       -r1^2 + (-a*(a*x1 + (-c + d)*(-c + y1))/(a^2 + (-c + d)^2) + x1)^2 + (-c + y1 - (-c + d)*(a*x1 + (-c + d)*(-c + y1))/(a^2 + (-c + d)^2))^2,  # eq5
       -r1^2 + (-d*(d*y1 + (a - b)*(-b + x1))/(d^2 + (a - b)^2) + y1)^2 + (-b + x1 - (a - b)*(d*y1 + (a - b)*(-b + x1))/(d^2 + (a - b)^2))^2,  # eq6
   ]
end;

(r1, r2, r3) = (20, 24, 10) .// 2
iniv = BigFloat[59, 46, 37, 22, 43, 15]
res = nls(H, ini=iniv)

   (BigFloat[63.00000000000000000000000000000000000000000000000000000000000000635922298913147, 48.00000000000000000000000000000000000000000000000000000000000001088653549950012, 35.99999999999999999999999999999999999999999999999999999999999998913806908318885, 20.00000000000000000000000000000000000000000000000000000000000000452357741848939, 46.00000000000000000000000000000000000000000000000000000000000000725087619460416, 13.99999999999999999999999999999999999999999999999999999999999999999791841656566], true)

「甲円が内接する直角三角形の直覚を挟む二辺のうち短い方の辺(鈎)の長さ」は (b, 0), (a, d) を端点とする線分の長さ sqrt((a - b)^2 + d^2) である。
a = 63, b = 48, d = 20 なので,線分の長さは 25 である。

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

   a = 63;  b = 48;  c = 36;  d = 20;  x1 = 46;  y1 = 14
   鈎 = 25;  股 = 60;  弦 = 65

function draw(more=false)
   pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   (a, b, c, d, x1, y1) = res[1]
   @printf("a = %g;  b = %g;  c = %g;  d = %g;  x1 = %g;  y1 = %g\n", a, b, c, d, x1, y1)
   鈎 = sqrt((a - b)^2 + d^2)
   股 = sqrt(b^2 + c^2)
   弦 = sqrt(a^2 + (c - d)^2)
   @printf("鈎 = %g;  股 = %g;  弦 = %g\n", 鈎, 股, 弦)
   plot([0, a, a, 0, 0], [0, 0, d, c, 0], color=:black, lw=0.5)
   plot!([0, b, a], [c, 0, d], color=:orange, lw=0.5)
   circle(x1, y1, r1)
   circle(r2, r2, r2, :blue)
   circle(a - r3, r3, r3, :green)
   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(x1, y1, "甲円:r1,(x1,y1)", :red, :center, delta=-delta/2)
       point(r2, r2, "乙円:r2,(r2,r2)", :blue, :center, delta=-delta/2)
       point(a - r3, r3, "丙円:r3,(a-r3,r3)", :black, :right, delta=-2delta)
       point(a, 0, " a", :black, :center, delta=-1.5delta)
       point(b, 0, " b", :black, :center, delta=-1.5delta)
       point(0, c, "c ", :black, :right, :vcenter)
       point(a, d, "(a,d)", :black, :center, :bottom, delta=2delta)
       plot!(xlims=(-3, 66), ylims=(-3, 37))
   end
end;

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

算額(その666)

2024年01月31日 | ブログラミング

算額(その666)

長野市元善町 善光寺 寛政8年(1796)
中村信弥「改訂増補 長野県の算額」(p.52)

http://www.wasan.jp/zoho/zoho.html

三角形の中に全,大,中,小の正方形が入っている。底辺の長さが 48 寸,中正方形,小正方形の一辺の長さがそれぞれ,6寸,3寸のとき,大正方形の一辺の長さはいかほどか。

図のように記号を定め,相似比,正方形の一辺の長さについての連立方程式を解く。

include("julia-source.txt");
# julia-source.txt ソース https://blog.goo.ne.jp/r-de-r/e/ad3a427b84bb416c4f5b73089ae813cf

using SymPy
@syms x1::positive, x2::positive, x3::positive, x4::positive, x5::positive, x6::positive,
     y1::positive, y2::positive, y3::positive, y4::positive,
     a::positive, b::positive, h::positive
a = 48
y1 = 6
eq1 = y1/x1 - h/b
eq2 = (y2 - y1)/(x2 - x1) - h/b
eq3 = (y3 - y2)/(x3 - x2) - h/b
eq4 = (h - y3)/(b - x3) - h/b  # 従属
eq5 = (h - y3)/(x4 - b) - h/(a - b)
eq6 = (y3 - y2)/(x5 - x4) - h/(a - b)
eq7 = (y2 - y4)/(x6 - x5) - h/(a - b)
eq8 = y4/(a - x6) - h/(a - b)  # 従属
eq9 = x2 - x1 - 6
eq10 = x5 - x2 - y2
eq11 = x6 - x5 - y4
eq12 = x4 - x3 - 3
eq13 = y3 - y2 - 3
res = solve([eq1, eq2, eq3, eq5, eq6, eq7, eq9, eq10, eq11, eq12, eq13],
   (x1, x2, x3, x4, x5, x6, y2, y3, y4, b, h))

   1-element Vector{NTuple{11, Sym}}:
    (6, 12, 15, 18, 24, 32, 12, 15, 8, 16, 16)

x1 = 6;  x2 = 12;  x3 = 15;  x4 = 18;  x5 = 24;  x6 = 32
y1 = 6;  y2 = 12;  y3 = 15;  y4 = 8;  a = 48;  b = 16;  h = 16
大正方形の一辺の長さ =x6-x5 = y4 = 8 である。

function draw(more=false)
   pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   a = 48
   y1 = 6
   (x1, x2, x3, x4, x5, x6, y2, y3, y4, b, h) = (6, 12, 15, 18, 24, 32, 12, 15, 8, 16, 16)
   @printf("x1 = %g;  x2 = %g;  x3 = %g;  x4 = %g;  x5 = %g;  x6 = %g\n",
       x1, x2, x3, x4, x5, x6)
   @printf("y1 = %g;  y2 = %g;  y3 = %g;  y4 = %g;  a = %g;  b = %g;  h = %g\n",
       y1, y2, y3, y4, a, b, h)
   @printf("大正方形の一辺の長さ(x6-x5 = y4) = %g\n", y4)
   plot([0, a, b, 0], [0, 0, h, 0], color=:black, lw=0.5)
   rect(x1, 0, x2, y1, :blue)
   rect(x2, 0, x5, y2, :blue)
   rect(x3, y2, x4, y3, :blue)
   rect(x5, 0, x6, y4, :blue)
   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)
       vline!([x1, x2, x3, x4, x5, x6, b], color=:gray20, lw=0.1)
       hline!([y1, y2, y3, y4], color=:gray20, lw=0.1)
       point.([x1, x2, x3, x4, x5, x6, b], 0,
           ["x1", "x2", "x3", "x4", "x5", "x6", "b"],
           :blue, :center, delta=-2delta)
       point.(0, [y1, y2, y3, y4],
           ["y1 ", "y2 ", "y3 ", "y4 "],
           :blue, :right, :vcenter)
       point((x2 + x5)/2, y2/2, "全", :red, :center, :vcenter, mark=false)
       point((x5 + x6)/2, y4/2, "大", :red, :center, :vcenter, mark=false)
       point((x1 + x2)/2, y1/2, "中", :red, :center, :vcenter, mark=false)
       point((x3 + x4)/2, (y2 + y3)/2, "小", :red, :center, :vcenter, mark=false)
       point(a, 0, "a", :black, delta=-2delta)
       point(b, h, "(b,h)", :black, :center, :bottom, delta=2delta)
       plot!(xlims=(-3, 50), ylims=(-3, 19))
   end
end;

 

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

算額(その665)

2024年01月31日 | Julia

算額(その665)

長野市若穂 清水寺観音堂 寛政6年(1794)
中村信弥「改訂増補 長野県の算額」(p.45-46)

http://www.wasan.jp/zoho/zoho.html
キーワード:円2個,直角三角形,斜線
#Julia, #SymPy, #算額, #和算

直角三角形内に斜線と大円,小円を入れる。直角を挟む二辺(鈎と股)の和が 42 寸,斜辺(弦)の長さが 30 寸,大円の直径が 9 寸のとき,小円の直径を求めよ。

直角三角形の 3 辺の長さを,鈎,股,弦とおく。
大円の半径と中心座標を r1, (r1, y1)
小円の半径と中心座標を r2, (x2, r2)
斜線と斜辺の交点座標を (x, y)
斜線の長さを l, (x, y) と (0, 鈎) を結ぶ線分の長さを m
とおき,以下の連立方程式を解く。

include("julia-source.txt");
# julia-source.txt ソース https://blog.goo.ne.jp/r-de-r/e/ad3a427b84bb416c4f5b73089ae813cf

using SymPy
@syms r1::positive, y1::positive, r2::positive,
     x2::positive, x::positive, y::positive,
     鈎::positive, 股::positive, 弦::positive
弦 = 30
鈎股の和 = 42
r1 = 9//2
l = sqrt(x^2 + y^2)
m = sqrt(x^2 + (鈎 - y)^2)
eq1 = y/(股 - x) - 鈎/股
eq2 = 鈎 + 股 - 鈎股の和
eq3 = 鈎^2 + 股^2 - 弦^2
eq4 = (鈎 + l + m)*r1 +(弦 - m + l + 股)*r2 - 鈎*股
eq5 = dist(0, 鈎, 股, 0, r1, y1) - r1^2
eq6 = dist(0, 鈎, 股, 0, x2, r2) - r2^2
eq7 = dist(0, 0, x, y, r1, y1) - r1^2
res = solve([eq1, eq2, eq3, eq4, eq5, eq6, eq7],
   (鈎, 股, y1, r2, x2, x, y))

   8-element Vector{NTuple{7, Sym}}:
    (18, 24, 9, 4, 12, 12, 9)
    (18, 24, 9, 4, 76/3, 12, 9)
    (18, 24, 81/4, 1443/352, 4119/352, 81/13, 693/52)
    (18, 24, 81/4, 1443/352, 8929/352, 81/13, 693/52)
    (24, 18, 21/2, 4, 10, 21/2, 10)
    (24, 18, 21/2, 4, 20, 21/2, 10)
    (24, 18, 51/2, 117/32, 171/16, 153/26, 210/13)
    (24, 18, 51/2, 117/32, 1269/64, 153/26, 210/13)

解は 8 組得られるが,最初のものが適解である。
小円の直径は 8 寸である。
その他のパラメータは以下の通りである。
鈎 = 18;  股 = 24;  y1 = 9;  r2 = 4;  x2 = 12;  x = 12;  y = 9

なお,5 番目のものも(普通は「鈎<股」なので),図を y = x の直線で裏返せば最初のものとは異なる図形が得られる。
ただし,大円と小円の位置が異なるので,適解とはいえない。
小円の直径 = 8;  鈎 = 24;  股 = 18;  y1 = 10.5;  r2 = 4;  x2 = 10;  x = 10.5;  y = 10

function draw(more=false)
   pyplot(size=(500, 500), grid=false, aspectratio=1, label="", fontfamily="IPAMincho")
   (鈎, 股, y1, r2, x2, x, y) = res[n]
   弦 = 30
   鈎股 = 42
   r1 = 9//2
   l = sqrt(x^2 + y^2)
   m = sqrt(x^2 + (鈎 - y)^2)
   @printf("小円の直径 = %g;  鈎 = %g;  股 = %g;  y1 = %g;  r2 = %g;  x2 = %g;  x = %g;  y = %g\n",
           2r2, 鈎, 股, y1, r2, x2, x, y)
   plot([0, 股, 0, 0], [0, 0, 鈎, 0], color=:black, lw=0.5)
   circle(r1, y1, r1)
   circle(x2, r2, r2, :blue)
   segment(0, 0, x, y)
   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,(r1,y1)", :red, :center, delta=-delta)
       point(x2, r2, "小円:r2,(x2,r2)", :blue, :center, delta=-delta)
       point(x, y, " (x,y)", :black, :left, :bottom)
       point(0, 鈎, " 鈎", :black, :left, :bottom)
       point(股, 0, " 股", :black, :left, :bottom)
       plot!(xlims=(-1, 26))
   end
end;

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

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

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