Oh yeah, i forgot to mention that the next scribe will be DINO.
Thursday, September 27, 2007
Wednesday, September 26, 2007
Slow driver, or maniac driver? That is the question...
The above image is of a zoomed-in portion of the graph (upper-right portion), which was used to then transition how we would calculate the velocity for time intervals in units of seconds (such as 1 second, or 0.5 seconds). As we may know, seconds are extremely short amounts of time, and calculating this velocity is approximately and yet increasingly similar to determing the instantaneous velocity immediate to that interval. This meaning that since we are calculating the ratio of the change in distance to the change in time, as the change in time decreases, the distance values are ever closer, narrowing into some specific value.
We attempted to absorb the true connection of the secant line and it's importance to the concept of the derivative to a certain extent. Mr. K then altered the distance and time variables of the graph help dignify this connection by explaining how we are determining the rate of change within the graph.
This graph illustrates this explanation. The alteration is visible as a function of the volume of a balloon in terms of it's radius as it is being filled. The graph portrays how we would expect to determine the rate of change of the overall filling process over intervals, on average, or as a cumulative generality. This rate of change was given by the triangles we found earlier, which were formed by specific secant lines. As shown below, and through the above explanation of determining increasingly miniscule time intervals of units in seconds, Mr. K once again elaborated on the secant line and revisited an aforementioned comparison.
From the long magenta line, which is a secant, we can see that as we found smaller and smaller intervals (leading to smaller secant lengths) we achieved larger average velocity values. But as we also outlined, examining these intervals using secant lines (determining the slope/rate of change) with an increasingly insignificant amount of change, we can see how the line then becomes closer and closer to acting as if it were a tangent line. This means that by using secant lines with an ascendingly small change in values, is like determining the instantaneous velocity approximate to that point. As this change approaches an infinitely small amount, the instantaneous rate of change becomes more apparent and more accurate. This, in essence, is the concept of the derivative.
To conclude our class, we shortly discussed what day our first calculus test of the year lands on, which is friday in case anyone missed that, and we also covered what questions will be due for homework tomorrow (chapter 1, pages 76-82) and the homework for the weekend on derivatives (exercise 2.1, all odd questions including 6 and 12). I will now conclude this scribe post by conveying the aptly subtle, yet beautiful analogy Mr. K used to contrast the significance and vastness of the concept of the derivative to another profoundly familiar concept. He stated that his son asked him what a decimal was, and Mr. K simply explained to him that a decimal is used to indicate values less than 1 instead of using fractions. He said that decimals have a more universal and prolific usage than just to indicate number less than 1, but to comprehend the subject fully, one must start somewhere and build up their knowledge. This is the same as the derivative, though we can analyze it's uses and it's essential meaning and implications, it's just the birth of our progressively intricate understanding of the derivative.
Enough of that, I think I covered the entire class now, I hope I helped anyone if they didn't understand something in class, or if anyone other than my classmates that require help, have come no further but to seek sufficiently helpful information here at our very own blog. Please, feel obligated to leave any comments, feedback, corrections or questions that you may have. But for now, I bid everyone goodday and have a great night!
The next scribe will be Mark!
Today's Slides: September 26
To see a larger image of the slides go here. When you get there you'll see a button in the bottom right-hand corner that says [full]. Click it and the slides will display in full screen mode.
Monday, September 24, 2007
Scribe (O.o) Pre-test
Most of the questions were not a large surprise nor were they difficult except a few.
One of them was Question 2 on Slide 2/7. The graph of this function displays a beautiful parabola with two roots. However, if you zoom out on your calculator multiple times or analyze the equation: f(X) = X^2 - e^(0.1X) you will notice that e^(0.1X) will eventually become so large that it will guide the graph down to form the third root.
A second and last question that involved issues was Question 1 on the second page (Slide 7/7). For Question 3a, it involved simple work of finding the area of three triangles without the shaded area, within the rectangle. After finding those three areas, we algebraically subtract the sum of the trio from the total area of the rectangle (LW = 8x6 = 48).
For Question 3b, we find that the domain is [o,6]. Sadly however, I cannot remember how.
For Question 3c, the least and greatest values of the triangle is found via the graphing calculator for quickest solutions. Within the domain of [0,6], we find these two solutions by solving for the minimum and the maximum value.
TOMORROW's SCRIBE IS: MrSiwwy!
Test on Thursday! Be Prepared!
Today's Slides: September 24
To see a larger image of the slides go here. When you get there you'll see a button in the bottom right-hand corner that says [full]. Click it and the slides will display in full screen mode.
Saturday, September 22, 2007
Scribe's Scratches
Well there's the slideshow, didn't upload like it was on the smart software and I tried in 5 different formats...
If you want some more practice I attempted to make an applet in JAVA. I must say it's one of the ugliest computer programs I've ever made and it was a heck of a time making it work online (even though it is still sketchy even now seems to work all the time on ei6 and from time to time completely kill firefox). For any computer programmer people out there who look at my code I know it could have been done better with arrays but I remembered that JAVA arrays were kinda funky compared to VB so I didn't bother re-reading that part of my book and just avoided it. Here is the program (hopefully) the code is under it for anyone else who wants to compile and use it (but I doubt it). I'll try to make a smoother, better looking, more complete(more angles) and more stable program some other time. I didn't this time because there are just too many little things that went wrong. Spent an hour debugging and the bug was a single equals sign. ugh.
import java.applet.Applet;
import java.awt.Button;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Label;
import java.awt.MediaTracker;
import java.awt.TextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.net.URL;
public class TrigQGenerator extends Applet{
Boolean firstQuestionAsked = false;
Color bgColor;
URL path;
//for future versions w/ images
MediaTracker mTracker;
Button submit;
Button squareRootButton;
Button newQuestion;
TextField answerArea;
Label questionDisplay;
Label answerDisplay;
Label rightLabel;
Label wrongLabel;
int right, wrong;
int rand;
String question = "Questions will appear here";
String answer;
String textToDisplay;
final String answer1 = "1/2";
final String answer2 = "sqr(2)/2";
final String answer3 = "sqr(3)/2";
final String answer4 = "1/sqr(3)";
final String answer5 = "1";
final String answer6 = "sqr(3)";
final String squareRoot = "sqr(";
final String question1 = "What is the sine of pi/6?";
final String question2 = "What is the sine of pi/4?";
final String question3 = "What is the sine of pi/3?";
final String question6 = "What is the cosine of pi/6?";
final String question5 = "What is the cosine of pi/4?";
final String question4 = "What is the cosine of pi/3?";
final String question7 = "What is the tangeant of pi/6?";
final String question8 = "What is the tangeant of pi/4?";
final String question9 = "What is the tangeant of pi/3?";
String[] answers;
String[] questions;
public void init(){
mTracker = new MediaTracker(this);
setLayout(null);
submit = new Button("Submit");
submit.setBounds(20,100,100,40);
submit.addActionListener(new ButtonSubmitListener());
squareRootButton = new Button("Square Root");
squareRootButton.setBounds(120, 100, 100, 40);
squareRootButton.addActionListener(new SquareRootButtonListener());
newQuestion = new Button("New Question");
newQuestion.setBounds(220,100,100,40);
newQuestion.addActionListener(new ButtonNewQuestionListener());
rightLabel= new Label("Right: 0");
rightLabel.setBounds(20,60,100,40);
rightLabel.setBackground(Color.green);
wrongLabel = new Label("Wrong: 0");
wrongLabel.setBounds(220,60,100,40);
wrongLabel.setBackground(Color.red);
add(squareRootButton);
add(submit);
add(rightLabel);
add(wrongLabel);
add(newQuestion);
answerArea = new TextField("Answer Here");
answerArea.setBounds(120, 60, 100, 40);
add(answerArea);
questionDisplay = new Label("Questions will appear here");
questionDisplay.setBounds(20,20,300,40);
add(questionDisplay);
try {
//gets the path the applet is in
path = getDocumentBase();
}catch (Exception e) {
}
bgColor = Color.black;
setBackground(bgColor);
//this TC block waits for everything to be loaded
try {
mTracker.waitForAll();
}catch (InterruptedException e) {
}
}
public void stop(){
}
public void paint(Graphics g){
}
public void generateQuestion(){
String currentQuestion = questionDisplay.getText();
while (currentQuestion.equals(question)){
rand = (int)(Math.random()*9);
if (rand == 1) {
question = question1;
answer = answer1;
}
if (rand == 2) {
question = question2;
answer = answer2;
}
if (rand == 3) {
question = question3;
answer = answer3;
}
if (rand == 4) {
question = question4;
answer = answer1;
}
if (rand == 5) {
question = question5;
answer = answer2;
}
if (rand == 6) {
question = question6;
answer = answer3;
}
if (rand == 7) {
question = question7;
answer = answer4;
}
if (rand == 8) {
question = question8;
answer = answer5;
}
if (rand == 9) {
question = question9;
answer = answer6;
}
}
displayQuestion();
}
class SquareRootButtonListener implements ActionListener {
public void actionPerformed(ActionEvent event){
String currentText = answerArea.getText();
currentText = currentText + squareRoot;
answerArea.setText(currentText);
}
}
class ButtonSubmitListener implements ActionListener {
public void actionPerformed(ActionEvent event) {
if (questionDisplay.getText() == "Questions will appear here") {
} else {
if (answer.equals(answerArea.getText())){
rightAnswer();
} else {
wrongAnswer();
}
}
}
}
class ButtonNewQuestionListener implements ActionListener{
public void actionPerformed(ActionEvent event){
firstQuestionAsked = true;
generateQuestion();
answerArea.setText("");
}
}
public void displayQuestion(){
questionDisplay.setText(question);
}
public void rightAnswer(){
right++;
textToDisplay = Integer.toString(right);
textToDisplay = "Right: " + textToDisplay;
rightLabel.setText( textToDisplay);
}
public void wrongAnswer(){
wrong++;
textToDisplay = Integer.toString(wrong);
textToDisplay = "Wrong: " + textToDisplay;
wrongLabel.setText(textToDisplay);
}
}
THE NEXT SCRIBE IS TIMMY!
Friday, September 21, 2007
Today's Slides: September 21
To see a larger image of the slides go here. When you get there you'll see a button in the bottom right-hand corner that says [full]. Click it and the slides will display in full screen mode.