Purpose with To, For, and In Order To

LESSON

Technical English: Gerunds and Infinitives in Engineering Work

010 20 min beginner

Purpose with To, For, and In Order To

By the end of this lesson, you will be able to...

  • Connect an engineering action to its purpose with to + verb.

  • Use for + noun or for + -ing when the purpose describes a tool, use, or activity.

  • Use in order to + verb when the purpose needs extra emphasis, and distinguish purpose from reason and result.

Idea in one sentence: To points from an action toward its goal, for names a use or activity, and in order to makes the goal especially explicit.

Core Insight

A database migration is slow in staging. The team wants to change one thing at a time and explain why each change exists. A short plan might say:

We added an index to speed up reads.
We created a dashboard for monitoring query latency.
We tested the rollback path in order to reduce deployment risk.

Each sentence connects an engineering action to a purpose. The connection is not decoration. It tells the reader what the action is meant to achieve:

Without the purpose, a plan can become a list of unexplained actions:

We added an index.
We created a dashboard.
We tested the rollback path.

Those sentences report actions, but the reader still has to guess the design. Purpose phrases make the next action inspectable: they connect a change to the problem it is trying to address.

The Small Situation

The payment service has slow reads during a traffic increase. The team proposes a small migration with four steps:

  1. add an index to the request table;
  2. create a dashboard for query latency;
  3. run the migration in staging;
  4. test rollback in order to limit the risk of the production deploy.

The first draft was translated too literally:

We added an index for speed up reads.
We created a dashboard to monitoring query latency.
We tested the rollback path for reduce deployment risk.

The reader can guess the meaning, but the purpose patterns are mixed up. The repaired plan is:

We added an index to speed up reads.
We created a dashboard for monitoring query latency.
We tested the rollback path in order to reduce deployment risk.

The choice depends on what comes after the purpose marker:

Marker What follows it Example Main job
to base verb to speed up reads direct purpose of an action
for noun, noun phrase, or activity for monitoring query latency use, function, or activity
in order to base verb in order to reduce risk explicit or slightly more formal purpose

The form after the marker is a useful mechanism check. To and in order to open a verb phrase. For is a preposition, so it needs a noun-like object. An -ing form can name an activity after for.

The Naive Idea

The tempting rule is:

Any purpose can use for followed by the base verb.

That produces:

We added an index for speed up reads.

The problem is not the purpose itself. The problem is the shape after for. For cannot be followed by the base verb speed in this sentence. Use the direct purpose pattern:

We added an index to speed up reads.

Or make the purpose a noun-like activity:

We added an index for faster reads.
We added an index for speeding up reads.

The first alternative is usually the cleanest with an engineering action. The second can be grammatical, but it treats “speeding up reads” as an activity and may sound less direct. For is especially natural when the purpose belongs to a thing or names a use:

This dashboard is for monitoring query latency.
This queue is for processing background jobs.
This script is for checking migration files.

Another tempting rule is to use in order to everywhere because it sounds more complete. It is correct in many purpose sentences, but it adds weight:

We added an index in order to speed up reads.

This is possible, but ordinary technical prose usually prefers:

We added an index to speed up reads.

Use the longer form when the explicit goal matters, when a contrast is being made, or when the sentence needs a careful plan-like tone. Do not use extra words merely to make a short purpose sound more grammatical.

The Mechanism Step by Step

Think of a purpose phrase as a small arrow in the sentence:

engineering action -> intended goal

The action comes first. The purpose explains what the writer wants that action to accomplish.

Step 1: identify the action

Start with a complete report:

We added an index.

This tells us what the team changed, but not why.

Step 2: identify the intended goal

Ask what the team wanted the index to do:

The index should make reads faster.

The goal is an action, make reads faster, and the subject of that goal is understood to be the team or the index change.

Step 3: attach a direct purpose

Use to + base verb:

We added an index to make reads faster.

The purpose phrase is compact because the subject is understood from context. The team added the index, and the index is intended to make reads faster.

Step 4: choose a noun-like use when the object is a tool

Now change the action. Instead of reporting what the team did, describe a dashboard's function:

We created a dashboard.
The dashboard is for monitoring query latency.

Here, monitoring query latency names the activity for which the dashboard exists. The dashboard is to monitor query latency is possible in some contexts, but is for monitoring is the clearer use description.

Step 5: make the goal explicit when the plan needs emphasis

Suppose the team is comparing two safeguards:

We tested the rollback path to reduce deployment risk.
We tested the rollback path in order to reduce deployment risk, not to delay the release.

The second sentence makes the intention more deliberate and sets up a contrast. The longer marker is useful because the writer wants the reader to notice the goal.

A Worked Migration Trace

Let us trace one change from pressure to decision. The input is a slow query during a staging load test.

Stage System or team state Sentence Purpose relationship
Input Reads become slow when the request table grows. Reads became slow during the load test. This reports the symptom, not a purpose.
Transition The team adds an index as a response. We added an index to speed up reads. To + verb states the intended goal.
Intermediate state The team needs visibility during the next test. We created a dashboard for monitoring query latency. For + -ing describes the dashboard's use.
Output or decision The team wants a safer production change. We tested rollback in order to reduce deployment risk. In order to + verb emphasizes the deliberate goal.
Evidence boundary The load test shows no improvement. The index did not speed up reads. This is a result, not the purpose. The purpose phrase did not guarantee success.

The full plan can therefore say:

Reads became slow during the load test, so we added an index to speed up reads. We created a dashboard for monitoring query latency. We tested rollback in order to reduce deployment risk, but the first load test did not show an improvement.

The last clause is important. Purpose describes intention. It does not describe what actually happened. The team may add an index to speed up reads and discover that the query still uses a different bottleneck.

Purpose, Reason, and Result

These three relationships are easy to mix up in an incident or design note:

We added an index to reduce latency.
We added an index because latency was high.
We added an index, so latency fell.

The first gives the intended purpose. The second gives the reason or cause for the decision. The third gives a result that happened afterward. They can all be true, but they answer different questions.

This distinction helps prevent unsupported claims. If the measurement is not complete, write:

We added an index to reduce latency, but we have not measured the production result yet.

Do not replace the purpose with a result:

We added an index to reduce latency, so latency fell.

That sentence claims a successful result. Use it only when the evidence supports it.

Where Each Pattern Fits

To + verb: the default direct purpose

Use it after a concrete action when the same team or person is understood to have the goal:

We reduced batch size to limit memory use.
The worker waits before retrying to avoid a retry storm.
Maya opened the trace to find the first failing request.

The verb after to stays in the base form: to limit, to avoid, to find. Do not write to limiting, to avoided, or to finds in this pattern.

For + noun or for + -ing: use, function, or activity

Use for when the purpose is attached to a thing, a category of use, or an activity:

We created a runbook for rollback decisions.
This worker is for processing image jobs.
The team uses a canary for detecting unsafe changes early.

The first uses a noun phrase, rollback decisions. The second and third use -ing activities. In a direct sentence about why a team performed an action, to + verb is often more natural:

We created a runbook to guide rollback decisions.

Both forms can be correct, but the focus changes slightly. For describes what the runbook is for; to describes the goal of the creation action.

In order to + verb: an explicit purpose

Use it when the purpose deserves emphasis or the writing is deliberately careful:

We paused the rollout in order to confirm the rollback signal.
We kept the old parser in place in order not to lose historical data.

The negative form is in order not to + verb. For ordinary short updates, to is usually enough:

We paused the rollout to confirm the rollback signal.

The longer form is not more correct by default. It is a choice about emphasis and rhythm.

Common Confusions

Confusion: for + base verb

For is a preposition, so do not write:

We added a cache for reduce latency.

Write We added a cache to reduce latency or We added a cache for lower latency. If the purpose is an activity, for reducing latency may work, but use it when that activity is the intended focus.

Confusion: to always means purpose

Not every to + verb phrase expresses purpose:

We plan to migrate the table.

Here, to migrate is the content of the plan. In We changed the schema to reduce lock time, it expresses the purpose of the change. Look at the word before the phrase and ask whether it is a plan, need, decision, or concrete action whose goal is being explained.

Confusion: purpose is the same as result

We added an index to speed up reads says what the team wanted. It does not prove that reads became faster. Add measurements separately:

The index was intended to speed up reads, but p95 latency stayed the same.

Confusion: use in order to for every sentence

In order to can sound formal or heavy in a short status update. Prefer to unless you need emphasis, contrast, or an especially explicit plan.

Cost, Limits, and Signals

Purpose phrases buy explanatory value. They tell the reader why an action is present and make a migration plan easier to review. The trade-off is that every purpose is a claim about intention. If a writer adds a purpose that the team never agreed on, the sentence can make an accidental promise or hide uncertainty.

Purpose does not prove that the action is necessary, that the design is good, or that the goal was reached. An index can be added to reduce latency and still be the wrong index. A dashboard can be for monitoring latency and still omit the important query. A rollback test can be intended to reduce risk and still fail to cover the real failure mode.

The boundary signal is observable evidence:

We added an index to reduce latency; the query plan still uses a full scan.
We created a dashboard for monitoring latency; it now shows p95 and error rate.
We tested rollback in order to reduce risk; the restore completed within the release window.

The first sentence reveals a failed assumption. The second shows that the monitoring purpose is becoming useful. The third connects the purpose to a readiness signal. Keep intention and evidence separate when the distinction matters.

Check Your Understanding

Check: A team added an index because it wanted reads to become faster. Which sentence uses the direct purpose pattern?

Think first, then reveal.

Answer: The team added an index to speed up reads. To is followed by the base verb speed. For speed up reads is not grammatical because for cannot take the base verb in that shape.

Check: A dashboard's function is monitoring queue latency. Which sentence describes what the dashboard is for?

Think first, then reveal.

Answer: The dashboard is for monitoring queue latency. Here for is followed by the -ing activity that names the dashboard's use.

Check: A design note wants to emphasize that the team tested rollback as a deliberate safety step. Which sentence fits?

Think first, then reveal.

Answer: The team tested rollback in order to reduce deployment risk. The longer form makes the goal explicit. To reduce deployment risk is also correct when no extra emphasis is needed.

Check: The team added a cache to reduce latency, but measurements are not complete. What can the writer safely claim?

Think first, then reveal.

Answer: The team added a cache to reduce latency, but the result is not measured yet. The purpose reports intention; it does not claim that latency actually fell.

Practice

Choose the purpose pattern that fits, then complete each sentence.

  1. We added a composite index ___ reduce lookup time. (direct goal)
  2. This script is ___ checking migration files before review. (tool use)
  3. We paused the rollout ___ confirm the rollback signal, not to cancel the release. (emphasized goal)
  4. We added the index because the query was slow. Rewrite the sentence so it states the team's intended purpose instead of the reason.
  5. Write one sentence that reports a purpose and a separate sentence that reports the measured result.

Model answers:

  1. We added a composite index to reduce lookup time.
  2. This script is for checking migration files before review.
  3. We paused the rollout in order to confirm the rollback signal, not to cancel the release.
  4. We added the index to speed up the query.
  5. We added a cache to reduce read latency. In the staging test, p95 latency fell from 240 ms to 160 ms.

For the final task, change the numbers or the technical object, but keep the two jobs separate: the first sentence gives intention; the second gives evidence.

Daily Practice Lines

Repeat these during the day. The third line revisits the responsibility pattern from lesson 009.

When the lines feel easy, replace one technical object: query, worker, queue, cache, migration, or alert. Keep to with a base verb and for with a noun or -ing activity.

Resources

Key Takeaways

PREVIOUS Good At, Responsible For, and Interested In NEXT Review: Purpose and Responsibility