User Tools

Site Tools


spcs:winter2014:math:day4:journal

Day 4: Research Journal

We will take 15 minutes to address these comments:

  1. http://eitanrapa2014.wordpress.com - great documentation of your projects. keep doing that.
  2. http://isabellacorbo.wordpress.com/ - Nice header. Please try the “Featured Image” option for each Post.
  3. http://franciscajara.wordpress.com - Put a picture for the About page. Needs project thumbnails. Great posts.
  4. http://isakv.wordpress.com - i love the hex picture.
  5. http://camidiaz246.wordpress.com - Fantastic and beautiful!
  6. http://matiaschen.wordpress.com - looks good. more informative posts please.
  7. http://lorenzoahn.wordpress.com - great style. great blog. check the pages/posts.
  8. http://matimooreno.wordpress.com - creative header design. more posts.
  9. http://bennettnicolas.wordpress.com - pages/post. I like your name/logo.
  10. http://vittocorbo.wordpress.com - more pictures. need links. please write your About page.
  11. http://margaritao2000.wordpress.com/ - needs a mylinks page with open processing.
  12. http://marinacastro00.wordpress.com - Wow. Amazing design. Keep it up.
  13. http://fhgaming09.wordpress.com - look for the “Featured Image” option in posts. Great work.
  14. http://danielzegers.wordpress.com - fantastic work, Daniel. Very well done.
  15. http://josefinarovira.wordpress.com/ - Great writing! Let's try a different theme.
  16. http://sebatala.wordpress.com/ - more pictures. one for every post. where's your My Links page?
  17. http://lacasadelsabio.wordpress.com - beautiful design. you have great talent.
  18. http://tomasaldana.wordpress.com/ - I like that you post a lot. please put pictures for everything. I do not see your My Links page.
  19. http://laura1200.wordpress.com/ - writing is fantastic. you almost don't need images, but please put images. Also, I don't see your My Links page for your openprocessing.

Research Journaling

We will spend 30 minutes on our research journaling.

Blog 1: Write a Post about your projects yesterday

Please include screen shots of all your projects.

Blog 2: Write a post to address these bullet points

You can use the internet:

  1. Give an example of Permutation (with repetition AND without)
  2. Give an example of Combination (with repetition AND without)
  3. Give an example of an independent probability
  4. Give an example of a dependent probability
  5. Why is the prisoners dilemma a dilemma?
  6. What is a dominant strategy?
  7. What is a nash equilibrium?
  8. What is a simultaneous game?
  9. What is the Monty Hall problem?
  10. What is information cascade?

Programming

KEY PRESS

// Name:
// Date
// Keypress project

// SECTION 1
 
int x = 20;
int y = 20;
 
 
 
 
//SECTION 2
void setup() {  //setup function called initially, only once
  size(500, 400);
  }
 
 
//SECTION 3
void draw() {  //draw function loops 
 
    background(255);    // makes it black
 
    fill(255,0,0);
 
    ellipse(mouseX,mouseY,20,20);
 
    fill(0,255,0);
 
    ellipse(x,y,20,20);
 
 
 
    if (key == 'd'){
        x = x+1;
    }
 
 
}

SCREEN SAVER BALL

int x = 50;        // variables
int y = 50;

int dx = 9;        // velocity (9,5)
int dy = 5;

void setup() {  //setup function called initially, only once
  size(500, 250);
  background(255);  //set background white

}

void draw() {  //draw function loops 
  ellipse(x,y,20,20);
  x = x + dx;
  y = y + dy;
  
  if (x > 500) {        // X axis collision
      dx = -9;
  }
  else if (x < 0) {
      dx = 9;
  }
  
  if (y > 250)  {      // Y axis collision
      dy *= -1;        // the same as dy = dy*(-1)
  }
  else if (y < 0) {
      dy *= -1;
  }
}
/soe/sherol/.html/teaching/data/pages/spcs/winter2014/math/day4/journal.txt · Last modified: 2014/01/09 11:29 by ffpaladin