Sitemap

What Are Today’s AI Fundamentals?

4 min readMar 9, 2026

--

I have always believed in mastering fundamentals before diving into implementation.

But in AI today, what exactly counts as “fundamental”? Are the classical foundations still the right ones? Or has the center of gravity shifted while the syllabus remained frozen?

In this post I assert that fundamentals still matter, but many people are mastering the wrong ones.

What We Used to Mean by AI Fundamentals

Traditionally, AI fundamentals meant:

This made sense in the post-2012 deep learning era, when progress came from architectural innovation. Understanding how models learned was tightly coupled to understanding what they could do.

That era peaked some time between the publication of Attention Is All You Need and the industrialization of foundation models at organizations like Anthropic and OpenAI. Back then, not understanding backpropagation meant missing the core lever of progress.

Today, practical bottlenecks live elsewhere. The scarce resource in AI is no longer understanding gradient descent, but exercising judgment.

The Center of Gravity Has Moved

Most production AI systems are not trained from scratch. They are composed systems:

In this environment, deriving backpropagation from first principles is intellectually respectable, but it is not what determines success or failure.

The real bottlenecks now fall into four categories:

  • Scoping the right task at the right level of abstraction.
  • Communicating intent clearly enough for reliable delegation.
  • Designing evaluation when ground truth is incomplete or noisy.
  • Identifying and hardening against failures and edge cases.

None of these problems are solved by more calculus or linear algebra. That does not make the math irrelevant. It makes it insufficient.

The New Fundamentals

If “fundamental” means “cannot safely skip,” then modern AI fundamentals reduce to four disciplines. Each of these disciplines is a form of judgment under uncertainty.

Task Scoping

Not every problem is amenable to AI, and even suitable problems can be framed at the wrong level of abstraction.

Vague ambition (“build a knowledge graph of everything”) is not a task. Nor is micromanagement (“implement a red-black tree”) usually the correct abstraction layer.

The real skill is scoping correctly:

  • Is the task decomposable?
  • Is it specified clearly enough to evaluate?
  • Does it require deterministic guarantees or probabilistic adequacy?
  • Is AI the core solution, or merely glue?

Senior engineers must unlearn some habits. New practitioners must develop judgment through experience. And everyone must recalibrate continuously as the capabilities of AI systems evolve.

Clear Communication

Working with AI means delegating execution.

Traditional programming languages forced clarity through syntax. Today, vibe coding removes that constraint. Modern AI systems respond confidently to vague instructions, whether or not the instructions are well-specified. You will receive output, but not necessarily what you intended.

The burden shifts to intent specification:

  • Defining constraints explicitly.
  • Clarifying trade-offs.
  • Providing examples and counter-examples.
  • Stating evaluation criteria in advance.

We can no longer rely on compilers to reject ambiguous requests. Instead, ambiguity now leads to systems returning plausible nonsense.

Evaluation

Evaluation is now central, not peripheral.

Often there is no clean ground truth. After all, if we already knew all the answers, why would we be asking AI for help? But we still need evaluation. Without measurement, iteration is blind.

That means:

  • Creating small, high-quality gold sets.
  • Sampling and labeling outputs regularly.
  • Defining measurable objectives.
  • Tracking regressions across iterations.
  • Measuring cost, latency, and failure rate together.

Evaluation is never perfect. As with all modeling, it is a trade-off between realism, coverage, and simplicity.

Failures and Edge Cases

AI systems look impressive in demos because demos showcase common use cases and happy paths. In contrast, production systems tend to fail at the margins.

Edge cases are structural weaknesses:

  • Distribution shifts.
  • Adversarial inputs.
  • Rare but high-impact errors.
  • Silent degradations over time.

The most valuable insights often come from studying failures. Undetected failure modes are latent liabilities.

Lower build cost increases deployment, which increases failure surface area. Investment in quality assurance becomes more critical than ever. It is one thing to build software that appears functional, and another to build software that behaves reliably under pressure.

Theory Still Matters

Foundational theory does not disappear. It becomes infrastructure.

Physics remains valuable even when engineers do not re-derive Newton. Database theory remains foundational even when product teams do not implement B-trees from scratch.

However, we should not confuse historical bottlenecks with permanent fundamentals.

Indeed, there is now a generational mismatch: some senior researchers are optimized for architectural innovation, while many newer practitioners are optimized for tool fluency without mental models. Unfortunately, it is easy for each group to view the other as unserious.

The deeper shift is that difficulty migrated from “how models learn” to “how systems behave in the world.” The syllabus has not caught up.

Career Implications

Learning the wrong fundamentals is now career-limiting.

If you invest in knowledge that no longer constrains progress, you will watch others with less theoretical depth ship systems that matter more.

That frustration is understandable. It is also diagnostic.

Depth still matters. But modern depth is interdisciplinary and operational:

  • Systems thinking.
  • Risk analysis.
  • Product framing.
  • Evaluation design.
  • Failure modeling.

These skills will distinguish the people who build durable systems from those who only produce impressive demos.

Conclusion

AI fundamentals have not disappeared, but they have shifted.

The new fundamentals are scoping, communication, evaluation, and failure analysis. AI has not become shallow. It has become systemic.

If your fundamentals do not help you predict where a system breaks, they are no longer fundamental.

--

--