Grade

Type of questions

Mathematics Senior High

?下線部を教えて下さい。3×3×2と思ったのですが、なぜ3^2になるのでしょうか。

310 基本 例題 9 例題 9 (全体)・・・でない)の考えの利用 000 大,中, 小3個のさいころを投げるとき, 目の積が4の倍数になる場合は何通り あるか。 [東京女子大]基本で 指針▷ 「目の積が4の倍数」を考える正攻法でいくと, 意外と面倒。 そこで, (目の積が4の倍数)=(全体)(目の積が4の倍数でない) として考えると早い。 ここで,目の積が4の倍数にならないのは,次の場合である。 [1] 目の積が奇数→3つの目がすべて奇数 [2]目の積が偶数で,4の倍数でない→偶数の目は2または6の1つだけで、他は奇数 早道も考える CHART 場合の数 わざ (Aである) = (全体) (Aでない)の技活 解答 目の出る場合の数の総数は 6×6×6=216 (通り) 目の積が4の倍数にならない場合には,次の場合がある。 [1] 目の積が奇数の場合 3つの目がすべて奇数のときで 3×3×3=27 (通り) [2] 目の積が偶数で, 4の倍数でない場合 3つのうち、2つの目が奇数で, 残りの1つは2または6の目 であるから (32×2)×3=54(通り)? [1], [2] から, 目の積が4の倍数にならない場合の数は 27+54=81 (通り) よって, 目の積が4の倍数になる場合の数は 216-81=135 (通り) NO 1積の法則 (63 と書いてもよ い。) 奇数どうしの積は奇数。 1つでも偶数があれば積 は偶数になる。 4が入るとダメ。 OD ( |和の法則 08000F (全体) (...でない) L

Unresolved Answers: 1
Mathematics Senior High

この基本例題27の(2)が解説を読んでもよくわからず、もう少し詳しく教えて欲しいです。お願いします。

300 基本 例題 27 同じものを含む順列 00000 J,A,P,A,N, E, S, E の8個の文字全部を使ってできる順列について、 次のような並べ方は何通りあるか。 (1) 異なる並べ方 (2)JはPより左側にあり,かつPはNより左側にあるような並べ方 CHART & SOLUTION p.293 293 基本事項 2 同じものを含む順列 |1 そのまま組合せの考え方で n! ②公式 p!g!r!...... (p+gtr+=n)を利用 0 ここでは,上の②の方針で解く。 (2) まず, J, P, N を同じ文字Xとみなして並べる。 並べられた順列において、3つのX を左から順にJ,P,Nにおき換えれば条件を満たす順列となる。 例:XAXAXESE と並べ, JAPANESE とおき換える。 解答 (1)8個の文字のうち, A, Eがそれぞれ2個ずつあるから 8! 2!2!1!1!1!1! 8.7.6.5.4.3 2.1 -=10080 (通り) ←1!は省略してもよい。 別解 8個の場所から2個のAの位置の決め方は 残り6個の場所から2個のEの位置の決め方は 残り4文字の位置の決め方は 4! 通り C2通り ①の方針。 C2通り よって 8C2×62×4!= 8.7 6.5 -X -×4・3・2・1 2.1 2.1 ←積の法則。 =10080 (通り) (2) 求める順列の総数は, J, P, Nが同じ文字, 例えばX, X, X であると考えて, 3つのX, 2つのA, 2つのE, 1つのSを1列に並べる方法の総数と同じである。 8! 8.7.6.5.4 よって -1680 (通り) 3!2!2!1! 2.1×2.1 別解 1 の方針で解くと 8C3 X5C2 ×3C2×1 8-7.6 5.4 -x3x1 3・2・12・1 =1680 (通り) POINT 並べるものの位置関係が決められた順列 位置関係が決められたものを すべて同じものとみなす PRACTICE 27Ⓡ internet のすべての文字を使ってできる順列は通りあり、そのうちどのも どのeより左側にあるものは 通りである。 [ 法政大 ]

Unresolved Answers: 1
IT Undergraduate

Oracle certified Java Programmer Gold SE11 IT系ベンダー資格のOracle certified Java Programmer Gold SE11の資格勉強をしているのですが、もし、Javaに詳しい人がいるのでしたら、 第6章... Read More

8. 次のコードをコンパイル、 実行したときの結果として、正しいものを びなさい。 (1つ選択) } var sql = "select * from item where id = ?": try (var ps = con.prepareStatement (sql)){ ResultSet rs = ps.executeQuery(); // do something 0件の検索結果が戻される 11. 次のコードをコンパイル、実行したときの結果として、正しいものを選 びなさい。(1つ選択) var sql = "select * from emp"; try (PreparedStatement ps = con.prepareStatement(sql){ ResultSet rsps.executeQuery(); System.out.println(rs.getString(2)); なお、 検索する対象となるempテーブルは、以下のレコードが登録さ れているものとする。 DEPARTMENT A. B. 全件の検索結果が戻される C. コンパイルエラーが発生する D. 実行時に例外がスローされる ID NAME 1 ALLEN R&D A. B. executeQueryメソッド C. executeメソッド D. executeBatch メソッド メソッドとして、最も適切なものを選びなさい。 (1つ選択) executeUpdate メソッド 19. JDBCを使ったデータベースプログラミングをしている。 UPDATE文を 実行した結果、 何件更新されたかを調べたい。 PreparedStatementの P314 2 SCOTT SALES 3 BILL ACCOUNTING A. 「1」 と表示される Marit B. 「2」 と表示される C. 「ALLEN」 と表示される D. 「SCOTT」 と表示される E. コンパイルエラーが発生する F. 実行時に例外がスローされる 第6章 JDBCによるデータベース連携 (問題) <->P316 P314 10. 次のコードをコンパイル、 実行したときの結果として、正しいものを選 びなさい。 (1つ選択) var sql = "delete from item where id = ?"; try (var ps = con.prepareStatement(sql))( ps.setInt(1, 1); ps.executeUpdate("update item set name="test' where id = ?'); 12. 次のコードをコンパイル、 実行したときの結果として、正しいものを選 びなさい。 (1つ選択) var sql = "select count(*) from item"; try (PreparedStatement ps = con.prepareStatement(sql)){ System.out.println(ps.execute()); なお、検索する対象となるitemテーブルは、以下のレコードが登録さ れているものとする。 A. DELETE文が実行される id name 1 B. UPDATE文が実行される banana 2 C. コンパイルエラーが発生する apple 3 D. 実行時に例外がスローされる P316 orange 298 ※次ページに続く 299

Waiting for Answers Answers: 0
Mathematics Senior High

この問題で、2倍角や半角の公式を使うのは分かるんですけど、チャートに書いてある半角の公式が授業でやったものと違うから困惑してます😭 ノートの方の式を両辺2倍しても、チャートのような式にはならなくないですか?分母の2が消されるのかと思うんですけど…😭 教えて下さい🥹お願い... Read More

基本 例題 137 2次同次式の最大・最小を公の色 f(0)=sin'0+sincos0+2cos2 SE CHART & SOLUTION 00 (0sec)の最大値と最小値を求めよ。 sincos の2次式角を20に直して合成 基本135 sin'01-cos20 半角の公式 sin20 sinocoso= L2倍角の公式 cos'=1+cos20 半角の公式 2 これらの公式を用いると, sind, coseの2次の同次式 (どの項も次数が同じである式) は 20 の三角関数で表される。 2 更に、三角関数の合成を使って, y=psin(20+α)+αの形に変形し, sin (20+α) のとり うる値の範囲を求める。 sinaの一般解は Snia 200+0S2000 iz= 4章 0 2000 nia0 200+ (Waia Irie- 17 解答 1)ontes+ nies-Orie= f(0)=sin20+sin Acos0+2cos2日 = 2 + 2n+2 +2・・ 2 すなわち 0=2月 は 3 2 181-083√2 as-081-05-28 onia (= (sin20+cos20)+ =(sin 0022 = sin(20+)+1/ == であるから Sale=e Onie $220066te nie +2 sin30=sin1-cos 20 sin 20 1+cos 20ial-nie & 80lme="asin20, cos 20 で表す。 sin 20 と cos 20 の和 Snie nisine cose の2次の同 次式。 加法定理 y m (1,1) 1 √2 4 0 1 なお、sin30 と π π 5 π 点が6個あるとが よって sin 30 √2 sin (20+)≤1 54 -1 47 π 4 10 1 x 各辺に √√2 を掛けて 2 3+√2 18001 √2 ゆえに 1≤ f(0)≤ 1/2=7sin(20+4 2 √2 したがって,f(0) は πC 20+ すなわち = 7 で最大値 3+√2 2 この各辺に を加える。 4 2 20すなわちで最小値1をとる。 利用

Unresolved Answers: 2
English Senior High

教えてほしいです

3 次の英文を読み, 空所に入れるのに最も適切なものを, それぞれ下の①~④のうちから一つずつ選びなさい。 Cigarette smoking has negative effects not only on the body of the person who smokes but also on the body of someone who regularly breathes in second-hand smoke. Some of the most obvious effects are high blood pressure, sleep disorders, heart failure, and lung cancer. Despite such harmful consequences, ( 10 ). It has been reported that smoking creates feelings of pleasure, reduces tension, and promotes close relationships. Many smokers admit that smoking is a bad habit. ( 11 ), they tend to think that the number of cigarettes that they smoke is below the danger level and thus are not worried about the risk. Some even feel that they do not breathe in the smoke and that a cure for cancer will be found before they become ill with the disease. We have to admit that smoking is a habit which is difficult to break ( 12 ) the nicotine found in tobacco goes into the blood and stimulates the brain, making smokers feel pleasant for several minutes. What is more, the smoker usually feels anxious and wants to have another cigarette. ( 13 ) the policies that now ban smoking in most public areas, the stress that people often experience at work and at home can force them to smoke. ( 10 ) ①some people decide to stop smoking millions of people continue to smoke ( 11 ) the price of cigarettes has risen ①smoking is more harmful than drinking Therefore 2 While ③ Of course 4 However (12) 1 because 2 as a result 3 but SO (13) ①Despite 2 Although (3) But 4 Yet

Waiting for Answers Answers: 0