change / improve のコロケーション: 変える・改善する・品質を上げる
B1-B2向けに、change と improve の自然なコロケーションを日常会話、ビジネス会話、ソフトウェアエンジニア実務の場面別に整理する。
change / improve の中心イメージ
change の中心は、何かを別の状態にすること。
improve の中心は、何かを前より良くすること。
change the plan 計画を変える
change the behavior 挙動を変える
change the default setting デフォルト設定を変える
change from A to B AからBに変える
improve performance 性能を改善する
improve reliability 信頼性を上げる
improve test coverage テストカバレッジを改善する
improve the user experience ユーザー体験を改善する
change は中立的。「良い・悪い」はまだ言っていない。単に形、状態、予定、設定、挙動、方向が変わる。
improve は評価が入る。「前より良くなる・良くする」という意味を含む。
ソフトウェアエンジニア実務では、change は API behavior、schema、config、default setting、requirements、scope に出やすい。improve は performance、reliability、observability、test coverage、developer experience、onboarding flow に出やすい。
日常会話で使う change / improve
change plans / change the time / change your mind
| 表現 | 使う場面 | 例文 |
|---|---|---|
| change plans | 予定を変える | We had to change plans. |
| change the time | 時間を変える | Can we change the time? |
| change the date | 日付を変える | Let’s change the date. |
| change your mind | 気が変わる | I changed my mind. |
| change from A to B | AからBへ変える | I changed from coffee to tea. |
| make a change | 変更する | I want to make a small change. |
change は「別の形にする」。日常では予定、時間、場所、服、習慣、気持ちに使いやすい。
Can we change the time?
時間を変えられますか。
I changed my mind.
気が変わりました。
change my mind は「考えを変える」。日本語の「気が変わった」に近い。
improve your English / improve over time
| 表現 | 使う場面 | 例文 |
|---|---|---|
| improve your English | 英語を上達させる | I want to improve my English. |
| improve your health | 健康を良くする | Sleep can improve your health. |
| improve over time | 時間とともに良くなる | My pronunciation improved over time. |
| improve a lot | かなり良くなる | Your writing has improved a lot. |
| show improvement | 改善が見える | He is showing improvement. |
| room for improvement | 改善の余地 | There is room for improvement. |
improve は、能力、健康、状況、結果が前より良くなるときに使う。
I want to improve my English.
英語を上達させたいです。
Your writing has improved a lot.
あなたの文章はかなり良くなりました。
improve my English は自然だが、upgrade my English は普通は不自然。upgrade はプラン、システム、バージョン、機材などに寄る。
get better / make better
| 表現 | ニュアンス | 例文 |
|---|---|---|
| get better | 自然に良くなる | It will get better. |
| make it better | それを良くする | We can make it better. |
| improve it | 改善する | We can improve it. |
| make progress | 前進する | You’re making progress. |
| change for the better | 良い方向に変わる | Things changed for the better. |
| change for the worse | 悪い方向に変わる | The situation changed for the worse. |
get better は会話でとても自然。improve は少し整理された言い方で、能力、品質、結果を説明しやすい。
It is getting better.
良くなってきています。
We can improve it.
改善できます。
日常会話なら get better。学習記録や仕事の説明なら improve が使いやすい。
ビジネス会話で使う change / improve
change the timeline / requirements / scope
ビジネスでは、change は予定、条件、範囲、方針が変わるときに使う。
We need to change the timeline.
Can we change the requirements before implementation starts?
The client changed the scope after the kickoff.
This change may affect the release date.
change は中立的なので、変更の影響を別に説明する必要がある。
This change reduces risk.
This change increases the implementation cost.
「変えた結果どうなるか」を後ろに足すと、会議で伝わりやすい。
make a change / request a change
名詞では change がよく出る。
I made a small change to the proposal.
The customer requested a change.
Please review the change before Friday.
We should document the reason for the change.
make a change は「変更する」。request a change は「変更を依頼する」。PRでもビジネス文書でも使える。
improve the process / communication / customer experience
improve は品質や成果を良くするときに使う。
We need to improve the process.
This should improve team communication.
The new flow improves the customer experience.
We are trying to improve response time.
improve は良くなる方向を含むので、指標と相性が良い。
improve response time
improve customer satisfaction
improve conversion rates
improve operational efficiency
「何が良くなるのか」を具体的な名詞で言うと、ビジネス英語として強い。
make improvements / continuous improvement
名詞では improvement も使う。
We made several improvements to the onboarding flow.
There is still room for improvement.
This is part of our continuous improvement effort.
The improvement is visible in the latest metrics.
make improvements to ... は「…に改善を加える」。room for improvement は「改善の余地」。
ソフトウェアエンジニア実務で使う change / improve
Standup
standup では、変更内容と改善目的を短く分ける。
I changed the default setting for new projects.
I need to change the API behavior based on the feedback.
I'm improving test coverage for the payment flow.
I'm working on improving the onboarding experience.
changed X は「何を変えたか」。improving X は「何を良くしているか」。
PR review
PRでは、change は差分そのもの、improve は狙った効果を説明する。
This PR changes the validation logic.
This change makes the error message more specific.
I made a small change to avoid a breaking change.
This improves readability without changing behavior.
without changing behavior は重要。リファクタリングで「挙動は変えていない」と伝える定番。
This refactor improves readability without changing behavior.
このリファクタリングは挙動を変えずに可読性を改善します。
API / schema / config
破壊的変更や外部影響がある場合は change を慎重に使う。
This changes the API response shape.
We should avoid changing the schema during the incident.
The migration changes the column type from text to uuid.
Can we change the feature flag default to off?
change from A to B は移行や型変更で便利。
The migration changes the status field from a string to an enum.
Performance / reliability / observability
品質改善は improve + quality noun が基本。
This cache should improve performance.
The retry logic improves reliability.
We need to improve observability before launch.
The new logs improve our ability to debug failures.
improve observability は「観測しやすくする」。ログ、メトリクス、トレースを増やす文脈で使える。
Incident / support
障害対応では、変更を加える前に影響を明確にする。
We should not change the config during the incident.
This change could make the incident worse.
After the incident, we should improve alerting.
The postmortem lists improvements to prevent recurrence.
make the incident worse は「障害を悪化させる」。improve alerting は「アラートを改善する」。
Documentation / onboarding / DX
開発者向けの改善にも improve が使いやすい。
This improves the setup instructions.
We improved the onboarding flow for new engineers.
The new error message improves developer experience.
We changed the docs structure to make it easier to scan.
change the docs structure は構成を変える。improve the docs は結果として読みやすくする。
似た表現との違い
change / improve
change は別の状態にする。improve は良い状態にする。
We changed the API behavior.
APIの挙動を変えました。
We improved the API error messages.
APIのエラーメッセージを改善しました。
change は良くなったとは限らない。improve は良くなった前提。
change / update
update は「新しくする・最新にする・情報を更新する」。
I changed the plan.
計画を変えました。
I updated the document.
ドキュメントを更新しました。
change the document も言えるが、日付、説明、内容を新しい状態にするなら update the document が自然。
improve / fix
fix は壊れているものやバグを直す。improve は壊れていなくても良くする。
This fixes a bug in the login flow.
これはログインフローのバグを修正します。
This improves the login flow.
これはログインフローを改善します。
バグなら fix。品質向上なら improve。両方なら fix the bug and improve the error message と分ける。
change / modify / adjust
modify は少し硬く「部分的に修正する」。adjust は微調整。
We changed the default timeout.
デフォルトのタイムアウトを変えました。
We modified the query to reduce load.
負荷を下げるためにクエリを修正しました。
We adjusted the timeout from 30 seconds to 20 seconds.
タイムアウトを30秒から20秒に調整しました。
ざっくり変えるなら change。部分的に手を入れるなら modify。数値や設定を少し合わせるなら adjust。
improve / enhance / optimize
enhance は機能や価値を強める。optimize は性能や効率を最適化する。
We improved reliability.
信頼性を改善しました。
We enhanced the search feature.
検索機能を強化しました。
We optimized the query.
クエリを最適化しました。
一般的な「良くする」は improve。機能を強化するなら enhance。速度、コスト、メモリなどを詰めるなら optimize。
例文シャドーイング
短い文を声に出して、change / improve の後ろまでまとめて読む。
Can we change the time?
I changed my mind.
We had to change plans.
I want to improve my English.
Your writing has improved a lot.
There is room for improvement.
We need to change the timeline.
This PR changes the validation logic.
This improves readability without changing behavior.
We need to improve observability before launch.
次に、実務寄りの1分スピーチにする。
This PR changes the validation logic for the signup form.
The goal is to improve the error messages without changing the API behavior.
I also improved test coverage for edge cases.
If the team agrees, we can change the default setting in a separate PR.
想起練習クイズ
日本語を見て、英語を声に出す。答えはすぐ見ずに、3秒だけ思い出す。
| 日本語 | 答え |
|---|---|
| 時間を変えられますか | Can we change the time? |
| 気が変わりました | I changed my mind. |
| 予定を変える必要がありました | We had to change plans. |
| 英語を上達させたいです | I want to improve my English. |
| あなたの文章はかなり良くなりました | Your writing has improved a lot. |
| 改善の余地があります | There is room for improvement. |
| タイムラインを変える必要があります | We need to change the timeline. |
| このPRはバリデーションロジックを変えます | This PR changes the validation logic. |
| 挙動を変えずに可読性を改善します | This improves readability without changing behavior. |
| ローンチ前に observability を改善する必要があります | We need to improve observability before launch. |
次回予告: remove / delete
次回は remove と delete をまとめて扱う。
remove は「取り除く」。delete は「削除する」。どちらも消す動きだが、remove は場所や構成から外すこと、delete はデータやファイルを消すことに寄る。
remove an item
remove a dependency
delete a file
delete a record
ソフトウェアエンジニア実務では、remove unused code、remove a feature flag、delete a branch、delete stale data、soft-delete a record を整理する。
参考資料
- Oxford Learners Dictionaries: Using the Oxford Collocations Dictionary
- Cambridge Dictionary: collocation
- Cambridge Dictionary: change
- Cambridge Dictionary: improve
- WordReference: English Collocations for change
- WordReference: English Collocations for improve
- SKELL: examples and collocations for learners of English
- COCA: Corpus of Contemporary American English
- 1. 🗣️get のコロケーション: 日常会話から開発現場まで
- 2. 🛠️make のコロケーション: 決める・変える・前に進める
- 3. ✅do のコロケーション: 作業・調査・レビューを進める
- 4. 📝take のコロケーション: 時間・責任・行動を引き受ける
- 5. 🧩have のコロケーション: 状態・予定・問題を持つ
- 6. 📣give のコロケーション: 情報・権限・支援を渡す
- 7. 🧭go / come のコロケーション: 進む・戻る・話題に上がる
- 8. ⚙️put / set のコロケーション: 置く・保留する・設定する
- 9. 🧷keep / hold のコロケーション: 保つ・追跡する・待つ
- 10. 📦bring / carry のコロケーション: 持ち込む・話題にする・実行する
- 11. 🔁turn / pass のコロケーション: 切り替える・判明する・渡す
- 12. ⚙️run / work のコロケーション: 実行する・動く・取り組む
- 13. 🤝meet / join のコロケーション: 会う・満たす・参加する・結合する
- 14. 🔎show / prove のコロケーション: 示す・見せる・証明する
- 15. 🧱support / back のコロケーション: 支える・対応する・裏づける・戻す
- 16. ✅check / verify のコロケーション: 確認する・検証する・正しさを確かめる
- 17. 🧐review / inspect のコロケーション: 見直す・レビューする・詳しく調べる
- 18. 🧪analyze / investigate のコロケーション: 分析する・原因を調査する
- 19. 🧭decide / choose のコロケーション: 判断する・選ぶ・方針を決める
- 20. 🔧change / improve のコロケーション: 変える・改善する・品質を上げる
- 21. 🗑️remove / delete のコロケーション: 取り除く・削除する・データを消す
- 22. ➕add / insert のコロケーション: 追加する・差し込む・行を入れる
- 23. 🔗attach / connect のコロケーション: 添付する・接続する・関係づける
出典: Oxford Collocations Dictionary / Cambridge Dictionary / WordReference / SKELL / COCA