学校ないならここで勉強していけ!

がこない独学応援ブログ

共通テスト 高校生 高校英語

2022共通テスト英語で各単語帳6冊の的中率をプログラミングで検証してみた

投稿日:2022年1月18日 更新日:

どーも、がこないのクボタです。今回は私のYoutube動画である、

【速報】2022共通テスト英語で各単語帳の的中率をプログラミングで検証してみた【ターゲット】【システム英単語】【鉄壁】【単語王】【LEAP英単語】【オプティマ】

の文章版になります。

今回やりたいこと

今回やりたいことはタイトルの通り、

2022年共通テストで有名単語帳はいくつ的中させたか

 

をプログラミングの配列機能を使って調べる企画になります。

今回使用する単語帳は二次試験向けの有名どころ6冊として、

ターゲット1900

システム英単語

鉄壁

単語王2202

LEAP英単語

オプティマ英単語

を用意しました。

長くなるので、結果だけ見たい人は目次から飛んでください。

配列とは

配列について、詳しくは以前の検証記事でも解説をしているので、そちらをご覧ください。

該当箇所だけ引用します。

今回プログラミングで行うことはごくごく初心者レベルのことですが、一応未経験者の方に説明しますと、配列とはデータの中身と順番がまとまった箱だと思ってください。 例えば、 PHP言語で、 と書くと、
fruitsという名前(変数)の箱の中に、「りんご(0番目)」「みかん(1番目)」「オレンジ(2番目)」がこの順番で入っている
ことになります。ちなみに順番は1番目、2番目、3番目となるんですが、プログラミングの世界ではこれを0番目、1番目、2番目と数えます
まあこの辺の説明は重要ではないので流します。 ではこんな感じの配列に、ターゲット1900の中身の単語を全て入れてみましょう。 全て手で入力しました。コピペできないって辛い。 著作権の関係上、全ての単語を見せることはできませんが、ずらっと並べてみると壮観です。

以上になりますが、これはPHPの書き方なので、今回使用するPythonでは、

//ターゲット1900の配列
target1900 = [
    'cereate',
    'increase',
    'improve',
    'mean',
//以下省略
]

こんな感じの書き方になります。 実際はこれを今回使用する6冊分、全て配列で用意したと考えてください。

問題文には自然言語処理

この配列だけでも、各単語帳同士の比較はできます。

しかし今回は対象の問題文を用意して、それと各配列を照らし合わせる作業が必要なので、問題文も全て配列に入れる必要が出てきます。

そのような時に便利なのが自然言語処理です。

プログラミング言語のPythonには、外部ライブラリとして自然言語処理を扱うものが多数用意されていますので、今回はその中で私が一番使い慣れているSpacyを使用します。

自然言語処理をする理由や大まかな流れは、以前の私の検証記事でも触れているのでそちらをご覧ください。

【東京大学英語】ターゲット1900の的中単語全リスト【2021〜2022】【プログラミング】

東京大学2021〜2022年度の英語に、ターゲット1900収録単語は何個出てきたのか?

該当箇所を引用すると、

今回使用する言語はPython、自然言語処理ライブラリとしてSpacyになります。

実際のコードを詳しく解説すると長くなるので大まかな図で説明します。
まず実際の問題をPDFで用意し、それを一旦グーグルドライブに入れます。

このあとグーグルドライブ上でファイルを開くと、PDFの中の文字が文字認識され、抽出 (つまりコピペ可能な状態)できるようになります。

一旦テキストファイルに全ての文字をコピー、ペーストします。

PDFからの文字認識機能は精度もまだ完璧ではなく、例えば問題の選択肢に出てくる余分な文字、記号、番号、また、ページ部分の番号なども拾ってしまうため、Python上でそれらの不要な部分は取り除く処理をします。

また、後から単語帳と照らし合わせる作業の際、大文字と小文字は別として扱われます

つまり、例えば"have"と"Have"は違う単語扱いされてしまうので、各文頭の大文字は小文字化させます。

ここまでが下地処理。 (この状態だと「私は」を表す"I"も小文字化されるので、後からそれだけ大文字化させます。その他国名や人物名も小文字化されますが、私のプログラミングのレベルではそれらだけを上手く大文字化させられないのと、単語帳の中の単語には出てこないものがほとんどなので、今回はそれらの不備な点は無視します。)

自然言語処理ライブラリで下地処理

ここから自然言語ライブラリのSpacyを使用します。

先ほど下地処理された本文をSpacyに読み込ませることで、全ての単語がバラバラで配列に入れられます

しかしこの状態では、三単元のsや過去形、過去分詞形、不規則変化や複数形などは全て違う単語に見えてしまいます

例えば、後から出てくる単語帳の中に"create"があったとして、本文中の"created"のような過去形は一致したとみなされません。

そこで自然言語処理として、これらの単語を全て元の見出し語に戻す処理をかけます。(これをlemmatizationと言います)

図にあるように例を挙げると"He has two cameras."という文は、そのまま配列に入れるだけでは"he"、"has"、"two"、"cameras"となってしまうのですが、見出し語処理をすることによって"he"、"have"、"two"、"camera"となり、後から単語帳との照らし合わせができるようになります。

実際の検証結果

ここから実際の検証に入ります。 動画では実際のリストは簡易表示しかしませんでしたが、この記事では全て表示します。 ただし何百行をあるリストは、人によってはスクロールの邪魔でしかありません。 よって中身は袋とじ状態にしておくので、見たい人だけクリックして見てください。

 

ターゲット1900の検証結果

それではテンポよく発表していきます。

 

ターゲット1900の検証結果は、、、

 

216個

 

になります。

216/1900なので四捨五入して、的中率は、、、

 

約11.4%

 

になりました!

 

前年から0.3%の微増となりました!

ターゲット1900的中単語リスト

以下が的中させた全216単語になります。 意味まで載せるとかなりの手間なのと、著作権的に怖いので、知らない単語だけ各自調べてください。

リストはこちら
  1. plastic
  2. patent
  3. item
  4. most
  5. symbol
  6. option
  7. challenge
  8. complete
  9. idea
  10. store
  11. contest
  12. information
  13. suggest
  14. article
  15. offer
  16. model
  17. produce
  18. decide
  19. bear
  20. research
  21. culture
  22. common
  23. image
  24. submit
  25. create
  26. improve
  27. mean
  28. own
  29. include
  30. share
  31. compare
  32. company
  33. environment
  34. material
  35. possible
  36. certain
  37. due
  38. occur
  39. claim
  40. prepare
  41. perform
  42. figure
  43. access
  44. chemical
  45. indicate
  46. log
  47. vacuum
  48. tend
  49. concern
  50. limit
  51. affect
  52. accord
  53. cause
  54. matter
  55. value
  56. subject
  57. statement
  58. evidence
  59. appropriate
  60. likely
  61. contact
  62. opportunity
  63. industry
  64. advantage
  65. detail
  66. habit
  67. link
  68. financial
  69. active
  70. survey
  71. replace
  72. feed
  73. seek
  74. web
  75. court
  76. artificial
  77. recommend
  78. outcome
  79. corporation
  80. flexible
  81. sequence
  82. internal
  83. row
  84. flavor
  85. mechanical
  86. semester
  87. joint
  88. parallel
  89. click
  90. toxic
  91. proverb
  92. increase
  93. consider
  94. allow
  95. reduce
  96. force
  97. deal
  98. encourage
  99. measure
  100. mark
  101. object
  102. reason
  103. view
  104. knowledge
  105. benefit
  106. theory
  107. issue
  108. focus
  109. term
  110. technology
  111. similar
  112. various
  113. available
  114. ancient
  115. notice
  116. refer
  117. wonder
  118. waste
  119. gain
  120. achieve
  121. mention
  122. contain
  123. publish
  124. task
  125. stress
  126. range
  127. impact
  128. current
  129. official
  130. worth
  131. necessary
  132. eventually
  133. represent
  134. attend
  135. attempt
  136. earn
  137. reflect
  138. attract
  139. contribute
  140. exchange
  141. hide
  142. assume
  143. relax
  144. succeed
  145. concept
  146. content
  147. traffic
  148. basis
  149. progress
  150. previous
  151. legal
  152. emerge
  153. enable
  154. judge
  155. acquire
  156. refuse
  157. confuse
  158. recall
  159. participate
  160. extend
  161. circumstance
  162. version
  163. perspective
  164. custom
  165. soil
  166. vocabulary
  167. intelligent
  168. nevertheless
  169. purchase
  170. generate
  171. compete
  172. rank
  173. reject
  174. repair
  175. comment
  176. religion
  177. harm
  178. stock
  179. odd
  180. superior
  181. concentrate
  182. grant
  183. arise
  184. manufacture
  185. fee
  186. route
  187. disadvantage
  188. precise
  189. reserve
  190. stretch
  191. sum
  192. award
  193. priority
  194. discount
  195. melt
  196. accomplish
  197. mission
  198. editor
  199. approve
  200. passion
  201. instant
  202. chase
  203. maximum
  204. ratio
  205. highlight
  206. valid
  207. beverage
  208. tablet
  209. recruit
  210. straightforward
  211. worthwhile
  212. dispose
  213. contaminate
  214. authentic
  215. draft
  216. certificate

システム英単語の検証結果

 

システム英単語の検証結果は、、、

 

229個

 

になります。

229/2027なので四捨五入して、的中率は、、、

 

約11.3%

 

になりました!

 

前年から0.5%の微増となりました!

システム英単語的中単語リスト

以下が的中させた全229単語になります。 意味まで載せるとかなりの手間なのと、著作権的に怖いので、知らない単語だけ各自調べてください。

リストはこちら
  1. patent
  2. follow
  3. option
  4. complete
  5. borrow
  6. provide
  7. electricity
  8. reach
  9. suggest
  10. develop
  11. offer
  12. appliance
  13. decide
  14. seat
  15. society
  16. common
  17. produce
  18. research
  19. household
  20. submit
  21. include
  22. share
  23. support
  24. improve
  25. prepare
  26. compare
  27. claim
  28. perform
  29. indicate
  30. own
  31. result
  32. material
  33. taste
  34. jam
  35. access
  36. ready
  37. chemical
  38. within
  39. environment
  40. approximately
  41. occur
  42. broadcast
  43. log
  44. sour
  45. vacuum
  46. tend
  47. seek
  48. feed
  49. replace
  50. value
  51. industry
  52. passage
  53. property
  54. likely
  55. explain
  56. affect
  57. recommend
  58. government
  59. period
  60. opportunity
  61. shape
  62. advantage
  63. habit
  64. detail
  65. standard
  66. statement
  67. organization
  68. weight
  69. temperature
  70. survey
  71. stream
  72. web
  73. evidence
  74. appropriate
  75. financial
  76. artificial
  77. row
  78. parallel
  79. internal
  80. corporation
  81. outcome
  82. flavor
  83. density
  84. flexible
  85. sequence
  86. proverb
  87. toxic
  88. accord
  89. consider
  90. increase
  91. continue
  92. allow
  93. force
  94. wonder
  95. cost
  96. notice
  97. reduce
  98. encourage
  99. refer
  100. gain
  101. refuse
  102. mention
  103. judge
  104. reflect
  105. represent
  106. grant
  107. acquire
  108. reply
  109. earn
  110. confuse
  111. graduate
  112. contribute
  113. focus
  114. reject
  115. stress
  116. attract
  117. extend
  118. concentrate
  119. repair
  120. reserve
  121. manufacture
  122. approve
  123. weigh
  124. stretch
  125. participate
  126. fee
  127. attempt
  128. progress
  129. custom
  130. official
  131. range
  132. appearance
  133. benefit
  134. furniture
  135. background
  136. impact
  137. harm
  138. available
  139. worth
  140. involved
  141. private
  142. current
  143. previous
  144. superior
  145. legal
  146. senior
  147. therefore
  148. possibly
  149. somehow
  150. accept
  151. protect
  152. contain
  153. exchange
  154. achieve
  155. enable
  156. invent
  157. publish
  158. recall
  159. compete
  160. generate
  161. knowledge
  162. nation
  163. behavior
  164. author
  165. task
  166. theory
  167. creature
  168. tradition
  169. career
  170. equipment
  171. strength
  172. religion
  173. vocabulary
  174. yard
  175. soil
  176. leisure
  177. general
  178. various
  179. similar
  180. expensive
  181. ancient
  182. empty
  183. eventually
  184. nevertheless
  185. definitely
  186. mostly
  187. emerge
  188. chase
  189. stock
  190. sum
  191. rank
  192. vehicle
  193. perspective
  194. version
  195. basis
  196. mission
  197. award
  198. exhausted
  199. miserable
  200. arise
  201. accomplish
  202. purchase
  203. melt
  204. destination
  205. circumstance
  206. theme
  207. priority
  208. passion
  209. dozen
  210. editor
  211. finding
  212. concept
  213. odd
  214. lively
  215. thoroughly
  216. recruit
  217. summit
  218. draft
  219. valid
  220. dispose
  221. worm
  222. ratio
  223. certificate
  224. beverage
  225. straightforward
  226. comprehensive
  227. contaminate
  228. per
  229. authentic

鉄壁の検証結果

 

鉄壁の検証結果は、、、

 

240個

 

になります。

240/1982なので四捨五入して、的中率は、、、

 

約12.1%

 

になりました!

 

前年から0.3%の微減となりました!

鉄壁的中単語リスト

以下が的中させた全240単語になります。 意味まで載せるとかなりの手間なのと、著作権的に怖いので、知らない単語だけ各自調べてください。

リストはこちら
  1. do
  2. will
  3. patent
  4. item
  5. symbol
  6. electronic
  7. second
  8. option
  9. complete
  10. challenge
  11. provide
  12. area
  13. win
  14. order
  15. suggest
  16. event
  17. article
  18. change
  19. free
  20. offer
  21. develop
  22. appliance
  23. common
  24. submit
  25. save
  26. state
  27. bear
  28. enter
  29. research
  30. society
  31. decide
  32. culture
  33. produce
  34. household
  35. image
  36. say
  37. perform
  38. include
  39. due
  40. figure
  41. mean
  42. company
  43. improve
  44. result
  45. compare
  46. claim
  47. indicate
  48. lose
  49. approximately
  50. occur
  51. broadcast
  52. create
  53. environment
  54. nature
  55. staff
  56. material
  57. access
  58. room
  59. story
  60. check
  61. chance
  62. minute
  63. matter
  64. parent
  65. detail
  66. subject
  67. internal
  68. seek
  69. period
  70. age
  71. property
  72. outcome
  73. introduce
  74. replace
  75. concern
  76. wait
  77. case
  78. appear
  79. cause
  80. opportunity
  81. accord
  82. proverb
  83. survey
  84. advantage
  85. right
  86. affect
  87. flavor
  88. court
  89. value
  90. standard
  91. industry
  92. feed
  93. toxic
  94. artificial
  95. temperature
  96. tend
  97. likely
  98. fit
  99. weight
  100. appropriate
  101. parallel
  102. flexible
  103. web
  104. semester
  105. run
  106. still
  107. life
  108. stress
  109. general
  110. precise
  111. ground
  112. concentrate
  113. focus
  114. attract
  115. melt
  116. extend
  117. force
  118. allow
  119. encourage
  120. attempt
  121. destination
  122. task
  123. achieve
  124. accomplish
  125. gain
  126. acquire
  127. previous
  128. current
  129. ancient
  130. stock
  131. benefit
  132. purchase
  133. available
  134. cost
  135. fee
  136. local
  137. contain
  138. range
  139. emerge
  140. arise
  141. generate
  142. attend
  143. reflect
  144. odd
  145. issue
  146. term
  147. represent
  148. assume
  149. receive
  150. accept
  151. refuse
  152. reject
  153. enable
  154. lead
  155. harm
  156. rise
  157. official
  158. object
  159. approve
  160. confuse
  161. refer
  162. mention
  163. opinion
  164. comment
  165. vocabulary
  166. theory
  167. perspective
  168. succeed
  169. mission
  170. contribute
  171. impact
  172. author
  173. exercise
  174. compete
  175. superior
  176. sense
  177. passion
  178. judge
  179. legal
  180. amount
  181. sum
  182. maximum
  183. increase
  184. reduce
  185. reason
  186. view
  187. knowledge
  188. bright
  189. smart
  190. consider
  191. recall
  192. adult
  193. career
  194. background
  195. private
  196. award
  197. worth
  198. measure
  199. class
  200. condition
  201. circumstance
  202. participate
  203. progress
  204. administer
  205. soil
  206. internet
  207. publish
  208. manufacture
  209. deal
  210. chemistry
  211. religion
  212. tradition
  213. custom
  214. waste
  215. fix
  216. possibly
  217. beverage
  218. eventually
  219. ratio
  220. point
  221. authentic
  222. valid
  223. stretch
  224. relax
  225. theme
  226. leisure
  227. interview
  228. mark
  229. rank
  230. technology
  231. vehicle
  232. meet
  233. air
  234. lot
  235. fast
  236. nevertheless
  237. somehow
  238. contaminate
  239. certificate
  240. dispose

単語王2202の検証結果

 

単語王2202の検証結果は、、、

 

311個

 

になります。

311/2202なので四捨五入して、的中率は、、、

 

約14.1%

 

になりました!

 

前年と全く同じ的中率となりました!

単語王2202的中単語リスト

以下が的中させた全311単語になります。 意味まで載せるとかなりの手間なのと、著作権的に怖いので、知らない単語だけ各自調べてください。

リストはこちら
  1. do
  2. make
  3. will
  4. system
  5. study
  6. work
  7. item
  8. book
  9. follow
  10. live
  11. school
  12. challenge
  13. well
  14. want
  15. store
  16. hand
  17. borrow
  18. long
  19. order
  20. very
  21. provide
  22. reach
  23. article
  24. note
  25. suggest
  26. change
  27. miss
  28. experience
  29. free
  30. offer
  31. develop
  32. popular
  33. decide
  34. research
  35. bear
  36. enter
  37. close
  38. submit
  39. state
  40. household
  41. catch
  42. produce
  43. culture
  44. save
  45. common
  46. improve
  47. include
  48. environment
  49. minute
  50. own
  51. perform
  52. compare
  53. lose
  54. happen
  55. occur
  56. hold
  57. support
  58. room
  59. mean
  60. share
  61. staff
  62. wise
  63. nature
  64. result
  65. material
  66. claim
  67. chance
  68. vacuum
  69. access
  70. jam
  71. figure
  72. create
  73. rest
  74. broadcast
  75. prepare
  76. way
  77. certain
  78. chemical
  79. safe
  80. company
  81. taste
  82. ready
  83. indicate
  84. picture
  85. sour
  86. able
  87. fire
  88. summary
  89. court
  90. concern
  91. sequence
  92. active
  93. still
  94. run
  95. part
  96. seek
  97. replace
  98. row
  99. parallel
  100. move
  101. survey
  102. fun
  103. affect
  104. serve
  105. introduce
  106. habit
  107. social
  108. explain
  109. cause
  110. business
  111. case
  112. line
  113. appropriate
  114. dessert
  115. feed
  116. matter
  117. last
  118. age
  119. life
  120. internal
  121. right
  122. standard
  123. shape
  124. fit
  125. temperature
  126. pay
  127. likely
  128. limit
  129. industry
  130. flexible
  131. passage
  132. advantage
  133. artificial
  134. paper
  135. mechanical
  136. corporation
  137. detail
  138. proverb
  139. subject
  140. opportunity
  141. period
  142. value
  143. stream
  144. care
  145. evidence
  146. outcome
  147. recommend
  148. content
  149. custom
  150. purchase
  151. deal
  152. benefit
  153. recall
  154. previous
  155. increase
  156. fix
  157. extend
  158. measure
  159. senior
  160. reason
  161. compete
  162. gain
  163. generate
  164. religion
  165. encourage
  166. progress
  167. object
  168. spring
  169. perspective
  170. melt
  171. stretch
  172. attempt
  173. reduce
  174. chase
  175. force
  176. action
  177. arise
  178. exercise
  179. hide
  180. place
  181. focus
  182. tie
  183. point
  184. ground
  185. back
  186. separate
  187. lead
  188. reply
  189. direction
  190. basis
  191. comment
  192. stand
  193. participate
  194. wonder
  195. attend
  196. passion
  197. meet
  198. impact
  199. smart
  200. concentrate
  201. general
  202. official
  203. power
  204. word
  205. legal
  206. nevertheless
  207. actually
  208. eventually
  209. strength
  210. flat
  211. contain
  212. fast
  213. empty
  214. range
  215. editor
  216. ancient
  217. head
  218. career
  219. summit
  220. worth
  221. version
  222. theory
  223. theme
  224. protect
  225. cost
  226. sum
  227. earn
  228. stock
  229. valid
  230. weigh
  231. stress
  232. exchange
  233. reject
  234. accept
  235. refuse
  236. available
  237. contribute
  238. knowledge
  239. intelligent
  240. destination
  241. tradition
  242. current
  243. beforehand
  244. sense
  245. vehicle
  246. traffic
  247. travel
  248. train
  249. park
  250. bright
  251. award
  252. superior
  253. succeed
  254. rival
  255. judge
  256. belief
  257. harm
  258. repair
  259. precise
  260. dispose
  261. invent
  262. manufacture
  263. task
  264. waste
  265. represent
  266. worm
  267. mention
  268. refer
  269. tell
  270. vocabulary
  271. emerge
  272. publish
  273. consider
  274. fur
  275. certificate
  276. technology
  277. reserve
  278. beverage
  279. amount
  280. necessary
  281. maximum
  282. soil
  283. unfortunately
  284. trouble
  285. present
  286. term
  287. assume
  288. mission
  289. clear
  290. fee
  291. similar
  292. condition
  293. circumstance
  294. view
  295. per
  296. issue
  297. approve
  298. class
  299. continue
  300. date
  301. reflect
  302. odd
  303. lot
  304. attract
  305. acquire
  306. notice
  307. grant
  308. achieve
  309. accomplish
  310. leisure
  311. confuse

LEAP英単語の検証結果

 

LEAP英単語の検証結果は、、、

 

292個

 

になります。

292/1935なので四捨五入して、的中率は、、、

 

約15.1%

 

になりました!

 

前年から0.3%の微増となりました!

LEAP英単語的中単語リスト

以下が的中させた全292単語になります。 意味まで載せるとかなりの手間なのと、著作権的に怖いので、知らない単語だけ各自調べてください。

リストはこちら
  1. good
  2. time
  3. first
  4. system
  5. will
  6. patent
  7. owl
  8. choose
  9. early
  10. item
  11. price
  12. follow
  13. option
  14. complete
  15. challenge
  16. borrow
  17. information
  18. provide
  19. order
  20. long
  21. suggest
  22. note
  23. article
  24. until
  25. offer
  26. develop
  27. miss
  28. experience
  29. sell
  30. research
  31. produce
  32. save
  33. society
  34. state
  35. bear
  36. decide
  37. common
  38. spend
  39. culture
  40. enter
  41. submit
  42. household
  43. claim
  44. material
  45. improve
  46. create
  47. taste
  48. company
  49. staff
  50. certain
  51. support
  52. check
  53. happen
  54. include
  55. own
  56. share
  57. compare
  58. nature
  59. figure
  60. ready
  61. prepare
  62. chance
  63. minute
  64. jam
  65. room
  66. story
  67. mean
  68. due
  69. result
  70. way
  71. even
  72. chemical
  73. rest
  74. access
  75. perform
  76. occur
  77. environment
  78. indicate
  79. broadcast
  80. approximately
  81. recommend
  82. explain
  83. artificial
  84. habit
  85. survey
  86. evidence
  87. value
  88. government
  89. pass
  90. likely
  91. serve
  92. appear
  93. subject
  94. temperature
  95. detail
  96. advantage
  97. appropriate
  98. matter
  99. court
  100. case
  101. opportunity
  102. period
  103. pay
  104. line
  105. row
  106. passage
  107. cause
  108. affect
  109. right
  110. standard
  111. industry
  112. financial
  113. limit
  114. last
  115. care
  116. feed
  117. active
  118. flexible
  119. tend
  120. fit
  121. replace
  122. flavor
  123. proverb
  124. seek
  125. property
  126. semester
  127. stream
  128. web
  129. internal
  130. toxic
  131. corporation
  132. parallel
  133. statement
  134. outcome
  135. award
  136. technology
  137. invent
  138. achieve
  139. condition
  140. stress
  141. exercise
  142. strength
  143. custom
  144. tradition
  145. local
  146. nation
  147. cost
  148. sum
  149. fee
  150. task
  151. earn
  152. author
  153. head
  154. travel
  155. trouble
  156. issue
  157. encourage
  158. enable
  159. succeed
  160. hide
  161. repair
  162. represent
  163. contain
  164. knowledge
  165. senior
  166. graduate
  167. judge
  168. accept
  169. consider
  170. wonder
  171. seem
  172. concentrate
  173. focus
  174. allow
  175. ground
  176. view
  177. reflect
  178. intelligent
  179. bright
  180. lively
  181. empty
  182. similar
  183. increase
  184. reduce
  185. weigh
  186. lot
  187. spring
  188. recently
  189. present
  190. leisure
  191. furniture
  192. traffic
  193. yard
  194. background
  195. direction
  196. vocabulary
  197. publish
  198. reason
  199. actually
  200. therefore
  201. object
  202. refer
  203. mention
  204. reply
  205. theory
  206. accomplish
  207. sense
  208. impact
  209. religion
  210. benefit
  211. official
  212. contribute
  213. waste
  214. career
  215. separate
  216. legal
  217. compete
  218. harm
  219. destination
  220. lead
  221. rise
  222. melt
  223. progress
  224. deal
  225. refuse
  226. reject
  227. extend
  228. tie
  229. fix
  230. stretch
  231. protect
  232. burn
  233. attend
  234. participate
  235. arise
  236. generate
  237. gain
  238. acquire
  239. assume
  240. notice
  241. approve
  242. grant
  243. recall
  244. soil
  245. precise
  246. various
  247. odd
  248. valid
  249. available
  250. range
  251. general
  252. measure
  253. dozen
  254. amount
  255. circumstance
  256. current
  257. previous
  258. exchange
  259. content
  260. wake
  261. term
  262. attract
  263. confuse
  264. possibly
  265. eventually
  266. worth
  267. highlight
  268. attempt
  269. proof
  270. mission
  271. stock
  272. editor
  273. basis
  274. chase
  275. vehicle
  276. force
  277. emerge
  278. concept
  279. superior
  280. miserable
  281. passion
  282. nevertheless
  283. somehow
  284. manufacture
  285. perspective
  286. contaminate
  287. straightforward
  288. version
  289. certificate
  290. purchase
  291. priority
  292. draft

オプティマ2000の検証結果

 

オプティマ2000の検証結果は、、、

 

230個

 

になります。

230/2000なので四捨五入して、的中率は、、、

 

11.5%

 

になりました!

 

前年から0.5%の微増となりました!

オプティマ2000的中単語リスト

以下が的中させた全230単語になります。 意味まで載せるとかなりの手間なのと、著作権的に怖いので、知らない単語だけ各自調べてください。

リストはこちら
  1. will
  2. patent
  3. follow
  4. option
  5. warranty
  6. challenge
  7. complete
  8. store
  9. might
  10. product
  11. order
  12. provide
  13. electricity
  14. article
  15. suggest
  16. note
  17. end
  18. develop
  19. offer
  20. miss
  21. appliance
  22. bear
  23. close
  24. popular
  25. state
  26. common
  27. household
  28. submit
  29. chance
  30. perform
  31. result
  32. certain
  33. chemical
  34. possible
  35. nature
  36. company
  37. claim
  38. compare
  39. figure
  40. share
  41. prepare
  42. occur
  43. improve
  44. include
  45. material
  46. broadcast
  47. own
  48. rest
  49. indicate
  50. approximately
  51. minute
  52. vacuum
  53. log
  54. access
  55. mean
  56. due
  57. right
  58. value
  59. opportunity
  60. habit
  61. industry
  62. appear
  63. cause
  64. explain
  65. fit
  66. court
  67. feed
  68. seek
  69. social
  70. survey
  71. tend
  72. advantage
  73. passage
  74. shape
  75. recommend
  76. replace
  77. affect
  78. artificial
  79. detail
  80. likely
  81. matter
  82. concern
  83. flexible
  84. financial
  85. evidence
  86. still
  87. corporation
  88. row
  89. accord
  90. subject
  91. toxic
  92. appropriate
  93. internal
  94. property
  95. semester
  96. parallel
  97. outcome
  98. sequence
  99. summary
  100. handout
  101. author
  102. stress
  103. condition
  104. traffic
  105. theme
  106. consider
  107. cost
  108. melt
  109. gain
  110. accept
  111. succeed
  112. spring
  113. local
  114. official
  115. custom
  116. ground
  117. passion
  118. harm
  119. variety
  120. leisure
  121. allow
  122. separate
  123. stretch
  124. enable
  125. exchange
  126. attend
  127. fix
  128. attract
  129. force
  130. wonder
  131. repair
  132. legal
  133. worth
  134. theory
  135. soil
  136. encourage
  137. graduate
  138. waste
  139. refuse
  140. contain
  141. object
  142. foreign
  143. progress
  144. strength
  145. maximum
  146. view
  147. reserve
  148. reduce
  149. focus
  150. achieve
  151. earn
  152. chase
  153. intelligent
  154. recently
  155. ahead
  156. per
  157. notice
  158. direction
  159. measure
  160. religion
  161. term
  162. priority
  163. circumstance
  164. range
  165. publish
  166. confuse
  167. deal
  168. acquire
  169. present
  170. previous
  171. vehicle
  172. sense
  173. sum
  174. mention
  175. participate
  176. attempt
  177. represent
  178. superior
  179. similar
  180. current
  181. general
  182. ancient
  183. summit
  184. benefit
  185. concept
  186. issue
  187. concentrate
  188. assume
  189. confident
  190. precise
  191. odd
  192. available
  193. basis
  194. amount
  195. reject
  196. reflect
  197. somehow
  198. nevertheless
  199. eventually
  200. certificate
  201. award
  202. compete
  203. contribute
  204. weigh
  205. arise
  206. approve
  207. purchase
  208. emerge
  209. generate
  210. refer
  211. destination
  212. recall
  213. editor
  214. ratio
  215. mission
  216. administer
  217. accomplish
  218. valid
  219. content
  220. dispose
  221. perspective
  222. stock
  223. extend
  224. grant
  225. authentic
  226. straightforward
  227. flyer
  228. recruit
  229. diagram
  230. draft

補足

最後に動画内でも説明した補足を貼っておきます。

また、その後の検証で他の単語帳も共通テストのカバー率を調べています。 それがメインの記事ではありませんが、途中で触れているので参考にしてください。
Stock4500とターゲット・システム英単語・LEAP英単語の比較【リクエスト回】

Stock4500の特徴を、プログラミングの観点から他の単語帳との比較してアドバイス!

武田塾の逆転英単語2000を徹底レビュー・他の単語帳との被りや共通テストカバー率など【リクエスト回】【ターゲット】【システム英単語】【LEAP】

逆転英単語2000の特徴を、プログラミングの観点から他の単語帳との比較してアドバイス!

DUO3.0レビュー・主要単語帳3冊とプログラミングの配列で比較検証してみた【ターゲット1900】【システム英単語】【LEAP】【共通テストカバー率】

DUO3.0の特徴を、プログラミングの観点から他の単語帳との比較してアドバイス!

速読英単語必修編レビュー→上級編と繋げるメリットをプログラミングの検証から説明する【ターゲット】【システム英単語】【LEAP】

速読英単語をやるなら必修編→上級編と進むべき理由を、プログラミングの観点から主張。単語帳自体のレビューも掘り下げました。

ALL IN ONE徹底レビュー1・単語編・DUO3.0他との被りや問題カバー率をプログラミングで徹底検証【ターゲット】【LEAP】

ALL IN ONEのレビューや比較をプログラミングの観点から2回に分けて検証。今回は前半の単語編です。DUO3.0含む主要単語帳との比較やテストにおけるカバー率も検証しました。

まあ簡単にいうと、基礎単語が多いほど的中率は高くなる傾向があるということですね。

次回、続きの企画として、この6冊の単語帳のみが独自で当てた単語をそれぞれ割り出したいと思います。

それではまた!

なお今回の記事の動画版はこちらになります!

-共通テスト, 高校生, 高校英語

Copyright © がこない独学応援ブログ, 2024 All Rights Reserved