Skip to main content
Concept #119

What Is AI?

Cutting through the hype to understand the technology that's already changed your job β€” and is about to change it more.

Educational content for accountants learning AI β€” not technology advice or a substitute for professional judgment. Always verify AI outputs against primary sources before relying on them in client or firm work.

Why This Matters

You've heard the word a thousand times this year. Your firm's leadership talks about "AI strategy" in the same breath as "digital transformation." Your accounting software added an "AI-powered" button you're not sure you should click. Recruiters ask about your "AI fluency" in interviews. And somewhere in the back of your mind is the question nobody wants to ask out loud: what does this actually mean for me?

This module starts at the very beginning, on purpose. Before we talk about AI drafting journal entries or flagging fraudulent transactions, you need a rock-solid, no-hype understanding of what AI actually is β€” what it can do, what it can't, and why the distinction matters enormously for anyone whose job involves judgment, numbers, and other people's money.

By the end of this lesson, you will be able to explain AI more clearly than most people who talk about it for a living.

The One-Sentence Definition

Strip away the science fiction, the marketing, and the anxiety, and you get something surprisingly simple:

ARTIFICIAL INTELLIGENCE (AI):

The ability of a computer system to perform tasks that have historically required human judgment β€” recognizing patterns, understanding language, making predictions, and generating new content β€” by learning from data rather than following a fixed set of rules.

That last phrase β€” learning from data rather than following a fixed set of rules β€” is the single most important idea in this entire lesson. Hold onto it. Everything else builds on it.

The Calculator vs. The Colleague

Why "rules" isn't the same as "intelligence."

Every computer you've ever used before AI ran on explicit rules. A tax calculator doesn't "understand" the tax code β€” a programmer wrote: if income is between $X and $Y, multiply by this rate, subtract that amount. Change one number in the tax law, and a human has to go back and rewrite the rule.

AI works differently. Instead of a programmer writing every rule by hand, an AI system is shown enormous amounts of data and learns the patterns itself.

Traditional Software (Rule-Based)

  • A human writes explicit rules: "IF transaction > $10,000 AND category = wire transfer THEN flag for review"
  • Every rule must be manually written and updated
  • Cannot handle situations the programmer didn't anticipate
  • Completely consistent β€” same input always gives same output

Example: A calculator, a payroll withholding table, tax software's core bracket logic.

AI (Learning-Based)

  • A human provides data and an objective: "Here are 2 million past transactions. Learn to tell fraud apart."
  • The system discovers patterns on its own β€” including subtle ones no programmer would write a rule for
  • Can generalize to new, unseen situations β€” but can also be wrong in ways that are hard to predict

Example: Fraud detection, spam filters, ChatGPT, image recognition.

The practical accounting distinction: Your tax software's bracket calculations are rule-based β€” they should be 100% correct, every time, because tax brackets are exact numbers written into law. An AI tool that flags "this expense report looks unusual" is learning-based β€” it's making a probabilistic judgment based on patterns, and it can be wrong. Knowing which kind of system you're dealing with tells you how much to trust it.

The Three Building Blocks

Every AI system β€” from a simple spam filter to ChatGPT β€” is built from the same three ingredients working together.

1. Data

The raw material. Numbers, text, images, transaction records, financial statements, emails β€” anything the system can learn patterns from.

Accounting example: Millions of historical invoices, labeled as "paid on time" or "paid late," used to predict which new invoices are at risk of late payment.

2. Algorithms

The instructions for how the system processes that data and searches for patterns. Different algorithms are suited to different types of problems β€” some are good at finding patterns in numbers, others at understanding the structure of language.

3. Models

The result of running an algorithm over data long enough that it has "learned" the patterns. The model is what actually makes predictions once training is complete β€” it's the trained, reusable output of the whole process.

THE RELATIONSHIP:

Data + Algorithm β†’ (training) β†’ Model

Model + New Input β†’ (inference) β†’ Prediction / Output

Training happens once (or periodically). Inference happens every single time you use the tool β€” every time you ask ChatGPT a question or every time your accounting software flags a transaction.

How AI Actually Learns: Three Approaches

Not all AI learns the same way. Understanding these three approaches explains why some AI tools need labeled examples and others don't, and why some AI improves through trial and error rather than being taught directly.

1. Supervised Learning

Humans provide labeled examples. The system learns the relationship between the input and the correct answer.

"Here are 50,000 transactions. We've labeled each one 'fraudulent' or 'legitimate.' Learn what separates them."

Most business and accounting AI uses supervised learning: fraud detection, credit scoring, expense categorization, bad debt prediction.

2. Unsupervised Learning

No labels are provided. The system finds hidden structure or clusters in the data on its own.

"Here are all of our customers' purchasing patterns. Find natural groupings we didn't know existed."

Used for: customer segmentation, anomaly detection (finding "this transaction doesn't look like any cluster we've seen" without ever defining fraud explicitly), discovering unexpected spending patterns.

3. Reinforcement Learning

The system learns through trial and error, receiving "rewards" for good outcomes and "penalties" for bad ones β€” refining its behavior over many, many attempts.

This is how AlphaGo learned to beat human champions at Go, and it's part of how modern chatbots like ChatGPT are fine-tuned after their initial training β€” human reviewers rate responses, and the system adjusts toward producing more highly-rated answers.

The Three Kinds of Intelligence AI Delivers

For business and accounting purposes, it helps to sort AI capabilities into three categories based on what question they answer. This framing is one of the most useful mental models you'll carry into the rest of this course.

Descriptive

"What happened?"

Search, classification, summarization.

Summarizing a 40-page lease. Classifying expenses. Searching prior-year workpapers.

Predictive

"What's likely to happen?"

Forecasting, anomaly detection, scoring.

Cash-flow forecasts. Bad-debt scoring. Flagging anomalous transactions.

Prescriptive

"What should we do about it?"

Recommendations, optimization.

Optimal depreciation method. Which invoices to pay first given cash and discounts.

Notice the progression: descriptive AI tells you about the past, predictive AI tells you about the likely future, and prescriptive AI tells you what to do about that future. Most of the AI tools embedded in accounting software today are descriptive or predictive. Prescriptive AI β€” genuine recommendation engines β€” is the newer, faster-growing frontier.

AI Type Classifier

Sort each accounting scenario by the question it answers: Descriptive (what happened?), Predictive (what's likely?), or Prescriptive (what should we do?).

Descriptive
Predictive
Prescriptive

Summarizing a 40-page lease into five key terms

Forecasting next quarter's cash flow from historical patterns

Recommending which invoices to pay first to capture early-pay discounts

Auto-classifying an expense as "travel" vs. "meals"

Scoring which customers are likely to become uncollectible

Generative AI: The Newest Branch

Generative AI is the subset of AI that creates new content β€” text, code, images, audio, video β€” rather than just classifying or predicting from existing content. It's the branch responsible for almost all of the AI conversation since 2022, and it works differently enough from earlier AI that it deserves its own explanation.

Earlier AI (predictive / descriptive)

Input: A transaction record

Output: A category label ("fraudulent" / "legitimate")

The output is a choice from a fixed, known set of options.

Generative AI

Input: "Summarize this 40-page lease in plain English"

Output: A brand-new paragraph that never existed before, generated word by word.

The output is created, not selected.

WHAT MAKES THIS POSSIBLE: Large Language Models (LLMs)

Tools like ChatGPT, Claude, and Copilot are built on LLMs β€” models trained on enormous amounts of text that learn to predict "what word is statistically most likely to come next" given everything written so far. Do that prediction well enough, over and over, and the result reads like fluent, coherent, often genuinely useful text.

This single mechanism β€” predicting the next word β€” is the entire engine behind drafting emails, summarizing documents, writing code, explaining tax rules in plain language, and answering questions about your data.

Real Accounting Examples

  • Drafting a first-pass client engagement letter
  • Summarizing changes between last year's and this year's revenue recognition policy footnote
  • Generating follow-up questions after a client meeting
  • Explaining a complicated GAAP standard in plain English for a non-accountant client
  • Writing a first draft of management commentary for a board presentation, based on the underlying numbers

What AI Is Not: Four Myths

Before you go further, it's worth being precise about what AI does not do β€” because the myths are exactly what get people (and firms) into trouble.

❌ MYTH

"AI understands what it's talking about."

βœ“ REALITY

A language model has no concept of what a "deferred tax liability" IS β€” no lived understanding of cash, risk, or consequence. It recognizes that certain words statistically follow other words in the context of tax accounting text. It is pattern-matching at extraordinary scale, not comprehension.

❌ MYTH

"AI is always right because it's a computer, and computers don't make mistakes."

βœ“ REALITY

AI systems β€” especially generative AI β€” can produce confident, fluent, completely incorrect answers. This is called "hallucination," and it is a fundamental, unsolved characteristic of how these systems work, not a rare bug. An AI can cite a nonexistent accounting standard with total confidence. This is why professional skepticism doesn't disappear with AI β€” it becomes MORE important.

❌ MYTH

"AI today is close to human-level general intelligence."

βœ“ REALITY

Every AI system in use today is what's called Narrow AI (or "weak AI") β€” extraordinarily capable within one specific domain, and completely lost outside it. A model that drafts brilliant financial summaries cannot reason its way through a client's family situation to give genuinely wise advice about it. It has no goals, no self-awareness, and no understanding beyond the specific pattern it was trained on.

❌ MYTH

"AI will inevitably replace accountants."

βœ“ REALITY

AI is extremely good at specific, well-defined sub-tasks within accounting work β€” categorizing transactions, drafting summaries, flagging anomalies. It is not good at professional judgment, client relationship management, ethical reasoning under ambiguity, or taking legal responsibility for an opinion. The realistic near-term outcome is task automation within roles, not wholesale role elimination.

The Three Levels of AI: Where We Actually Are

You'll frequently hear "AI" used as if it's one single thing. It isn't. There are three distinct levels, and understanding where we currently stand is essential to separating realistic planning from science fiction.

Level 1: Artificial Narrow Intelligence (ANI) β€” Where We Are Today

Extremely capable at ONE specific task. Cannot transfer that capability to a different domain.

Every AI tool in existence today β€” ChatGPT, fraud detection systems, Netflix recommendations, chess engines, medical imaging AI β€” is Narrow AI. A model that drafts brilliant tax memos has zero ability to physically audit a warehouse's inventory. These are completely different systems with no shared "mind."

Level 2: Artificial General Intelligence (AGI) β€” Theoretical, Not Yet Achieved

A hypothetical system with the flexible, cross-domain reasoning ability of a human β€” able to learn any intellectual task a person can learn, and apply knowledge from one domain to a completely different one.

AGI does not currently exist. Major AI research labs are actively pursuing it, and there is genuine scientific disagreement about how close we are β€” estimates in informed circles range from years to decades away, or further.

Level 3: Artificial Superintelligence (ASI) β€” Speculative

A hypothetical intelligence that would exceed the combined intellectual capability of all humans. Entirely theoretical at this stage and the subject of significant debate.

WHY THIS DISTINCTION MATTERS FOR YOUR CAREER:

Nearly every practical, real-world application you'll learn about in this course β€” in bookkeeping, tax, audit, and financial analysis β€” is Narrow AI. It is powerful, genuinely useful, and worth mastering. It is also fundamentally limited to specific tasks. Understanding this keeps your expectations calibrated: don't fear a general intelligence that doesn't exist, and don't underestimate a narrow one that's already changing your daily work.

A Brief, Honest History

AI is not a new idea β€” it's roughly 70 years old β€” but it has moved through long "quiet periods" punctuated by sudden leaps. Knowing this history helps explain why AI feels like it "came out of nowhere" in the last few years, when in fact it didn't.

1950s–1980s

The Early Era

Alan Turing poses the foundational question: can a machine think? Early systems mimic conversation through pattern-matching (like ELIZA) but remain extremely limited β€” impressive parlor tricks, not genuine understanding.

1990s–2000s

Statistical AI

N-gram models and early machine learning enable basic autocomplete and translation. Progress is real but slow, constrained by limited data and computing power.

2012–2017

The Deep Learning Breakthrough

Neural networks β€” loosely inspired by how brain neurons connect β€” combined with GPUs and much larger datasets unlock dramatic gains in image recognition and language processing.

2017

The Transformer Architecture

A landmark paper titled "Attention Is All You Need" introduces the transformer β€” the technical foundation underneath nearly every major AI system released since, including ChatGPT, Claude, and Gemini.

2018–2022

Scaling Up

Larger models, larger datasets, and more computing power produce steadily more fluent and capable language models.

2022–Present

The Generative AI Era

ChatGPT's public release brings large language models to hundreds of millions of ordinary users almost overnight. What had been a specialist research topic becomes a mainstream business and education conversation β€” which is exactly why it can feel like AI "suddenly" arrived.

The Responsible AI Imperative

Understanding what AI is would be incomplete without understanding what AI requires of you as a professional. AI creates real value β€” but it also creates real risk, and in accounting specifically, that risk lands on client trust, financial statement integrity, and your professional license.

Accountable

Someone β€” a specific person, not "the AI" β€” is responsible for the output and its use.

Fair

The system doesn't produce systematically biased outcomes for different groups of people.

Inclusive

Built and tested to work well for the full range of people who will use or be affected by it.

Reliable & Safe

Performs consistently and doesn't cause harm even in unusual or edge-case situations.

Transparent

Users understand, at an appropriate level, how and why the system produced a given output.

Private & Secure

Client and company data fed into AI tools is protected β€” a critical concern given how much sensitive financial data accountants handle.

Why this isn't optional for accountants: You are bound by professional ethics rules and, often, client confidentiality obligations that predate AI by decades. Feeding confidential client financial data into a public AI tool without understanding its data policies can be a professional ethics violation β€” not just a technology mistake. This theme returns throughout this entire AI-in-accounting course.

Where Accounting Fits Into All of This

Every concept in this lesson maps directly onto real accounting work you'll explore in later modules:

AI ConceptAccounting Application
Supervised learning (labeled data)Training a model on historical invoices to predict late payments
Unsupervised learning (no labels)Detecting unusual transaction clusters without predefined fraud rules
Descriptive AISummarizing a lengthy lease agreement or contract
Predictive AIForecasting cash flow or scoring receivables for collectibility
Prescriptive AIRecommending optimal payment timing to capture early-pay discounts
Generative AI / LLMsDrafting client memos, explaining standards, generating workpaper summaries
Hallucination riskWhy AI-drafted tax research must always be verified against primary sources
Responsible AI / privacyWhy client data cannot casually be pasted into public AI chat tools

Key Takeaway

Artificial intelligence is the ability of a computer system to perform tasks that traditionally required human judgment β€” not by following fixed, hand-written rules, but by learning patterns from data. Every AI system is built from data, algorithms, and models, and learns through supervised, unsupervised, or reinforcement learning. AI capabilities split into descriptive (what happened), predictive (what's likely to happen), and prescriptive (what should we do) categories, with generative AI β€” the engine behind tools like ChatGPT β€” representing the newest and fastest-growing branch. Every AI system that exists today, without exception, is Narrow AI: extraordinarily capable in one domain, and incapable outside it. It does not understand, it does not reason the way humans do, and it can be confidently wrong. That combination β€” genuine power, real limitations, and the responsibility to use it well β€” is exactly why this entire course exists.

Test Your Understanding

Rule-based vs. AI, supervised learning, and hallucination β€” check your answers below.

Question 1: A payroll system calculates FICA withholding using a fixed formula written directly into the software by a programmer. This system is best described as:

Question 2: A firm trains a system on 100,000 historical invoices, each labeled "paid on time" or "paid late," so it can predict which new invoices are at risk. This is an example of:

Question 3: An AI tool confidently cites a specific accounting standard number that turns out not to exist. This phenomenon is called:

Ready to Practice?

Apply accounting fundamentals in the Practice Lab while you build the AI fluency this course develops β€” judgment first, tools second.

Try the Practice Lab

What's Next?

Machine Learning vs. Rule-Based Systems β€” Now that you understand what AI is at the foundational level, the next lesson unpacks how learning-based systems differ from the rule-based software accountants already trust β€” and why that distinction matters when evaluating any AI tool your firm considers adopting.

Related Concepts

Up Next

Machine Learning vs Rule-Based Systems