Notes for lecture #2. In this lecture: some definitions and notation, and introduction to solving first-order linear ODEs.
Under construction.
[TOC]
import argparse | |
import os | |
import subprocess | |
import sys | |
from wand.image import Color, Image, COMPOSITE_OPERATORS | |
from wand.drawing import Drawing | |
from wand.display import display | |
import sys | |
from bs4 import BeautifulSoup | |
import requests | |
url = ("http://www.webflyer.com/travel/mileage_calculator/getmileage.php?city=" | |
"%s&city=%s&city=&city=&city=&city=&bonus=0&bonus_use_min=0&class_bonus" | |
"=0&class_bonus_use_min=0&promo_bonus=0&promo_bonus_use_min=0&min=0&min" | |
"_type=m&ticket_price=") |
import json | |
import random | |
import requests | |
import time | |
names = json.load(open('names.json')) | |
last_id = int(open('id').read().strip()) | |
url = 'http://www.osheaga.com/post-score.php' | |
headers = { |
public class Question1{ | |
public static void main(String[]args){ | |
String[] shouldBeTrue = { | |
"89012", | |
"xyZabc", | |
"123", | |
"DcbaZ", | |
}; | |
String[] shouldBeFalse = { | |
"09283dfsdfD", |
html,body{margin:0;padding:0;} | |
h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,cite,code,del,dfn,em,img,q,s,samp,small,strike,strong,sub,sup,tt,var,dd,dl,dt,li,ol,ul,fieldset,form,label,legend,button,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;font-size:100%;line-height:1;font-family:inherit;} | |
table{border-collapse:collapse;border-spacing:0;} | |
ol,ul{list-style:none;} | |
q:before,q:after,blockquote:before,blockquote:after{content:"";} | |
html{overflow-y:scroll;font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;} | |
a:focus{outline:thin dotted;} | |
a:hover,a:active{outline:0;} | |
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} | |
audio,canvas,video{display:inline-block;*display:inline;*zoom:1;} |
Lecture notes from lecture #3 of [[MATH 236]]. Material covered: some properties of vector spaces, subspaces, sums and direct sums.
[TOC]
Lecture notes from lecture #2 of [[MATH 236]]. In this lecture, we got a brief introduction to complex numbers, and were given the definition of a vector space (along with some examples).
[TOC]
Note that