> ## Documentation Index
> Fetch the complete documentation index at: https://academy.pathfindr.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# How AI Works

> Everything business leaders need to know about AI

export const FlipCard = ({emoji, image, title, oneLiner, bestFor = [], starterPrompt}) => {
  const [flipped, setFlipped] = useState(false);
  return <div className="relative min-h-[280px] rounded-2xl border border-zinc-200 dark:border-zinc-800 bg-white dark:bg-zinc-900 shadow-sm overflow-hidden">
      <button type="button" onClick={() => setFlipped(!flipped)} className="absolute top-3 right-3 z-10 rounded-full border border-zinc-300 dark:border-zinc-600 bg-white dark:bg-zinc-800 px-3 py-1 text-xs font-medium text-zinc-700 dark:text-zinc-200 hover:bg-zinc-100 dark:hover:bg-zinc-700">
        {flipped ? "← Back" : "Flip →"}
      </button>

      {!flipped && <div className="p-6 pt-12 flex flex-col h-full">
          {image ? <div className="mb-3">
              <img src={image} alt={title} className="w-16 h-16 object-contain" />
            </div> : <div className="text-4xl mb-3">{emoji}</div>}
          <div className="text-xl font-bold text-zinc-900 dark:text-white mb-2">{title}</div>
          <p className="text-zinc-600 dark:text-zinc-300 text-sm">{oneLiner}</p>
          <p className="mt-auto pt-4 text-xs text-zinc-400 dark:text-zinc-500">Click "Flip" to see the starter prompt</p>
        </div>}

      {flipped && <div className="p-6 pt-12 flex flex-col h-full">
          <div className="text-sm font-semibold text-zinc-900 dark:text-white mb-2">Best for:</div>
          <ul className="text-zinc-600 dark:text-zinc-300 text-sm space-y-1 mb-4">
            {bestFor.map((item, i) => <li key={i}>{item}</li>)}
          </ul>
          {starterPrompt && <div>
              <div className="text-sm font-semibold text-zinc-900 dark:text-white mb-2">Starter prompt:</div>
              <div className="rounded-lg bg-zinc-100 dark:bg-zinc-800 p-3 text-sm text-zinc-700 dark:text-zinc-200 whitespace-pre-wrap">{starterPrompt}</div>
            </div>}
          <p className="mt-auto pt-4 text-xs text-zinc-400 dark:text-zinc-500">Click "Back" to return</p>
        </div>}
    </div>;
};

export const Quiz = ({question, options, correctIndex, explanation}) => {
  const [selected, setSelected] = useState(null);
  const [showResult, setShowResult] = useState(false);
  const handleSelect = index => {
    if (showResult) return;
    setSelected(index);
    setShowResult(true);
  };
  const isCorrect = selected === correctIndex;
  return <div className="my-8 p-6 rounded-2xl border border-zinc-200 dark:border-zinc-700 bg-gradient-to-br from-zinc-50 to-white dark:from-zinc-900 dark:to-zinc-800 shadow-sm">
      <div className="flex items-center gap-3 mb-4">
        <div className="flex items-center justify-center w-10 h-10 rounded-xl bg-blue-100 dark:bg-blue-900/40">
          <span className="text-xl">📝</span>
        </div>
        <div className="flex flex-col">
          <p className="font-semibold text-zinc-800 dark:text-zinc-100 m-0">Knowledge Check</p>
          <p className="text-xs text-zinc-500 dark:text-zinc-400 mt-0.5 m-0">Select the best answer</p>
      </div>
      </div>
      
      <p className="text-zinc-700 dark:text-zinc-200 font-medium mb-5 text-lg leading-relaxed">{question}</p>
      
      <div className="space-y-3">
        {options.map((option, index) => {
    const isSelected = selected === index;
    const isCorrectOption = index === correctIndex;
    let optionStyles = "border-zinc-200 dark:border-zinc-600 hover:border-blue-400 hover:bg-blue-50 dark:hover:bg-blue-900/20";
    if (showResult) {
      if (isCorrectOption) {
        optionStyles = "border-green-500 bg-green-50 dark:bg-green-900/30";
      } else if (isSelected && !isCorrectOption) {
        optionStyles = "border-red-500 bg-red-50 dark:bg-red-900/30";
      } else {
        optionStyles = "border-zinc-200 dark:border-zinc-700 opacity-60";
      }
    }
    return <button key={index} onClick={() => handleSelect(index)} disabled={showResult} className={`w-full text-left p-4 rounded-xl border-2 transition-all duration-200 ${optionStyles} ${!showResult && 'cursor-pointer'} ${showResult && 'cursor-default'}`}>
              <div className="flex items-start gap-3">
                <div className={`flex-shrink-0 w-6 h-6 rounded-full border-2 flex items-center justify-center text-xs font-bold ${showResult && isCorrectOption ? 'border-green-500 bg-green-500 text-white' : showResult && isSelected && !isCorrectOption ? 'border-red-500 bg-red-500 text-white' : 'border-zinc-300 dark:border-zinc-500 text-zinc-500 dark:text-zinc-400'}`}>
                  {showResult && isCorrectOption ? '✓' : showResult && isSelected ? '✗' : String.fromCharCode(65 + index)}
                </div>
                <span className="text-sm text-zinc-700 dark:text-zinc-200 leading-relaxed">{option}</span>
              </div>
            </button>;
  })}
      </div>
      
      {showResult && <div className={`mt-5 p-4 rounded-xl ${isCorrect ? 'bg-green-100 dark:bg-green-900/40 border border-green-200 dark:border-green-800' : 'bg-amber-100 dark:bg-amber-900/40 border border-amber-200 dark:border-amber-800'}`}>
          <div className="flex items-start gap-3">
            <span className="text-xl">{isCorrect ? '🎉' : '💡'}</span>
            <div className="flex flex-col">
              <p className={`text-sm font-semibold m-0 mb-1 ${isCorrect ? 'text-green-800 dark:text-green-200' : 'text-amber-800 dark:text-amber-200'}`}>
                {isCorrect ? 'Correct!' : 'Not quite right'}
              </p>
              <p className="text-sm text-zinc-600 dark:text-zinc-300 m-0 leading-relaxed">{explanation}</p>
          </div>
          </div>
        </div>}
    </div>;
};

## Understanding AI in your business

Think of AI as your next team hire. Not a single tool, but a set of intelligent workers you can deploy across your organisation. Each one brings graduate-level knowledge, can learn from feedback, and works with the tools you already use.

This page will show you how to:

<CardGroup cols={4}>
  <Card title="Learn the building blocks" icon="square-1">
    Understand what makes AI systems work
  </Card>

  <Card title="Meet your new hires" icon="square-2">
    Discover the three roles AI can play
  </Card>

  <Card title="Know the frontier" icon="square-3">
    See which models power modern AI
  </Card>

  <Card title="Track the trajectory" icon="square-4">
    Understand how fast AI is improving
  </Card>
</CardGroup>

<Tip>
  You don't need to become a technical expert. Focus on understanding <b>what AI can do</b> and <b>where it fits</b> in your work.
</Tip>

***

## The six building blocks of AI

Every AI system you use, whether it is ChatGPT, Copilot, Claude, or Gemini, is built from the same core components. Understanding these helps you get better results.

<Columns cols={2}>
  <Card title="Model" icon="graduation-cap">
    The AI's education level. Think of it as hiring a graduate versus a PhD. Stronger models reason more deeply but cost more to run.

    <b>Graduate level:</b> GPT-4o, Claude Sonnet, Gemini Pro

    <b>PhD level:</b> GPT-5 Thinking, Claude Opus, Gemini Ultra
  </Card>

  <Card title="Context" icon="file-lines">
    The experience and documents you provide. AI only knows what you give it in the conversation, plus any files you attach.

    More context means better, more relevant answers.
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Tools" icon="screwdriver-wrench">
    What the AI can connect to. This includes internet search, reading from your CRM, writing to databases, or browsing the web.

    Tools extend what AI can do beyond just conversation.
  </Card>

  <Card title="Modalities" icon="eyes">
    The AI's senses. Modern AI can read and write text, speak and hear audio, and see and create images.

    Each modality opens new use cases for your work.
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Learning" icon="thumbs-up">
    How the AI improves. When you give feedback using thumbs up or thumbs down, some systems learn your preferences over time.

    Your feedback shapes better future responses.
  </Card>

  <Card title="Guardrails" icon="shield-check">
    Safety boundaries built into every AI. These prevent harmful outputs like bioweapon instructions or illegal content.

    Guardrails keep AI safe for business use.
  </Card>
</Columns>

<Tip>
  When AI gives you a poor result, ask yourself: Did I give it enough <b>context</b>? Did I choose the right <b>model</b>? Does it have the <b>tools</b> it needs?
</Tip>

***

## Meet your three new hires

AI works best when you give it a clear role. Think of these as three types of team members you can deploy for different tasks.

<div className="grid gap-4 grid-cols-1 md:grid-cols-3">
  <FlipCard image="https://mintcdn.com/pathfindr/I3XbhzOlK6BeuXVO/images/assistantIcon.webp?fit=max&auto=format&n=I3XbhzOlK6BeuXVO&q=85&s=84490634e74ab5287061758af9c1eb54" title="Assistant" oneLiner="You've got a task. It gets it done." bestFor={["Summarising documents", "Drafting emails and replies", "Turning notes into action lists", "Formatting and organising content"]} starterPrompt="You're my Assistant. Summarise this document into 5 key points with clear next steps." width="426" height="426" data-path="images/assistantIcon.webp" />

  <FlipCard image="https://mintcdn.com/pathfindr/vxED2dxssEHZg3yn/images/thinkerIcon.webp?fit=max&auto=format&n=vxED2dxssEHZg3yn&q=85&s=5fbd5406d58970da1c1e7acaba9b26be" title="Thinker" oneLiner="You've got a decision. It helps you choose." bestFor={["Comparing options", "Analysing risks and trade-offs", "Strategic planning", "Problem diagnosis"]} starterPrompt="You're my Thinker. Give me 3 options for this problem, weigh the pros and cons, then recommend one." width="426" height="426" data-path="images/thinkerIcon.webp" />

  <FlipCard image="https://mintcdn.com/pathfindr/0Og7YOK8gX91P7mj/images/creatorIcon.webp?fit=max&auto=format&n=0Og7YOK8gX91P7mj&q=85&s=9f9ed2ceb17f361a9dbfbe1a494ca83b" title="Creator" oneLiner="You've got a blank page. It gets you moving." bestFor={["First drafts and outlines", "Brainstorming ideas", "Rewriting with a new tone", "Generating content variations"]} starterPrompt="You're my Creator. Draft a first version of this. Keep it professional and under 300 words." width="426" height="426" data-path="images/creatorIcon.webp" />
</div>

<Tip>
  The secret: tell the AI the <b>role</b>, the <b>output format</b>, and the <b>length</b>. That covers most of what you need for good results.
</Tip>

***

## The frontier models powering AI

Everything you use is built on a small number of foundation models. These are the "brains" that companies like OpenAI, Google, and Anthropic have trained.

<Columns cols={2}>
  <Card title="ChatGPT (OpenAI)" icon="message">
    The most widely used. Strong at conversation, voice mode, and creative tasks. Custom GPTs let you build specialised assistants.
  </Card>

  <Card title="Claude (Anthropic)" icon="sparkles">
    Known for thoughtful, nuanced responses. Excels at long documents, analysis, and creating artifacts like code or reports.
  </Card>
</Columns>

<Columns cols={2}>
  <Card title="Gemini (Google)" icon="google">
    Deep integration with Google Workspace. Works directly with Gmail, Drive, and Docs without needing to upload files.
  </Card>

  <Card title="Copilot (Microsoft)" icon="microsoft">
    Built into Microsoft 365. The Work tab accesses your company data while keeping everything secure and private.
  </Card>
</Columns>

<Tip>
  You don't need to pick one. Many organisations use different tools for different tasks. The key is knowing which tool fits each job.
</Tip>

***

## What to expect: The fastest improving technology in history

AI capabilities are advancing faster than any technology we have seen. Understanding this trajectory helps you plan for what is coming, not just what exists today.

<Columns cols={2}>
  <Card title="2023: The starting point">
    AI scored around <b>10%</b> on PhD-level science questions. Useful for simple tasks, but limited reasoning. Most outputs required heavy human editing.
  </Card>

  <Card title="2025: Where we are now">
    AI now scores <b>94%</b> on those same questions. That is a 9x improvement in just two years. Complex analysis and reasoning are now routine.
  </Card>
</Columns>

***

### Expert parity is arriving

Recent benchmarks show AI approaching <b>50% win rates</b> against human domain experts across multiple fields. This means AI advice is becoming competitive with professional consultants.

<Columns cols={2}>
  <Card title="What this means" icon="chart-line">
    Tasks that once required expensive expertise are becoming accessible to everyone. Research, analysis, and strategic thinking can now be augmented at scale.

    The gap between having expert advice and not having it is closing.
  </Card>

  <Card title="What it doesn't mean" icon="circle-exclamation">
    AI is not replacing human judgment. It is augmenting it. The best results come from humans and AI working together, each contributing what they do best.

    Expertise in using AI becomes the new competitive advantage.
  </Card>
</Columns>

***

### Performance varies by sector

AI performs differently across industries. Understanding where your sector sits helps you calibrate expectations.

<Columns cols={2}>
  <Card title="Highest AI performance" icon="arrow-trend-up">
    <b>Real Estate and Leasing:</b> Strong pattern matching and market analysis.

    <b>Manufacturing:</b> Process optimisation and quality control.

    <b>Professional Services:</b> Research, analysis, and document work.

    <b>Retail and Wholesale:</b> Customer insights and inventory management.
  </Card>

  <Card title="More cautious adoption" icon="scale-balanced">
    <b>Healthcare:</b> High stakes require extensive validation.

    <b>Government:</b> Regulatory requirements and public accountability.

    <b>Finance and Insurance:</b> Compliance obligations shape what is possible.

    These sectors are improving but move more carefully.
  </Card>
</Columns>

<Note>
  Even in cautious sectors, AI is finding valuable applications. The question is not whether to use AI, but where to start and how to govern it properly.
</Note>

***

### What to expect in the next two years

Based on current trajectories, here is what business leaders should prepare for.

<Accordion title="Reasoning models become standard">
  Today's "thinking" models that pause to reason through problems will become the default. AI will tackle increasingly complex, multi-step problems that currently require senior human judgment.

  <b>Prepare by:</b> Identifying complex analytical tasks that could benefit from deeper AI reasoning.
</Accordion>

<Accordion title="AI agents take autonomous action">
  AI will move beyond answering questions to completing multi-step tasks independently. Book the meeting, research the topic, draft the document, and send it for review, all from a single instruction.

  <b>Prepare by:</b> Mapping workflows that could run with AI orchestration and human oversight at key checkpoints.
</Accordion>

<Accordion title="Multimodal becomes seamless">
  Switching between text, voice, images, and video will become effortless. AI will watch a video and summarise it, look at a whiteboard and turn it into a document, or join a call and take notes automatically.

  <b>Prepare by:</b> Considering how voice and visual AI could change your customer and employee interactions.
</Accordion>

<Accordion title="Personalisation at scale">
  AI will remember context across interactions and tailor every response to the individual. What once required dedicated account managers becomes possible for every customer.

  <b>Prepare by:</b> Thinking about how personalised experiences could differentiate your offering.
</Accordion>

<Accordion title="Costs continue falling">
  The same capabilities that cost dollars today will cost cents. This makes AI viable for high-volume, low-margin applications that are not economical yet.

  <b>Prepare by:</b> Identifying use cases you have dismissed as too expensive and revisiting them regularly.
</Accordion>

<Tip>
  The organisations that benefit most from AI in two years are the ones building capability today. Experimentation now creates advantage later.
</Tip>

***

## What this means for your team

The practical takeaway is simple: every staff member now has access to three new hires. An Assistant for tasks, a Thinker for decisions, and a Creator for content.

<Columns cols={2}>
  <Card title="Individual Productivity" icon="user">
    Each person can accomplish more. Drafting, research, analysis, and content creation all become faster with AI support.
  </Card>

  <Card title="Team Capacity" icon="users">
    Small teams can punch above their weight. AI handles the repetitive work so humans can focus on judgment and relationships.
  </Card>
</Columns>

<Tip>
  Start small. Pick one task this week where AI could help. Try the Assistant, Thinker, or Creator approach and see what happens.
</Tip>

***

## Quick checkpoint (you're done when...)

<CardGroup cols={4}>
  <Card title="Building blocks" icon="circle-check">
    You can name the six components of AI systems
  </Card>

  <Card title="Three hires" icon="circle-check">
    You know when to use Assistant, Thinker, or Creator
  </Card>

  <Card title="Frontier models" icon="circle-check">
    You understand which AI tools fit which tasks
  </Card>

  <Card title="The trajectory" icon="circle-check">
    You grasp how quickly AI is improving and what is coming
  </Card>
</CardGroup>

<div className="mt-8" />

<Card title="Ready to practice?" icon="chess-knight-piece" href="/leaders/w1/challenge">
  Complete the mini challenges to test your understanding
</Card>
