What is this site?

This is site was written by Grant Sander, and is an extension of cosmalearning.com. It was developed to support learners in exploring both math and programming. The site consists of various tutorials, examples, and exercises, ranging from basic programming concepts to some sophisticated mathematical ideas. Througout the site you will see code snippets that look like this:

  1. print("I'm an editor!");
  2. print("You can edit me, and run the code.");

Click on the code snippet to pull open the code in the editor on the right-side of the screen. You can edit the code in the code-editor, and then press the "Run" button to run your code. The output of your code will be shown below the code editor. You can also press Ctrl + Enter (or Cmd + Enter on Mac) to run your code.

The code editors are running JavaScript code. JavaScript is a programming language that nearly all websites use -- it is the code that runs in your web browser. So, anytime you are using an interactive website, chances are there is some JavaScript running behind the scenes. In this site you will also have access to some functionality that is beyond basic JavaScript to make the exercises more interesting.

You will see the print() command very often throughout the site. The print() command will print an output to the output section of the editor. As an example, if you want to know what 4 + 6.5 is, you could run print(4 + 6.5);.

What is Coding/Programming?

Coding, or programming, is the process of writing computer programs. Computer programs are basically just commands telling a computer what to do. Let's look at a simple example of a program.

  1. print("I'm a program!");

In the code editor above, there is a single line: print("I'm a program!");. This line of code is just telling the computer, "print the statement 'I'm a program!' to the output". We are just telling the computer what to do in a language that it can understand. When looking at a program, the computer will generally work its way down the program, executing one line at a time. For example, consider the following program:

  1. print("Hello, world!");
  2. print("It's a great day to be alive!");
  3. print("It's a great day to learn about coding!");

In the above program, there are now three lines of code. The computer just works its way down those three lines of code, executing each line of code when it gets to it. Try editing some of those lines, or adding your own! See how it changes the output to the right.

There are many different types of programming, and many different programming "languages". We won't deal with the differences between these languages and types of languages - instead we will use a particular language, JavaScript, to help us in our exploration of general coding ideas.

Adding Comments to Code

In JavaScript we can add comments to code using // notation. So, // THIS IS A COMMENT will be interpreted as a comment, and the computer will not do anything with it. It's just so that we can add comments to our code so we can remember what we did. You will see these comments regularly throughout the code in this site.

Math Capabilities

JavaScript has some built-in math operators, such as addition (+), subtraction (-), multiplication (*), and division (/). You can also use parentheses for grouping, like in math. The editor below shows some these operators in use.

  1. print(3 + 5);
  2. print(10/2);
  3. print(5 + (3*2));
  4. print(6/(2+1));

When doing math in JavaScript (and other programming languages), it is important to write math statements in a way that the computer can understand. As an example, the computer won't understand 3(5). You will need to enter 3*(5) instead.

To make this site more fun, mathematically, I have added a handful of extra math capabilities. For example, I have added some useful mathematical functions and constants - including the constant ee and π\pi, as well as trigonometric and logarithmic functions. The editor below shows some of these math functions. It's okay if you don't know what all of them are, just be aware that you have some additional math functions available.

  1. // Constants
  2. print( e );
  3. print( pi );
  4. // Trig functions
  5. print( sin(0.5) );
  6. print( cos(0.5) );
  7. print( tan(0.5) );
  8. print( arcsin(0.5) );
  9. // 3^2 is written as pow(3, 2)
  10. print( pow(3, 2) );
  11. // log_4(16) written as log(16, 4)
  12. print( log(16, 4) );
  13. // Natural log
  14. print( ln(e) );

The table below is a list of the additional math functions and what they do.

Function/ConstantDescriptionExample
eThe constant ee2*e for 2e 2\cdot e
piThe constant π\pipi/2 for π2\frac{\pi}{2}
pow(a, b)Base to a powerpow(3, 7) for 373^7
abs()Absolute valueabs(-5) for 5|-5|
sqrt()The square root functionsqrt(16) for 16\sqrt{16}
nroot(x, n)nth rootnroot(27, 3) gives 273\sqrt[3]{27}
sin()The sine functionsin(pi/2) for sin(π2)\sin\left(\frac{\pi}{2}\right)
cos()The cosine functioncos(pi/2) for cos(π2)\cos\left(\frac{\pi}{2}\right)
tan()The tangent functiontan(pi/4) for tan(π4)\tan\left(\frac{\pi}{4}\right)
asin(), arcsin()The inverse sine functionasin(0.5) for sin1(0.5)\sin^{-1}(0.5)
acos(), arccos()The inverse cosine functionacos(0.5) for cos1(0.5)\cos^{-1}(0.5)
atan(), arctan()The inverse tangent functionatan(0.5) for tan1(0.5)\tan^{-1}(0.5)
exp()The exponential function (base e)exp(2) gives exp(2)=e2\exp(2) = e^2
log(x, b)The log function, base blog(100) for log(100)\log(100), log(16,4) for log4(16)\log_4(16)
ln()The natural log functionln(e) gives ln(e)\ln(e)
gcd(a, b)The greatest common denominator of a and bgcd(25, 15) returns 5
lcm(a, b)The least common multiple of a and blcm(7, 5) returns 35.
ceil()The ceiling functionceil(2.3) for 2.3\lceil 2.3 \rceil
floor()The floor functionfloor(2.3) for 2.3\lfloor 2.3 \rfloor