uni

Thing1's amazing uni repo
Log | Files | Refs

commit f0e9681c6fc40e751da3a12e5e1ef968f926641a
parent 26f723f8e2cccc5b8859f800f1e532c0aff23b2e
Author: thing1 <thing1@seacrossedlovers.xyz>
Date:   Fri,  3 Oct 2025 14:04:04 +0100

added work

Diffstat:
MCS12020/01.10.25.md | 1-
ACS12020/03.10.25.md | 19+++++++++++++++++++
AMP10610/02.10.25.md | 12++++++++++++
APH16210/02.10.25.md | 9+++++++++
4 files changed, 40 insertions(+), 1 deletion(-)

diff --git a/CS12020/01.10.25.md b/CS12020/01.10.25.md @@ -1,4 +1,3 @@ 01/10/25 ======== - diff --git a/CS12020/03.10.25.md b/CS12020/03.10.25.md @@ -0,0 +1,19 @@ +03/10/25 +======== + +Serial +------ +- The arduino's serial port is on pins 0 and 1, when connected over usb, these ports don't work + +- Serial operations with the arduino's Serial class +``` +begin( long baudrate ) // starts serial at that baudrate +println( (int | String | float) obj ) // prints an obj with a newline +print( (int | String | float) obj ) // prints an obj +parseInt() // reads an int +``` + +Floats +------ +- `float` and `double` are the same size on the arduino + diff --git a/MP10610/02.10.25.md b/MP10610/02.10.25.md @@ -0,0 +1,12 @@ +02/10/25 +======== + +Functions +--------- +- every function has a *unique* output for every value of X, different X's can result in the same output though +- see FIG1 for domain and range +- functions that have 2 intersections arent functions, they are mappings, see FIG2 +- see FIG3 for examples of domain and range +- see FIG4 for examples of polynomials domain and range +- see FIG5 for example of quotients +- diff --git a/PH16210/02.10.25.md b/PH16210/02.10.25.md @@ -0,0 +1,9 @@ +02/10/25 +======== + +Completing the square +--------------------- +- see FIG1 for starter + - note that it links to the quadratic formula + +- make a desmos account