AI Get Started

Getting started with AI just requires curiosity, a few small hands-on experiments, and a clear map of what this tutorial covers.

What You Need To Begin

  • No special hardware or paid software — a web browser is enough to try most AI tools
  • Comfort reading simple examples and tables, not necessarily a programming background
  • Curiosity to test a tool's limits, not just its highlight-reel demos
  • Python becomes useful later if you move from concepts into building models

Using AI vs. Building AI

There are two very different skills hiding behind the phrase 'learning AI'. One is learning to use AI tools well: writing clear prompts, checking outputs, knowing when to trust a result. The other is learning to build AI systems: choosing data, training models, evaluating them. This tutorial focuses on the concepts underneath both, so that whichever one you pursue next makes more sense.

A Simple First Experiment You Can Try Today

Pick a chatbot or translation tool and ask it the same question two different ways, for example rephrasing an ambiguous sentence like 'I saw the man with the telescope.' Compare the two answers. Do this a few times with different tools and you will quickly notice where these systems are consistent and where small wording changes shift the result — a much faster way to build intuition than reading about AI in the abstract.

Note: Keep a short running note of odd or wrong answers you find from AI tools. Reviewing that list later teaches you more about how these systems actually behave than any single glowing demo.

How This Tutorial Is Organized

You'll Learn AboutWhere
What AI is and how it developedIntroduction and History
Narrow AI vs. general AI, and rule-based vs. learning-based systemsTypes of AI
How AI, Machine Learning, and Deep Learning relate to each otherMachine Learning and Deep Learning
The basic building block behind neural networksNeurons and Perceptrons

A Mindset for Learning AI

  • Think in terms of inputs, outputs, and the goal a system is optimizing for.
  • Get comfortable with 'usually' and 'probably' — most AI systems are judged on how often they're right, not whether they're always right.
  • When a page here mentions a specific algorithm, such as decision trees or clustering, that is covered step by step in this site's separate Machine Learning tutorial.
Note: This tutorial assumes no prior AI knowledge, but if you want hands-on practice with specific algorithms such as regression or classification, this site's Machine Learning tutorial covers those in depth.