Each class is a short animated explainer with narration, plus quick checks, an interactive, and a mastery quiz — at a college-prep level. Your progress saves automatically.
▶ Watch class 1 free — no sign-upEvery class is 13 cards · narrated film + illustration · 2 quick checks · an interactive · a 4-question mastery quiz. Nothing hidden — this is the complete text of What Is Computer Science — Really?.
Welcome to Computer Science. And before we go any further, I want to make you a promise. By the end of this class, you will understand what computer science actually is — and I guarantee it is not what most people think. You will know the difference between CS and programming, you will know what an algorithm really is, and you will see why learning CS makes you better at almost every problem in life — not just tech problems. Here is the big secret we are going to unpack today: computer science is not really about computers. It is about thinking. It is about solving problems so precisely that even a machine — something with zero intuition and zero creativity on its own — can follow your instructions and get the right answer. That is a superpower. And today, class one, is where you start building it.
CS is not coding. Coding is a tool CS uses.
CS = the study of algorithms and data.
CS has an origin story — and it is a great one. In the 1840s, a mathematician named Ada Lovelace was working with a brilliant but chaotic inventor named Charles Babbage. Babbage was building a mechanical computing machine. Lovelace did something no one else had done: she wrote a detailed set of instructions for the machine to compute a sequence of numbers — the Bernoulli numbers. It is considered the first algorithm ever written for a machine. She also wrote, prophetically, that a machine like this could someday compose music, produce graphics, do anything you could express as a rule. A century later, in 1936, Alan Turing published a paper that invented the theoretical foundation of computer science. He described an imaginary machine — now called a Turing machine — that could simulate any algorithm. He used it to prove that some problems are fundamentally unsolvable by any computer, ever. That is an astonishing result. Turing also broke Nazi encryption codes in World War Two and contributed to the design of the first programmable computers. These two people — one from the 1840s, one from the 1940s — essentially invented the field.
Sequence + selection + repetition = all of computation.
Let us look at a real algorithm — one of the most classic in CS — finding the largest number in a list. I want you to notice something as we go through this: at no point does the algorithm do anything magical. Every step is obvious in isolation. The power comes from the fact that it is precise, it always terminates, and it always produces the correct answer. This is what algorithmic thinking looks like. You will also notice that you could give these instructions to a ten-year-old, and they could follow them without understanding what they are doing or why. That is exactly the point. A good algorithm is self-contained. The machine does not need to understand — it just needs to follow. The skill of CS is writing instructions clear enough that even a perfectly literal machine gets it right.
Computer science develops four core thinking skills that transfer to almost every field. First: decomposition. Breaking a big, messy problem into smaller pieces that are actually solvable. The best CS thinkers are obsessive about this. They never try to solve the whole problem at once. Second: pattern recognition. Noticing when you have seen something like this before. Most new problems are variations on solved problems if you know where to look. Third: abstraction. Focusing on what matters and ignoring what does not — building mental models that are useful without being complete. And fourth: algorithm design. Turning a vague goal into a precise, step-by-step process that works every time. Here is the exciting thing: these four skills are not just useful in coding. Doctors use decomposition to diagnose diseases. Lawyers use abstraction to apply legal principles to new cases. Scientists use pattern recognition to generate hypotheses. When you study CS, you are not just learning to write programs — you are training your brain.
Let us make this concrete with a real-world problem. Imagine you have a pile of 1,000 student names and you need to put them in alphabetical order. A human doing this by hand might take an hour. A computer can do it in milliseconds. But here is the question CS asks: how? Just telling a computer to alphabetize is not good enough — you have to tell it exactly what steps to take. One approach is to compare pairs of names and swap them when they are out of order, repeating until nothing needs swapping. That is called Bubble Sort. It works, but it is slow. Another approach splits the list in half, sorts each half, then merges the two sorted halves together — called Merge Sort. It is much faster on large lists. The CS question is: which algorithm is better, and by how much? That is not a question about coding. It is a question about the structure of the problem itself — and the answer matters enormously when your list has a billion names instead of a thousand.
Some problems are provably unsolvable by any algorithm — that is a profound insight, not a failure.
People mix up three related but different things: computer science, programming, and IT — information technology. Here is the clearest way I know to separate them. Computer science is the theory. It asks: what can be computed, and how efficiently? It is the science of algorithms, data structures, computability, and complexity. Programming is the craft. It is writing code in specific languages to build specific things. You can be an excellent programmer without knowing much CS theory — and some great CS researchers write very little code. Information technology is the infrastructure. IT professionals keep systems running: setting up networks, managing servers, troubleshooting hardware, deploying software. They are the people who fix the Wi-Fi. All three are valuable. All three require real skill. But they are genuinely different activities. This course focuses on computer science — the ideas that make the other two possible — because understanding the theory makes you dramatically better at the practice.
Let me warn you about the three misconceptions that trip up most beginners. Misconception one: you have to be great at math to do CS. You do need some math — particularly logic, discrete math, and eventually some statistics or linear algebra — but the most important mental skill is structured thinking, not calculation. Plenty of excellent computer scientists were not math prodigies. Misconception two: once you learn one programming language, you have learned CS. Languages are tools. CS is the thinking. A carpenter who only knows one type of hammer has not mastered carpentry. Learning to think algorithmically transfers across any language you will ever use. Misconception three: CS is only for people who want to work at tech companies. CS skills are used in medicine, law, film, music, journalism, government, and every field that generates data — which is all of them. The students who study CS and go into non-tech fields often have the largest impact, because they bring thinking tools that their colleagues do not have.
You do not need much to start doing computer science. Here are the tools that actually matter. First: Python. It is the most widely taught introductory language in the world, it is used professionally in data science and AI, and its syntax is clean enough that you can focus on ideas instead of fighting the language. Download it free at python.org. Second: a code editor — VS Code is the standard, also free, and there are extensions for every language you will ever use. Third: the Python Tutor website at pythontutor.com — it lets you run code step by step and watch every variable change in real time, which is incredible for understanding what your programs are actually doing. Fourth: CS50 on edX — Harvard's intro CS course is free, world-class, and covers the foundations in depth. Beyond tools, the most important resource is practice. The concepts in CS only become real when you wrestle with them yourself. Reading about algorithms is useful. Writing them is transformative.
Write an algorithm to find your lost phone. Check it for edge cases. Fix them. That is computer science.
Let us pull together what you learned today. Computer science is the study of algorithms and data — not coding, not computers. An algorithm is a precise, step-by-step solution to a problem — and precision is the key word, because machines are perfectly literal. CS was founded by Ada Lovelace and Alan Turing, who proved not just that computers can solve problems but that some problems can never be solved by any algorithm. The four core skills CS builds — decomposition, pattern recognition, abstraction, and algorithm design — transfer to every field, not just tech. And CS, programming, and IT are three different things: theory, craft, and infrastructure. Your job this module is to start thinking like a computer scientist: break problems down, define them precisely, and always ask whether there is a better approach. See you in class two.