Grade

Type of questions

Mathematics Senior High

2枚目の付箋を貼った行がわかりません

次関数 (1)の解 S+AS+ 7 曲線 y=x2 (-2≦x≦1) 上の相異なる3点をA(a, a²), B (6,62), C(c, c2) とする。このとき, 次の問いに答えよ.ただし,<bc であるものとする. (1) △ABCの面積Sをa,b,c を用いて表せ. (東北大) (2)a,b,c を上述した条件の下で動かすとき, Sの最大値を求めよ. CARA <(1) の考え方> 点Bを通りy軸に平行な直線と直線ACとの交点をDとし, △ABC を △ABD と ABCD に分割して考える. 3点A, B, C は相異なる点で, その左右の位置関係も判 明している. 直線 AC の方程式は, y=(c+a)x-ac .....1 ここで,点Bを通りy軸に平行な直線と直線AC との 交点をDとすると, Dのx座標は6となる. また, ① に x=6 を代入すると, y=(c+a)b-ac =ab+bc-ac より, D のy座標は ab+bc-ac である. したがって線分BD の長さは、 BD=(ab+bc-ac) =(b-c)a-(b-c)b -2 (70365 =(a−b)(b-c) ◎おうとなる。 よって, △ABCの面積Sは, S=△ABD+△BCD BD B LD -)-(1+08) I-0- SA 4X4 YA =1/12(a-b)(b-c){(b-a)+(c-b)} =1/12(a-b)(b-c)(c-a) 0 1 6x=b² <=@ BD ADAN (Bのx座標 =/(a−b)(b-c)(b-a)+(a−b)(b-c)(c-b x 2点A(a, a2), C(c, c2) を通る直線 _c²-a²ª_(x−-a)+d² y= Ac y=(c + a)x-ac c-a _(c+a)(c/a) c-a (x-a)+ a² =(c+a)(x-a)+a² =(c+a)x-ac =(c+a)x-ac (Cのx座標)一 (c+a) (-a) žá²+² (Bの座標 必ず面積分割すること (②2)の <--2 関係 (2)の解 a. (i (ii であ a= NAJC よ + One (1)のよ 学ぶべ AB= すこS -2≤

Waiting for Answers Answers: 0
Physics Senior High

光がレンズを通過する際、レンズへの進入と出ていく際とで二度屈折すると思うのですが、右下の図bではレンズを縦に二等分した線上での一度の屈折で考えているように思われます。レンズの厚みに関して問題文では特に言及されてはいないのですが、厚みを無視して考えているということでしょうか?

図のような光学装置 がある。 回折格子に は1cm 当たり400本の Level (1)~(3) ★ Point & Hint 「格子定数述の回折格子によっ て強め合いが起こるのは d sin 0= må 単色平行光 溝が切ってある。 レン ズレの焦点距離はF-100cm で, LとスクリーンSの間の距離も100 cmである。 装置の左から単色平行光線を入れると、Kで回折した先は Lを通過スクリーンS上に集光する。 同折角は小として近似し。 答は有効数字2桁で求めよ。 (1) 静止状態にある水素原子から放射される先 (H。 線の波長は 656 [nm] である。 これをKにあてるとき S上にできる千 この明るいの間隔は何cmか。 (2) ある星雲から放射されるH。線をKにあてて干渉縞を観測したと ころ。 S上にできた明るい縞の間隔は、(1)の間隔に比して0.011cm だけ小さくなった。 この星雲は地球に近づいているのか、それとも 遠ざかっているのか。 また。 この星雲の速さはいくらか。 ただし、 地球は静止しているものとし、 光速は3.0×10m/s とせよ。 (3) KとSのに、 屈折率1.33の水をつめた。また、レンズLは、この 中で焦点距離が100cm であるレンズに取り替えた。 波長656mmの Ha線をKにあてるとき, S上にできる明るいの間隔は何cmか。 ((新潟大) 角の方向である。 (1) 平行光線は焦点面上に集 波長入 d Ka ? 光の干渉 10:0FA 路差 27 焦点距離 b

Resolved Answers: 1
IT Undergraduate

vsコードを使ってJava言語の勉強をしてたんですけど初心者すぎて何が原因で上手くコードの実行ができてないのかわかりません… 勉強の資料として使ってるのは京都大学のJavaによるプログラミング入門 です。

17:43 7月27日 (木) 1.7 使用するサンプルプログラム (TankCalculator.java) 1: public class Tank Calculator { 2: public static void main (String args[]){ final double FLOW_RATE = 1.0; final double TANK_AREA = 20.0; final double INITIAL_LEVEL = 10.0; double time; //s double tankLevel; //m ... ocw.kyoto-u.ac.jp 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: time = 30; 14: tankLevel = INITIAL_LEVEL + FLOW_RATE*time/TANK_AREA; 15: System.out.println("Tank Level at time "+ time + "s = " + tankLevel + "m"); 16: 17: 18: 19: } 20:} 11 System.out.println("Flow Rate = + FLOW_RATE + "m** 3/s"); System.out.println("Tank Area=" + TANK_AREA + "m**2"); System.out.println("Initial Level = " + INITIAL_LEVEL + "m"); time = 60; tankLevel = INITIAL_LEVEL + FLOW_RATE*time/TANK_AREA; System.out.println("Tank Level at time "+ time + "s=" + tankLevel + "m"); 【補足】 // の後ろは,プログラムを後で読解しやすくするための注釈です. Flow Rate = 1.0m**3/s Tank Area = 20.0mm**2 Initial Level = 10.0m 8 Tank Level time 30.0s = 11.5m Tank Level at time 60.0s = 13.0m 1.7.1 サンプルプログラムの入力と実行 先ほどと同じように, 秀丸エディタを開き, 20行のプログラムを書き込んで, Tank Calculator.java と名付け, 保存して, コンパイル, 実行してください. 成功すれば,以下の実行結果が示されます。(失敗してもめげないで, 2.5.1 節を参 考に、原因を考え,再トライしてください) ちなみに, 実行結果をファイルに書き出すにはコマンドプロンプトの「リダイレク ト」 という機能を使います 11. java TankCalculator > result.txt これにより result.txt というファイルが出来ているはずです。 中身は数値や文字列 だけのテキストファイルですのでエディタなどで内容を確認できます。 @91% 11javaプログラムの中で明示的にフ ァイルに出力することもできるので すがここでは安直な方法を取ります

Unresolved Answers: 1
English Senior High

問3教えてください😭😭😭🙇‍♀️🙇‍♀️

元子 The (1)"rare earth elements are a group of 17 metallic elements that are found in the natural 元子 world. Because these elements are used in all sorts of high-tech devices, they are increasingly 全種類 倍増した in demand. In fact, the use of these metals nearly doubled between the years 2000 and 2010. d Despite the name, the quantity of these elements is not so low. Some recent reports have 主張した claimed that the amount of rare earth elements may be on the same level as that of copper* or Even though the elements exist throughout the world, however, the quantity is not LAUOPUS OS sufficient* for mining* profitably* in each location. Moreover, these elements are usually mixed lead*. with other elements, making it difficult to remove them. This explains why they have been called (8) (A) „‚Â#881‡3 GANEUS $0 01X$&NOS "rare" earth elements. (8) jud (A) Jon Despite an ever-growing demand, few countries are mining for these metals on a large scale. bhup gnis91 sus abnsmab 19 (A) jos ei said ino NO One country, China, now handles more than 90% of all mining for rare earth metals. Other Jadi seu ingim owied 参 in di o ogsmeh, countries have not entered this business in part because of In oro guiauso juodhiw moi because of (2) the environmental problems th ANS) OW IGERS allesimonoss maci pruxs of lola su od son ob enido merla corto prinanvoo can occur. Extracting the metals creates a lot of waste, including radioactive* waste from >tojat DEROXA uranium*, thorium* and other elements located in the mining area. poswad belduob vlison and anomals die ve dost-dgid to edmund oros bas The growing need for rare earth metals may convince some countries to expand their mining. bsol 10 190900 2 von dem som vas a su amals drus ma maldong nista on jonzi blow di metavond zimnelo drusele viirusno leuns afte Running out of rare earth metals is not the concern, however. Rather, the question is whether 2 lo word of mine anomals dre His ch 21810 i asıl yainuas vino odo at smidƆ> vob dost-deid ni bozu.ad no vod! they can be obtained without too high of an economic or environmental cost. ololo alam russ

Resolved Answers: 1