高校数学の質問スレ(医者・東大卒専用) Part438 (750レス)
高校数学の質問スレ(医者・東大卒専用) Part438 http://rio2016.5ch.net/test/read.cgi/math/1723152147/
上
下
前
次
1-
新
通常表示
512バイト分割
レス栞
496: 132人目の素数さん [sage] 2024/12/31(火) 14:55:01.89 ID:41bOMap+ EpiCycloid[R_,r_] := Module[ {circleA,circleB,redPoint,redPointTrace,frames,theta}, (* theta:Bの中心の偏角 *) circleA = Circle[{0, 0}, R]; circleB[theta_] := Circle[{(R+r) Cos[theta], (R+r) Sin[theta]}, r]; redPoint[theta_] := {(R+r) Cos[theta] + r Cos[(r+R)/r theta + Pi], (R+r) Sin[theta] + r Sin[(R+r)/r theta + Pi]}; (* 赤点の軌跡を保存するためのリスト *) redPointTrace = Table[redPoint[theta], {theta, 0, 2 Pi, 2 Pi/100}]; (* 円Bの中心を円Aの円周に沿って移動させるためのアニメーション *) frames = Table[ Show[ Graphics[{EdgeForm[Black], FaceForm[None], circleA}], Graphics[{EdgeForm[None], FaceForm[Red], circleB[theta]}], Graphics[{Red, PointSize[Large], Point[redPoint[theta]]}], Graphics[{Red, Line[redPointTrace[[1 ;; Round[theta/ (2 Pi/100)]]]]}], PlotRange -> {{-2(R+r), 2(R+r)}, {-2(R+r), 2(R+r)}}, Axes -> True, AxesOrigin -> {0, 0} ], {theta, 0, 2 Pi, 2 Pi/100}]; (* アニメーション表示 *) ListAnimate[frames] ] EpiCycloid[3,1] HypoCycloid[R_,r_] := Module[ {circleA,circleB,redPoint,theta,frames}, (* theta 円Bの中心の偏角 *) circleA = Circle[{0, 0}, R]; circleB[theta_] := Circle[{(R - r) Cos[theta], (R - r) Sin[theta]}, r]; redPoint[theta_] := {(R-r) Cos[theta] + r Cos[(1-R/r) theta], (R-r) Sin[theta] + r Sin[(1-R/r) theta]}; (* 円Bの中心を円Aの円周に沿って移動させるためのアニメーション *) frames = Table[ Show[ Graphics[{EdgeForm[Black], FaceForm[None], circleA}], Graphics[{EdgeForm[None], FaceForm[Red], circleB[theta]}], Graphics[{Red, PointSize[Large], Point[redPoint[theta]]}], Graphics[{Red, Line[Table[redPoint[theta], {theta, 0, 2 Pi, 2 Pi/100}]]}], PlotRange -> {{-R, R}, {-R, R}}, Axes -> True, AxesOrigin -> {0, 0} ], {theta, 0, 2 Pi, 2 Pi/100} ]; (* アニメーションを表示 *) ListAnimate[frames] ] HypoCycloid[3,1] http://rio2016.5ch.net/test/read.cgi/math/1723152147/496
497: 132人目の素数さん [sage] 2024/12/31(火) 14:56:07.64 ID:41bOMap+ >>495 実行すれば答がでるだろ。 証言をすべてみたす組み合わせのすべてで嘘つきになるのを列挙すればいい。 Rコード読めないの? http://rio2016.5ch.net/test/read.cgi/math/1723152147/497
498: 132人目の素数さん [sage] 2024/12/31(火) 18:47:36.81 ID:B87FjDFd >>497 結局グダグダ言い訳してるが自分の問題すら答えられないアホってことね http://rio2016.5ch.net/test/read.cgi/math/1723152147/498
499: 132人目の素数さん [sage] 2024/12/31(火) 23:12:32.74 ID:PjhLbT7v >>497 さすが答えの意味分かってないwww http://rio2016.5ch.net/test/read.cgi/math/1723152147/499
500: 132人目の素数さん [sage] 2025/01/01(水) 08:56:34.48 ID:trf8HhUX ハイポサイクロイド https://i.imgur.com/Y699ttV.gif http://rio2016.5ch.net/test/read.cgi/math/1723152147/500
501: 132人目の素数さん [sage] 2025/01/01(水) 11:12:05.21 ID:vYaE/f7n >>500 年明けても日本語読めないみたいだな http://rio2016.5ch.net/test/read.cgi/math/1723152147/501
502: 132人目の素数さん [sage] 2025/01/03(金) 19:11:24.08 ID:KUn71WA0 https://i.imgur.com/PiWG2FN.gif http://rio2016.5ch.net/test/read.cgi/math/1723152147/502
503: 132人目の素数さん [sage] 2025/01/03(金) 20:33:58.18 ID:gmyxpwxe 高校生にすら相手にされてないみたいだね 実に哀れ http://rio2016.5ch.net/test/read.cgi/math/1723152147/503
504: 132人目の素数さん [sage] 2025/01/03(金) 22:47:45.54 ID:KUn71WA0 https://i.imgur.com/XfJfU12.gif http://rio2016.5ch.net/test/read.cgi/math/1723152147/504
505: 132人目の素数さん [sage] 2025/01/03(金) 23:25:35.89 ID:rOKue8hC >>482 荒らすの止めてくれないか http://rio2016.5ch.net/test/read.cgi/math/1723152147/505
506: 132人目の素数さん [sage] 2025/01/03(金) 23:25:35.96 ID:gmyxpwxe さっさと精神科行け http://rio2016.5ch.net/test/read.cgi/math/1723152147/506
507: 132人目の素数さん [sage] 2025/01/05(日) 12:23:25.71 ID:tuC7O64g R=3; r=2; K=2; (* ロータ中心と頂点距離/ロータギア半径 *) apex[t_] := Module[ {p,c,d}, p = {(R-r) Cos[t] + R Cos[(t+Pi)/3], (R-r) Sin[t] + R Sin[(t+Pi)/3]}; c = {(R-r) Cos[t],(R-r) Sin[t]}; d = K(p-c)+c ] theta=Flatten@{Range[0,6 Pi, Pi/1000]}; ListPlot[apex[#]& /@ theta,AspectRatio ->1] x[t_]:=apex[t][[1]] y[t_]:=apex[t][[2]] length=Integrate[(D[x[t],t])^2+(D[y[t],t])^2,{t,0,6 Pi}] area=(1/2) Integrate[x[t] D[y[t],t] - y[t] D[x[t],t],{t,0, 6 Pi}] Clear[{R,r,K}] http://rio2016.5ch.net/test/read.cgi/math/1723152147/507
508: 132人目の素数さん [sage] 2025/01/05(日) 12:47:54.51 ID:/2bPdu/v >>507 まだバカにされたりないのか尿瓶ジジイは しかし正規のスレじゃもうバカにすらしてもらえないみたいww http://rio2016.5ch.net/test/read.cgi/math/1723152147/508
509: 132人目の素数さん [sage] 2025/01/07(火) 19:53:08.02 ID:rJfoFeSd 【問題】 固定円の半径を2、回転ローターの円の半径を3とするときに ルーローの三角の軌跡の内部でローターが移動できるには三角の頂点とロータ円の中心の距離が 回転ローターの円の半径の何倍以上であることが必要ですか? > 2/3*(2+sqrt(3)) [1] 2.488034 http://rio2016.5ch.net/test/read.cgi/math/1723152147/509
510: 132人目の素数さん [sage] 2025/01/07(火) 22:35:53.49 ID:zsZUtuIb >>509 高校数学で回転ローターとやらが定義されてるのかよwww 中卒以下の低脳でまともに数学用語使えないゴミなのはしょうがないけど、もう少し努力しろよwww http://rio2016.5ch.net/test/read.cgi/math/1723152147/510
511: 132人目の素数さん [sage] 2025/01/08(水) 02:59:50.29 ID:0uIf2Djd ルーローって魯肉のことだな http://rio2016.5ch.net/test/read.cgi/math/1723152147/511
512: 132人目の素数さん [sage] 2025/01/08(水) 04:11:37.72 ID:X/URcmTf rm(list=ls()) JugRiddle <- function( big=5, small=3, end=4){ # starting from the bigger jug movebig <- function(xy){ # start from c(big,0) x=xy[1] ; y=xy[2] # x==big if(x==big) re=c(big-(small-y),small) # x==0 if(x==0) re=c(big,y) # y==small if(y==small) re=c(x,0) # y==0 if(y==0 & x!=big){ if(x>=small) re=c(x-small,small) else re=c(0,x) } return(re) } STATUS=status=c(big,0) i=1 while(!identical(status,c(0,0))){# i=i+1 status=movebig(status) STATUS=rbind(STATUS,status) } rownames(STATUS)=1:nrow(STATUS) colnames(STATUS)=c(paste0(big,'L'),paste0(small,'L')) (Bigger=STATUS) # starting from the smaller jug movesmall <- function(xy){ # start from c(0,small) x=xy[1] ; y=xy[2] if(y==small){ if(x<=(big-small)) re=c(x+small,0) else re=c(big, small-(big-x)) } if(y==0) re=c(x,small) if(x==big) re=c(0,y) if(x==0) re=c(y,0) return(re) } STATUS=status=c(0,small) i=1 while(!identical(status,c(0,0))){ # i=i+1 status=movesmall(status) STATUS=rbind(STATUS,status) } rownames(STATUS)=1:nrow(STATUS) colnames(STATUS)=c(paste0(big,'L'),paste0(small,'L')) (Smaller=STATUS) if(all(end != c(Bigger,Smaller))) return(NA) min_Bigger=min(which(apply(Bigger,1,function(x) end %in% x))) min_Smaller=min(which(apply(Smaller,1,function(x) end %in% x))) list(Bigger=as.matrix(Bigger)[1:min_Bigger,], Smaller=as.matrix(Smaller)[1:min_Smaller,], min_Bigger=min_Bigger,min_Smaller=min_Smaller) } JugRiddle(5,3,4) JugRiddle(10,5,3) http://rio2016.5ch.net/test/read.cgi/math/1723152147/512
513: 132人目の素数さん [sage] 2025/01/08(水) 19:26:21.90 ID:SKdwPI7I コイントスの終了条件を Aくんは、 表が2回連続して出たら終了 Bくんは、 表裏の順に出たら終了(裏表の順では終了しない) することになった。 (1) Aくん、Bくんについて、コイントスの回数の期待値を求めよ。 (2) Aくんはの方が少ない回数で終了する確率を求めよ。小数解でよい。 http://rio2016.5ch.net/test/read.cgi/math/1723152147/513
514: 132人目の素数さん [sage] 2025/01/08(水) 19:29:44.12 ID:X/URcmTf >>513 (2)回数の差の分布 https://i.imgur.com/jDZubdl.png http://rio2016.5ch.net/test/read.cgi/math/1723152147/514
515: 132人目の素数さん [sage] 2025/01/08(水) 20:16:25.91 ID:X/URcmTf >>514 https://i.imgur.com/cmdTCLY.png http://rio2016.5ch.net/test/read.cgi/math/1723152147/515
上
下
前
次
1-
新
書
関
写
板
覧
索
設
栞
歴
あと 235 レスあります
スレ情報
赤レス抽出
画像レス抽出
歴の未読スレ
AAサムネイル
Google検索
Wikipedia
ぬこの手
ぬこTOP
0.007s