学年

質問の種類

数学 高校生

16番の問題です。なぜ私の回答は間違っているのでしょうか? 間違っている箇所や理由、共通解をαとおく意味について教えていただきたいです。

170 第2章 2次関数 Step Up 2次方程式と2次不等式 3-1-0.8で、a>Bとするとき、 を求めよ。 (2) <+1 を満たすの値を求めよ。 (1) (3)1 を満たす整数の値を求めよ。 () at 04 を求めよ、 10 センター試験) *** 14 定数とするとき、方程式 (a+1)x= (a+1)x を解け. 9.105 **** p.121 16 *** 15 によって、どのように変わるか調べよ . ertx+1=0 の実数解の個数を求めよ。た 118 (注) についての方 だし, a は実数の定数とする. (3) 2次方程式 程式 (k-1)x-kx-1=0 の実数解の個数を求めよ. (広島文教女子大) +1=0が重餅の数を求めについての2次方 2つの2次方程式x'+mx+m²-7=0, x2-3x-m-1=0 がただ1つ の共通解をもつとき、定数mの値とその共通解を求めよ. なぜこのとおくのか? ** p.127 17 (1) 2次関数 y=x+px+p のグラフがx軸に接するときのかの値を 求めよ. (東京工芸大) (2)2次関数 y=4x-4(k+1)x+k のグラフが,x軸と共有点をもっ ような定数kの値の範囲を求めよ. (創価大) * 18 2次関数y=ax+bx+c のグラフは原点を通る.このグラフをy軸方 向に -8 だけ平行移動すると, 点 (4, 8) を通り, x軸と接すること き, a, b, c の値を求めよ. (日本工業大) ** 19 134 p.13 ** P.13

未解決 回答数: 1
TOEIC・英語 大学生・専門学校生・社会人

この長文問題の答えと解説をお願いします。

15 語数: 398 語 出題校 法政大 5 We are already aware that our every move online is tracked and analyzed. But you 2-53 couldn't have known how much Facebook can learn about you from the smallest of social interactions - a 'like'*. (1) Researchers from the University of Cambridge designed (2) a simple machine-learning 2-54 system to predict Facebook users' personal information based solely on which pages they had liked. E "We were completely surprised by the accuracy of the predictions," says Michael 2-55 Kosinski, lead researcher of the project. Kosinski and colleagues built the system by scanning likes for a sample of 58,000 volunteers, and matching them up with other 10 profile details such as age, gender, and relationship status. They also matched up those likes with the results of personality and intelligence tests the volunteers had taken. The team then used their model to make predictions about other volunteers, based solely on their likes. The system can distinguish between the profiles of black and white Facebook users, 15 getting it right 95 percent of the time. It was also 90 percent accurate in separating males and females, Democrats and Republicans. Personality traits like openness and intelligence were also estimated based on likes, and were as accurate in some areas as a standard personality test designed for the task. Mixing what a user likes with many kinds of other data from their real-life activities could improve these predictions even more. 20 Voting records, utility bills and marriage records are already being added to Facebook's database, where they are easier to analyze. Facebook recently partnered with offline data companies, which all collect this kind of information. This move will allow even deeper insights into the behavior of the web users. 25 30 (3) - Sarah Downey, a lawyer and analyst with a privacy technology company, foresees insurers using the information gained by Facebook to help them identify risky customers, and perhaps charge them with higher fees. But there are potential benefits for users, too. Kosinski suggests that Facebook could end up as an online locker for your personal information, releasing your profiles at your command to help you with career planning. Downey says the research is the first solid example of the kinds of insights that can be made through Facebook. "This study is a great example of how the little things you do online show so much about you,” she says. "You might not remember liking things, " but Facebook remembers and (4) it all adds up.", * a 'like': フェイスブック上で個人の好みを表示する機能。 日本語版のフェイスブックでは「いいね!」 と表記される。 2-56 2-57 2-58 36

回答募集中 回答数: 0
情報:IT 高校生

カで0からスタートした場合なぜj-1になるのですか?

目標 重要テーマを確実におさえよう! テーマ3 データの分析に関するプログラミング 例題:外れ値の扱いについて,箱ひげ図の場合は四 分位範囲の1.5倍を 「ひげ」 の長さの上限に して、その長さから外れるものを外れ値とす るという考え方がある。 外れ値がある場合 ひげを短くする 7個のデータ [-100 20 30 40 50 60,1000] のうち,外れ値を除外して平均値を求める以下の〈プ ログラム〉を作った。 この〈プログラム> では, 元 のデータ7個が配列 Data[0], Data[1], 四分位範囲 の1.5倍 四分位範囲 Data[6] に格納されており,第1四分位数を q1, 第 3 四分位数を q3 とし,四分位範囲はアで表せる。そして, 外れ値を除いたデータは 配列 Data_c[0], Data_c[1], ... に格納するものとする。 なお, すべての配列の添字は0か ら始まるものとする。 (1) Data=[-100,20,30, 40, 50, 60, 1000] (2) Data_c = [0,0,0,0,0,0,0] (3) q1=20 (4) g3=60 (5) j=0 (6) iを0からイ まで1ずつ増やしながら繰り返す : (7) | もし Data[i] = ウ and Data[i] <= エ ならば : (8) | | Data_c [j]=Data[i] (9) L L j = オ (10)s=0 (11)を0から カまで1ずつ増やしながら繰り返す: (12) L s = s +Data_c[i] (13) 表示する(キ) <プログラム> 空欄 ア ~ キに最も当てはまるものを, 次の解答群から一つずつ選べ。

未解決 回答数: 1
情報:IT 高校生

外れ値とならなかった個数をカウントした場合なぜj=j+1になるのですか?

テーマ3 データの分析に関するプログラミング 例題:外れ値の扱いについて,箱ひげ図の場合は四 分位範囲の1.5倍を 「ひげ」 の長さの上限に して、その長さから外れるものを外れ値とす るという考え方がある。 外れ値がある場合 ひげを短くする 四分位範囲 の1.5倍 四分位範囲 7個のデータ [-100 20 30 40 50,60,1000] のうち、外れ値を除外して平均値を求める以下の〈プ ログラム〉を作った。この〈プログラム〉では,元 のデータ7個が配列 Data[0], Data[1], Data[6] に格納されており,第1四分位数を q1 第 3 四分位数を q3 とし、四分位範囲はアで表せる。そして, 外れ値を除いたデータは 配列 Data_c[0], Data_c[1], … に格納するものとする。 なお、すべての配列の添字は0か ら始まるものとする。 Data=[-100,20,30, 40,50,60,1000] Data_c=[0,0,0,0,0,0, 0] q1=20 g3 = 60 (1) (2) (3) (4) (5) j=0 (6) i を 0 から イ まで1ずつ増やしながら繰り返す: (7) | もし Data[i]>= ウ and Data[i] <= エ ならば: (8) | Data_c[j] = Data[i] (9) LLj = オ れる。 (10) s=0 (11) iを0から カ まで1ずつ増やしながら繰り返す : (12) L s = s +Data_c[i] (13) 表示する(キ) ~ <プログラム> 空欄 ア キに最も当てはまるものを,次の解答群から一つずつ選べ。

未解決 回答数: 0
1/17