Hi, what do you want to do?
3Blue1Brown
How to lie using visual proofs
Time stamps:
0:00 - Fake sphere
proof
1:39 - Fake pi
= 4 proof
5:16 - Fake proof that all triangle
s are isosceles
9:54 - Sphere
"proof" explanation
15:09 - p
i = 4 "proof" explanation
16:57 - Triangle "proof"...
0:00 - Fake sphere
proof
1:39 - Fake pi
= 4 proof
5:16 - Fake proof that all triangle
s are isosceles
9:54 - Sphere
"proof" explanation
15:09 - p
i = 4 "proof" explanation
16:57 - Triangle "proof"...
Curated Video
Using for loops to iterate data structures
Pupil outcome: I can use a for loop to inspect every element of a list. Key learning points: - Count-controlled iteration is implemented using for loops in Python. - The range() function can be used with a for loop to specify the number...
Curated Video
Building a program using control structures
Pupil outcome: I can combine sequence, selection and iteration to build a program that uses complex conditions. Key learning points: - Expressions formed using logical operators evaluate to either True or False. - Logical and relational...
Curated Video
Count-controlled iteration
Pupil outcome: I can use count-controlled iteration to repeat a sequence of commands a set number of times. Key learning points: - Iteration can be used to repeat sequences of commands in a program. - Condition-controlled iteration will...
Curated Video
Iteration using while loops
Pupil outcome: I can use iteration to repeat sequences of code in a program and use a flag to stop a loop from running. Key learning points: - Condition controlled iteration will execute until a condition is met. - While loops are used...
Curated Video
Iterating through data structures
Pupil outcome: I can use iteration to repeatedly add items to lists and check the contents of a string. Key learning points: - Condition-controlled iteration is implemented using while loops in Python. - A string is like a list in...
Curated Video
Building on composite functions
Pupil outcome: I can expand my thinking on composite functions to consider a more efficient way to write composite functions comprised of many functions. Key learning points: - A composite function could be many iterations of one...
Curated Video
Evaluating iterative formulas
Pupil outcome: I can evaluate and interpret iterative formula for various real-world situations. Key learning points: - Iterative formulae use the previous iteration's output for this iteration's input - A population can be estimated...
Curated Video
Approximating solutions to equations
Pupil outcome: I can use iteration to find approximate solutions to equations. Key learning points: - You can rearrange an equation in order to carry out iteration - This process finds an approximate solution to the equation - This...
Curated Video
Signs of a solution
Pupil outcome: I can deduce why a change of sign may indicate a solution. Key learning points: - If the value is a solution, then substituting it into the equation should mean the equation evaluates to 0 - Since the solution is an...
Curated Video
Problem solving with iteration
Pupil outcome: I can use my knowledge of iteration to solve problems. Key learning points: - Quadratics can have their solutions estimated using iteration - This can be helpful to quickly determine where the solutions are likely to be -...
Curated Video
C++: NestedLoops
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Curated Video
C++: ContinueBreak
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Curated Video
C++: NestedLoop - Continue and Break
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Curated Video
C++: Challenge yourself to print this Pattern
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Curated Video
C++: Learn how to print stars in the reverse order
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Curated Video
C++: Print Alternate Star Patterns
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Curated Video
C++: Print and Sum Natural Numbers
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Curated Video
C++: Nested- Loop Continue and Break Inner Loop
Welcome to our complete C++ programming tutorial series, designed for beginners and anyone looking to strengthen their understanding of C++ coding! In this video series, we’ll cover everything you need to know to get started with C++,...
Curated Video
Python Assignment 5
In this assignment, you are required to do the following: Prompt the user to enter the number of stars to be printed. Once the value is obtained, print a square of "stars" with each row and each column having the number of stars entered...
Curated Video
Python Lesson10
In this video, you will be introduced to the for-loop in Python. See how easy it is to get it done!
Curated Video
Python Lesson11
In this lesson, we see how we can set the start and step values for the range parameters. Want to be a Python Pro?
Curated Video
Python Lesson 12
We now look at Nested for-loops. Let's learn how the different loop counters change as we go through the code.