Introduction to AI Series AI Literacy & Foundations  ·  ⏱ ~2 Hours  ·  Beginner Friendly

Comprehensive Introduction
to Artificial Intelligence

AI is transforming every industry — including yours. This course gives you the foundational knowledge you need to understand how AI works, where it's headed, and how to use it confidently and responsibly in your professional context.

6 Lessons
~2 hr Duration
8 Knowledge Checks
0 Prior AI Background Required
Course Progress
0% complete

In This Course

Lesson 1  ·  Foundation

What Is Artificial Intelligence?

Artificial intelligence is one of the most used — and most misunderstood — terms in technology today. Before we explore what AI can do, it's important to understand what it actually is.

📖 Core Definition

Artificial intelligence refers to computer systems that perform tasks that would normally require human intelligence — such as understanding language, recognizing patterns, making decisions, and solving problems — by learning from data rather than following pre-programmed rules.

The key word here is learning. Traditional software follows explicit instructions: if X happens, do Y. AI systems are different — they learn by analyzing large amounts of data and discovering their own patterns and rules. This is what makes AI so powerful, and so unlike the software that came before it.

Key Insight

AI doesn't "think" the way humans do. It doesn't have intentions, feelings, or understanding. What it has is extraordinary pattern-matching ability at scale — the capacity to find regularities in massive datasets and use those patterns to generate useful outputs.

A Brief History

AI isn't new — the dream of intelligent machines is as old as computing itself. But the field has moved through dramatic swings:

🧠
1950s: The Idea
Alan Turing proposes the "imitation game" as a test of machine intelligence. The term "artificial intelligence" is coined at the 1956 Dartmouth Conference.
❄️
1970s–80s: AI Winters
Repeated cycles of hype and disappointment as AI failed to live up to promises. Funding dried up, progress stalled.
📊
1990s–2000s: Data Era
The internet generates massive amounts of data. Machine learning emerges as the dominant paradigm. AI beats chess grandmasters.
🚀
2012–Now: Deep Learning
Neural networks dramatically outperform older methods on image recognition. Compute power, data volume, and algorithmic advances converge to produce today's AI.

The AI Family Tree: AI, ML, and Deep Learning

These terms are often used interchangeably — but they have a precise relationship. Think of them as nested circles, each contained within the one above it:

Broadest
Artificial Intelligence (AI)
Any technique enabling computers to perform tasks that typically require human intelligence. Includes rule-based systems, ML, and much more.
Subset
Machine Learning (ML)
AI systems that learn from data without being explicitly programmed. The system improves its performance as it sees more examples.
Narrowest
Deep Learning (DL)
A subset of ML using multi-layered neural networks inspired loosely by the brain. Powers most modern AI breakthroughs including LLMs and image recognition.
Common Misconception

When people say "AI" today, they almost always mean machine learning — specifically deep learning. The broader category of AI also includes older techniques like rule-based expert systems that don't learn at all. Knowing this distinction helps you read AI coverage critically.

Lesson 2  ·  How It Works

How AI Systems Learn

If AI systems aren't explicitly programmed with rules, how do they know what to do? The answer is training — exposing the system to thousands (or billions) of examples so it can discover patterns on its own.

There are three main paradigms of machine learning, each suited to different types of problems:

🎓 Supervised Learning

The most common type. The system learns from labeled examples — data paired with the correct answer. Like a student learning with a teacher who marks answers right or wrong.

Example

Show an AI thousands of medical images labeled "tumor" or "no tumor." The model learns to distinguish between them and can then classify new images it has never seen.

Supervised learning powers: medical image analysis, spam filters, fraud detection, document classification, predictive analytics.

🔍 Unsupervised Learning

The system finds hidden patterns in data without any labels. Rather than learning from correct answers, it organizes and clusters data on its own.

Example

Analyzing patient records without telling the AI what to look for — it discovers that patients naturally cluster into distinct subtypes based on symptom patterns, potentially revealing unknown disease phenotypes.

Unsupervised learning powers: patient segmentation, anomaly detection, drug interaction discovery, market research analysis.

🎮 Reinforcement Learning

The system learns through trial and error, receiving rewards for good actions and penalties for bad ones — like training a dog with treats, but at a vastly larger scale.

Example

An AI learns to optimize clinical trial site selection by testing different strategies and learning which ones historically led to faster enrollment and better data quality outcomes.

Reinforcement learning powers: robotics, game-playing AI (AlphaGo), autonomous vehicles, treatment optimization research.

Neural Networks: The Engine Behind Modern AI

Most modern AI — including the language models you interact with daily — relies on artificial neural networks: mathematical structures loosely inspired by how neurons in the brain connect and communicate.

🧩 How Neural Networks Work (Simply)

A neural network is organized in layers. Data enters through an input layer, gets processed by hidden layers where patterns are detected at increasing levels of abstraction, and exits through an output layer as a prediction or decision. The "deep" in deep learning refers to having many hidden layers — modern models can have hundreds.

Why Training Data Is Everything

The quality, size, and composition of training data directly determine what an AI system can and cannot do. An AI is only as good as what it learned from. This is why data curation, annotation quality, and dataset diversity are as important as the algorithm itself — often more so.

Lesson 3  ·  Language & Generation

Natural Language Processing & Generative AI

Of all AI's capabilities, the ability to understand and generate human language has had the most immediate and visible impact on professional work. This lesson covers how language AI works and what its rise means for you.

What Is NLP?

Natural Language Processing (NLP) is the branch of AI focused on enabling computers to understand, interpret, and generate human language — text and speech. It's one of the hardest problems in AI, because human language is inherently ambiguous, context-dependent, and constantly evolving.

📄
Text Classification
Sorting documents, emails, or records into categories — e.g., flagging adverse event reports, classifying clinical notes.
🔎
Information Extraction
Pulling structured data from unstructured text — e.g., extracting dosages, dates, and diagnoses from clinical documents.
🌐
Translation
Converting text between languages at near-human quality — enabling global clinical trial communications.
📝
Text Generation
Producing human-quality text — from summarizing documents to drafting reports, protocols, and correspondence.

Large Language Models (LLMs)

The most transformative development in recent AI history is the Large Language Model. LLMs are trained on enormous amounts of text — essentially a significant portion of the written internet — and learn to predict what word or phrase comes next. From this seemingly simple task emerges the ability to answer questions, summarize documents, write code, and engage in complex reasoning.

💡 Examples You May Already Know

ChatGPT (OpenAI), Claude (Anthropic), Gemini (Google), and Copilot (Microsoft) are all LLM-based products. Each is built on a large language model trained on vast text datasets, then further refined to be helpful, harmless, and honest.

What Is Generative AI?

Generative AI refers to AI systems that can create new content — text, images, audio, video, code — rather than just classifying or predicting. LLMs are the most prominent type of generative AI, but the category also includes image generators like DALL-E and Midjourney.

Hallucinations: A Critical Limitation

LLMs can generate text that is fluent, confident, and completely wrong. This is called hallucination — the model produces plausible-sounding but fabricated information. In regulated settings like clinical research, this is not a minor inconvenience — it's a patient safety and data integrity concern. Always verify AI-generated content against authoritative sources before using it in official documents.

Prompting: How You Communicate with AI

A prompt is the input you give to an AI system. The quality of your prompt has an enormous impact on the quality of the output. Effective prompting is a learnable skill — and one that can dramatically increase how useful AI is for your work.

🎯
Be Specific
Vague prompts yield vague results. Include context, the audience, the format you want, and the purpose.
🗂️
Provide Context
Tell the AI who you are, what you're working on, and what constraints matter. More relevant context = better outputs.
🔄
Iterate
First outputs are rarely final. Follow up, refine, and redirect. Good prompting is a conversation, not a one-shot command.
Lesson 4  ·  Vision & Multimodal AI

Computer Vision & Multimodal AI

Language isn't the only modality AI has mastered. Computer vision — the ability to interpret and analyze visual information — is transforming fields from radiology to manufacturing quality control.

How Computer Vision Works

Computer vision systems are trained on vast datasets of labeled images. Through deep learning, they develop the ability to identify objects, detect anomalies, measure features, and even understand spatial relationships — often matching or exceeding human accuracy on specific tasks.

🔬 Medical Imaging & Diagnostics

Some of the most clinically significant applications of computer vision are in medical imaging. AI systems have demonstrated performance comparable to expert radiologists in detecting conditions from X-rays, CT scans, and MRIs.

Documented Applications

AI systems for detecting diabetic retinopathy from fundus photographs, lung nodule detection in CT scans, skin lesion classification, and pathology slide analysis are now FDA-authorized and in clinical use.

Important caveat: these systems perform specific, narrow tasks — they are decision-support tools, not replacements for clinical judgment across complex, multifactorial cases.

🤝 Multimodal AI: Text + Images + More

The newest generation of AI models can work across multiple types of input simultaneously — text, images, audio, and data — within a single model. These are called multimodal models.

Example

A multimodal AI can analyze a medical image alongside a clinical note and a patient's lab results simultaneously — integrating visual, textual, and numeric information to support a more complete clinical picture.

GPT-4V, Claude 3, and Gemini are all multimodal models — they can analyze images you upload alongside text you write in the same prompt.

The Narrow AI Reality

Even the most impressive AI systems are "narrow" — they excel at specific tasks they were trained for, but cannot generalize the way humans can. An AI that detects lung cancer in CT scans cannot diagnose appendicitis, advise on a patient interaction, or apply clinical judgment to a novel presentation. This is a critical frame for evaluating any AI product's claims.

Lesson 5  ·  Real-World Applications

AI Across Industries: Real-World Applications

Understanding AI in the abstract is useful. Understanding how it's being applied in your field is essential. This lesson surveys AI's impact across industries, with an emphasis on life sciences and clinical research.

🧬 Life Sciences & Clinical Research

AI is being integrated throughout the clinical trial lifecycle — from design and patient recruitment to monitoring, data analysis, and regulatory submission.

Active Applications

Protocol design: AI identifies optimal inclusion/exclusion criteria by analyzing historical trial data to predict enrollment feasibility and dropout risk. Site selection: ML models rank investigator sites by predicted performance. Risk-based monitoring: AI flags data anomalies for targeted SDV. Medical writing: LLMs assist with CSR drafting, literature synthesis, and regulatory query responses.

💊 Drug Discovery & Development

AI is compressing timelines in pharmaceutical R&D — a domain where traditional processes can take 10–15 years and billions of dollars per approved drug.

Examples

Target identification: AI analyzes genomic and proteomic data to identify disease-relevant molecular targets. Molecule generation: Generative AI designs novel drug candidates with desired properties. Clinical biomarker discovery: ML identifies patient subpopulations most likely to respond to a given therapy.

🏥 Healthcare Delivery

Beyond research, AI is entering clinical care through decision support tools, diagnostic aids, administrative automation, and patient engagement systems.

Examples

Clinical decision support: AI surfaces relevant guidelines, drug interactions, and differential diagnoses during patient encounters. Prior authorization: AI automates insurance paperwork. Patient triage: Symptom checkers help route patients appropriately. EHR summarization: LLMs condense lengthy patient records into relevant summaries for care team handoffs.

⚖️ Legal, Finance & Professional Services

AI is transforming document-intensive professional fields by automating review, extraction, and drafting tasks that previously required extensive human time.

Examples

Contract review: AI flags non-standard clauses and risk provisions in clinical trial agreements and vendor contracts. Regulatory submissions: AI assists with structured document assembly for FDA and EMA filings. Budget modeling: ML forecasts clinical trial costs based on protocol complexity, therapeutic area, and historical actuals.

Lesson 6  ·  Responsible Use

Working with AI Responsibly

AI is a powerful tool — and like all powerful tools, using it well requires understanding its limitations, risks, and appropriate boundaries. This lesson gives you a practical framework for responsible AI use in a professional context.

Know What AI Cannot Do

🚫
It Cannot Reason
AI pattern-matches — it doesn't reason logically the way humans do. It can appear to reason but this is an emergent behavior from pattern recognition, not true understanding.
🚫
It Can Confabulate
LLMs hallucinate with confidence. A citation that looks real may not exist. A fact that sounds precise may be wrong. Always verify AI outputs in high-stakes contexts.
🚫
It Has a Knowledge Cutoff
Most AI models are trained on data up to a specific date. They don't know about recent regulatory updates, new guidelines, or emerging clinical evidence.
🚫
It Can Encode Bias
AI inherits the biases of its training data. In regulated settings, this can have serious equity and compliance implications. See the AI Ethics & Governance track for more.

A Framework for Responsible AI Use

✅ Verify Before Using AI Output in Official Work

Any AI-generated content that will appear in a regulatory submission, clinical report, patient communication, or legal document must be verified by a qualified human against authoritative sources. AI-assisted does not mean AI-certified.

✅ Understand Your Organization's AI Policy

Most regulated organizations are developing or have developed policies around AI tool use — including which tools are approved, what data can be entered into them, and what approval processes apply to AI-assisted outputs. Know your policy before using AI for work tasks.

✅ Protect Confidential and Patient Data

Never enter personal health information (PHI), patient identifiers, confidential trial data, or proprietary sponsor information into public AI tools unless your organization has a validated, BAA-covered enterprise agreement with that AI provider. Most consumer AI tools are not HIPAA-compliant by default.

✅ Use AI as a Starting Point, Not a Final Answer

AI excels at drafting, summarizing, generating options, and accelerating first-pass work. The value of your professional judgment is in critically evaluating, refining, and taking responsibility for the final output. AI augments expertise — it doesn't replace it.

🚀 Where to Go From Here

You've completed the foundational course. To go deeper, explore the AI Ethics & Governance track to understand bias and fairness frameworks, the AI Leadership track to learn governance and implementation strategy, or jump directly into the AI for Clinical Research specialization courses for your role.

📚 Glossary for This Course

Artificial Intelligence (AI)
Computer systems that perform tasks normally requiring human intelligence by learning patterns from data.
Machine Learning (ML)
A subset of AI where systems learn from data without being explicitly programmed with rules.
Deep Learning
ML using multi-layered neural networks. Powers most modern AI breakthroughs including LLMs and image recognition.
Neural Network
A mathematical structure of interconnected layers loosely inspired by biological neurons. The building block of deep learning.
Training Data
The dataset used to teach an AI model. Its quality, size, and diversity determine the model's capabilities and limitations.
Supervised Learning
Training an AI on labeled examples — data paired with the correct answer — so it learns to make similar predictions on new data.
Large Language Model (LLM)
A deep learning model trained on vast amounts of text that can understand, generate, and reason over natural language.
Generative AI
AI systems that create new content — text, images, audio, code — rather than just classifying or predicting.
Hallucination
When an LLM generates plausible-sounding but factually incorrect or fabricated information with apparent confidence.
Prompt
The input given to an AI system. Effective prompting is a learnable skill that significantly impacts output quality.
Computer Vision
AI systems that can interpret and analyze visual information — images and video — to detect, classify, and measure objects.
Multimodal AI
AI models that can process and integrate multiple types of input simultaneously — text, images, audio, and structured data.
Natural Language Processing (NLP)
The AI field focused on enabling computers to understand, interpret, and generate human language in text or speech form.
Narrow AI
AI designed for specific tasks. All current AI is narrow — no system can generalize across domains the way humans can.
Algorithmic Bias
Systematic unfairness in AI outputs caused by biased training data, design choices, or deployment context. See the Ethics track.
Knowledge Cutoff
The date after which an AI model has no information. Models don't automatically update with new events or publications.

Knowledge Check

Score: 0/8 correct
Question 1 of 8 Which statement best describes the relationship between AI, Machine Learning, and Deep Learning?
A They are three separate, unrelated fields of computer science
B ML is a subset of AI, and Deep Learning is a subset of ML
C Deep Learning is the broadest category, containing ML and AI
D AI and ML are synonymous; Deep Learning is a competitor technology
Question 2 of 8 What is supervised learning?
A AI that is monitored by a human supervisor at all times during operation
B A system that finds hidden patterns in data without any predefined labels
C Training an AI on labeled examples so it learns to make accurate predictions on new data
D An AI that learns through trial and error by receiving rewards for good actions
Question 3 of 8 What is AI "hallucination" and why does it matter in clinical research?
A When an LLM generates plausible-sounding but factually incorrect information — a serious risk for regulatory documents
B A type of computer vision error where AI "sees" objects that aren't in an image
C An AI system malfunction that causes erratic behavior
D When an AI produces outputs that don't match the user's prompt
Question 4 of 8 A clinical trial site is using an AI tool to extract adverse event data from unstructured clinical notes. Which type of AI is most relevant here?
A Reinforcement learning
B Computer vision
C Unsupervised learning for clustering
D Natural language processing (NLP)
Question 5 of 8 Why is training data quality described as "the most important factor" in AI performance?
A Because larger training datasets always produce more accurate models
B Because AI learns from data — its biases, gaps, and errors directly shape what the model can and cannot do
C Because training data must be publicly available to ensure transparency
D Because regulators require data provenance documentation for all AI systems
Question 6 of 8 What does "multimodal AI" mean?
A AI systems that can operate in multiple languages simultaneously
B AI that is available on multiple devices and platforms
C AI models that can process and integrate multiple input types — text, images, audio, and data — within a single model
D Using multiple separate AI models together in a pipeline
Question 7 of 8 Under what condition is it generally appropriate to enter clinical trial data into a consumer AI tool like ChatGPT?
A When the data has been de-identified
B When using the paid/premium version of the tool
C When the analysis is for internal use only and won't be published
D Only when your organization has an enterprise agreement with validated, HIPAA-compliant terms from the AI provider
Question 8 of 8 Which of these best captures the appropriate role of AI in high-stakes professional contexts?
A AI augments human expertise — it accelerates and improves work, but qualified humans must verify outputs and take responsibility for decisions
B AI can replace human judgment for routine tasks once validated in a specific domain
C AI should be treated as a subject matter expert whose outputs require no additional verification
D AI is too unreliable to be used in regulated environments at this stage
0/8
Questions answered correctly

🎓 Course Complete

You've covered the full foundation of artificial intelligence — how it works, where it's being applied, and how to use it responsibly. You're ready to explore your next course.

Explore the Full Catalog →