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
Bayesian OptimisationGradient DescentHyperparameter TuningOptimisation TechniquesResource Allocation

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 The Semantic Triangle: Mock Screens, PoC Backend, and Spec File Beat Any One Alone

The Semantic Triangle: Mock Screens, PoC Backend, and Spec File Beat Any One Alone

Three artefacts. Three reduced ambiguities. One projection task instead of three inventions.

James Phoenix
James Phoenix
Cover Image for Contracts Parallelize Agents

Contracts Parallelize Agents

If you’re waiting for Agent A to finish before starting Agent B, you’re wasting time. Define the contract between them and dispatch both now.

James Phoenix
James Phoenix