Optimisation

James Phoenix
James Phoenix

Finding the best solution under constraints.


Engineering Applications

  • Resource Allocation: CPU, memory, budget distribution
  • Performance Tuning: Finding optimal configurations
  • ML Training: Gradient descent, hyperparameter tuning
  • Scheduling: Task assignment, load balancing
  • Cost Optimisation: Cloud spend, infrastructure sizing

Core Concepts

Objective Function

The thing you’re trying to minimise or maximise.

minimise f(x) subject to constraints g(x) ≤ 0

Local vs Global Optima

  • Local: Best in neighbourhood
  • Global: Best overall

Many problems have many local optima — need strategies to escape.

Gradient Descent

x_new = x_old - α * ∇f(x)

Move in the direction of steepest descent.

  • α (learning rate): Step size
  • ∇f: Gradient (direction of steepest ascent)

Convexity

A convex problem has one global optimum — much easier to solve.
Non-convex problems require more sophisticated approaches.


Optimisation Strategies

Strategy When to Use
Grid Search Small parameter space, need exhaustive coverage
Random Search Large space, diminishing returns from exhaustive
Gradient Descent Differentiable objective
Bayesian Optimisation Expensive evaluations, need sample efficiency
Genetic Algorithms Complex landscapes, no gradient available

System Design Connections

Hyperparameter Tuning

# Grid search
for lr in [0.001, 0.01, 0.1]:
    for batch_size in [32, 64, 128]:
        evaluate(lr, batch_size)

Cost-Performance Trade-offs

minimise: cost
subject to: latency_p99 ≤ 100ms
            availability ≥ 99.9%

Auto-tuning

Systems that optimise their own parameters based on observed performance.

Leanpub Book

Read The Meta-Engineer

A practical book on building autonomous AI systems with Claude Code, context engineering, verification loops, and production harnesses.

Continuously updated
Claude Code + agentic systems
View Book

Key Insight

Most engineering decisions are optimisation problems in disguise:

  • “What instance type should I use?” → Cost-performance optimisation
  • “How many retries?” → Reliability-latency trade-off
  • “Cache size?” → Memory-latency trade-off

Framing problems as optimisation clarifies the trade-offs.


Related

Topics
Control TheoryData SciencePerformance

Newsletter

Become a better AI engineer

Weekly deep dives on production AI systems, context engineering, and the patterns that compound. No fluff, no tutorials. Just what works.

Join 306K+ developers. No spam. Unsubscribe anytime.


More Insights

Cover Image for Computer Use Kills the Config Tax, Not the Trust Tax

Computer Use Kills the Config Tax, Not the Trust Tax

My sister hates job applications because they make her re-submit information she already has. That is the same pain as API app review, and the same agent that lives in my codebase can dissolve both. This feels insane, and it is the new default shape of the work.

James Phoenix
James Phoenix
Cover Image for Sentry Errors Should Spawn Agents on Your Own Machine

Sentry Errors Should Spawn Agents on Your Own Machine

A new production error is an event. Events should trigger work, not sit in a dashboard. So I wired Sentry to spawn a coding agent on my own hardware, point it at my exact stack, and open a draft PR with a fix.

James Phoenix
James Phoenix