Susan Horwitz University of Wisconsin-Madison

53
Using Peer-Led Team Learning to Increase Participation of Under- Represented Groups in Introductory Computer Science Susan Horwitz University of Wisconsin-Madison

description

Using Peer-Led Team Learning to Increase Participation of Under-Represented Groups in Introductory Computer Science. Susan Horwitz University of Wisconsin-Madison. WHAT IS PLTL?. Active, cooperative learning in small groups: Students helping, learning from, other students - PowerPoint PPT Presentation

Transcript of Susan Horwitz University of Wisconsin-Madison

Page 1: Susan Horwitz University of Wisconsin-Madison

Using Peer-Led Team Learning to Increase Participation of

Under-Represented Groups in Introductory

Computer Science

Susan HorwitzUniversity of Wisconsin-Madison

Page 2: Susan Horwitz University of Wisconsin-Madison

WHAT IS PLTL?• Active, cooperative learning in small groups:

Students helping, learning from, other students

• Groups led by undergraduate “peer”

• Usually an add-on to regular class

• Started by chemistry: www.pltl.org

• Beneficial to both students and leaders

Page 3: Susan Horwitz University of Wisconsin-Madison

Why PLTL?Cone of Learning (Edgar Dale)

LECTURE

PLTL

Page 4: Susan Horwitz University of Wisconsin-Madison

Why PLTL: Learning Styles

• Different people learn differently

• Various ways to categorize learning styles

Page 5: Susan Horwitz University of Wisconsin-Madison

Why PLTL: Learning Styles

• Different people learn differently

• Various ways to categorize learning styles

– Visual

Page 6: Susan Horwitz University of Wisconsin-Madison

Why PLTL: Learning Styles

• Different people learn differently

• Various ways to categorize learning styles

– Visual

– Auditory

Page 7: Susan Horwitz University of Wisconsin-Madison

Why PLTL: Learning Styles

• Different people learn differently

• Various ways to categorize learning styles

– Visual

– Auditory

– Kinesthetic/Tactile

Page 8: Susan Horwitz University of Wisconsin-Madison

• Different people learn differently

• Various ways to categorize learning styles

– Visual

– Auditory

– Kinesthetic/Tactile

– Read/Write

Why PLTL: Learning Styles

Page 9: Susan Horwitz University of Wisconsin-Madison

• Different people learn differently

• Various ways to categorize learning styles

– Visual

– Auditory

– Kinesthetic/Tactile

– Read/Write

Most successful academics are read/write learners; most students are not!

Why PLTL: Learning Styles

Page 10: Susan Horwitz University of Wisconsin-Madison

Why PLTL: Learning Styles

• Different people learn differently

• Various ways to categorize learning styles

– Visual

– Auditory

– Kinesthetic/Tactile

– Read/Write

• “Don’t teach me all the time in your preferred style and think I’m not capable of learning”

Virleen Carlson, Center for Teaching and Learning Cornell University

Page 11: Susan Horwitz University of Wisconsin-Madison

A Typical CS PLTL Session

• Play Games:– Guess partner’s secret word using String

methods (substring, charAt, etc)

• Simulate Code:– Act out lines of code, method calls…

• Solve Logic Puzzles:– Sudoku, KenKen, chess mysteries…

• Write Code– Pair Programming!

Page 12: Susan Horwitz University of Wisconsin-Madison

Other Activities

• Exam review sessions

• Dinners with guest speakers

• “Field trips” to local companies

Goal: let students know a CS job doesn’t mean “sitting alone in front of a computer all day”

Page 13: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISE

• Hand out exercise 1 materials

• Meet your neighbor

Page 14: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISEmoveToFront( int pos ) Move the letter in position pos to the

beginning of the word (i.e., to position zero)

moveToEnd( int pos ) Move the letter in position pos to the end of the word.

swap( int pos1, int pos2 ) Swap the letter in position pos1 with the letter in position pos2.

reverse( int start, Reverse the order of the letters in int finish ) positions start to finish.

Page 15: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISEmoveToFront( int pos ) Move the letter in position pos to the

beginning of the word (i.e., to position zero)

moveToEnd( int pos ) Move the letter in position pos to the end of the word.

swap( int pos1, int pos2 ) Swap the letter in position pos1 with the letter in position pos2.

reverse( int start, Reverse the order of the letters in int finish ) positions start to finish.

Original word Java code word after the code executes?

HIPSH word.moveToFront(2)ZOOLOGY word.moveToEnd(0)PICKLES word.swap(0,6)AVOCADO word.reverse(4,6)

Page 16: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISEmoveToFront( int pos ) Move the letter in position pos to the

beginning of the word (i.e., to position zero)

moveToEnd( int pos ) Move the letter in position pos to the end of the word.

swap( int pos1, int pos2 ) Swap the letter in position pos1 with the letter in position pos2.

reverse( int start, Reverse the order of the letters in int finish ) positions start to finish.

Original word Java code word after the code executes?

HIPSH word.moveToFront(2) PHISHZOOLOGY word.moveToEnd(0) OOLOGYZPICKLES word.swap(0,6) SICKLEPAVOCADO word.reverse(4,6) AVOCODA

Page 17: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISE

• Start with the string “DEBIT-CARD”

Page 18: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISE

• Start with the string “DEBIT-CARD”

• Execute the following code:

word.moveToFront(7)word.moveToEnd(5)word.swap(2,5)word.reverse(3,6)word.swap(7,4)word.moveToEnd(5)word.swap(8,9)word.moveToFront(5)

Page 19: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISE

• Start with the string “DEBIT-CARD”

• Execute the following code:

word.moveToFront(7) ADEBIT-CRDword.moveToEnd(5) ADEBI-CRDTword.swap(2,5) AD-BIECRDTword.reverse(3,6) AD-CEIBRDTword.swap(7,4) AD-CRIBEDTword.moveToEnd(5) AD-CRBEDTIword.swap(8,9) AD-CRBEDITword.moveToFront(5) BAD-CREDIT

Page 20: Susan Horwitz University of Wisconsin-Madison

EXERCISE GOALS?

Page 21: Susan Horwitz University of Wisconsin-Madison

EXERCISE GOALS

• Practice with method calls

• Parameters

• Enforce the value of careful code tracing

• Enforce counting from zero

Page 22: Susan Horwitz University of Wisconsin-Madison

LEARNING STYLES?

Page 23: Susan Horwitz University of Wisconsin-Madison

LEARNING STYLES

• Kinesthetic: Acting out method effects

• Auditory (maybe): talking aloud

Page 24: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISEint length( ): return the number of characters in this string

char charAt(int index): return the character at the given index in this string (counting from zero); error if index is out of bounds

String substring(int beginIndex, int pastEnd): return the sequence of characters in this string that starts at position

beginIndex and ends at position pastEnd-1; error if beginIndex or pastEnd is out of bounds

int indexOf(char ch): return the position of the first instance of ch in this string or -1 if ch isn’t in this string

int compareTo(String anotherString): return a negative number if this string comes before anotherString in lexicographic order; zero if this string is the same as anotherString; or a positive number if this string comes after anotherString in lexicographic order

boolean equals(Object anObject): return true iff this string is the same as anObject

Page 25: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISEint length( )

char charAt( int index )

String substring( int beginIndex, int pastEnd )

int indexOf( char ch )

int compareTo( String anotherString )

boolean equals( Object anObject )

String s method call value returned by the call?

HIPSH s.length( )ZOOLOGY s.charAt(0)ZOOM s.charAt(4)PICKLES s.substring(0,3)AVOCADO s.indexOf(‘A’)CAT s.compareTo(“DOG”)CAT s.compareTo(“CAT”)CAT s.equals(“KITTEN”)

Page 26: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISEint length( )

char charAt( int index )

String substring( int beginIndex, int pastEnd )

int indexOf( char ch )

int compareTo( String anotherString )

boolean equals( Object anObject )

String s method call value returned by the call?

HIPSH s.length( ) 5ZOOLOGY s.charAt(0) ‘Z’ZOOM s.charAt(4) -- Error! --PICKLES s.substring(0,3) “PIC”AVOCADO s.indexOf(‘A’) 0CAT s.compareTo(“DOG”) a negative numberCAT s.compareTo(“CAT”) 0CAT s.equals(“KITTEN”) false

Page 27: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISE

• Handout Exercise 2 sheets

• Form groups of 4

Page 28: Susan Horwitz University of Wisconsin-Madison

EXAMPLE EXERCISE

• Play the String game!

• If you finish early, write a palindrome algorithm!

Page 30: Susan Horwitz University of Wisconsin-Madison

WHY DO PLTL?

0%10%20%30%40%50%60%70%80%90%

100%

PLTL Non PLTL

Dropped

Completed

Improve retention rates:93.2% vs 88.0%

All schools combined: 2005 - 2007

Page 31: Susan Horwitz University of Wisconsin-Madison

WHY DO PLTL?

0%10%20%30%40%50%60%70%80%90%

100%

PLTL Non PLTL

Less than B

B or Better

Improve grades:80.2% vs 68.4%

got B or better

All schools combined: 2005 - 2007

Page 32: Susan Horwitz University of Wisconsin-Madison

WHY DO PLTL?

0%10%20%30%40%50%60%70%80%90%

100%

PLTL Non PLTL

Less than B

B or Better

Improve grades:83.3% vs 70.1%

got B or better

All schools combined: 2005 - 2007

EVEN BETTER FOR WOMEN!

Page 33: Susan Horwitz University of Wisconsin-Madison

WHY DO PLTL?

• Great for student participants

• Great for Peer Leaders

• A lot of fun!

Page 34: Susan Horwitz University of Wisconsin-Madison

Benefits for Student Participants

• Learn the material at a deeper level

• Learn to work together and use everyone’s

strengths to solve problems

• Learn to see concepts or situations from

differing perspectives

• More comfort discussing ideas because of

small group size and peer leader

Page 35: Susan Horwitz University of Wisconsin-Madison

Benefits for Student Participants

• Stay engaged via hands-on activities

• Easy to form study groups

• Have fun learning

• A wonderful new set of friends!

Page 36: Susan Horwitz University of Wisconsin-Madison

Benefits for Peer Leaders

• Develop skills:– leadership & communication skills

– writing new exercises

– learn to explain new concepts in many ways

– adapt to different personalities in a positive way

– working effectively in a group

• Solidify own knowledge via helping others learn

Page 37: Susan Horwitz University of Wisconsin-Madison

Benefits for Peer Leaders

• Try out teaching

• Get to know faculty

– Prize/fellowship nominations

– Research opportunities

– Letters of recommendation

Page 38: Susan Horwitz University of Wisconsin-Madison

RESOURCES: PRENTICE-HALL

Page 39: Susan Horwitz University of Wisconsin-Madison

WE CAN HELP, TOO! www.pltlcs.org

Page 40: Susan Horwitz University of Wisconsin-Madison

WE CAN HELP, TOO! www.pltlcs.org

course descriptionssample exercises

Page 41: Susan Horwitz University of Wisconsin-Madison

WE CAN HELP, TOO! www.pltlcs.org

how to recruit/trainPeer Leaders

Page 42: Susan Horwitz University of Wisconsin-Madison

WE CAN HELP, TOO! www.pltlcs.org

details on eachschool’s program

Page 43: Susan Horwitz University of Wisconsin-Madison

WE CAN HELP, TOO! www.pltlcs.org

searchable databaseof exercises

Page 44: Susan Horwitz University of Wisconsin-Madison
Page 45: Susan Horwitz University of Wisconsin-Madison

maze

Page 46: Susan Horwitz University of Wisconsin-Madison
Page 47: Susan Horwitz University of Wisconsin-Madison

PLTL IN HIGH SCHOOL?

• Active recruiting

• Peer Leaders

• Support

Page 48: Susan Horwitz University of Wisconsin-Madison

PLTL IN HIGH SCHOOL?

• Active recruiting– Contact in-coming students– Presentations in other classes (math)

• Peer Leaders

• Support

Page 49: Susan Horwitz University of Wisconsin-Madison

PLTL IN HIGH SCHOOL?

• Active recruiting– Contact in-coming students– Presentations in other classes (math)

• Peer Leaders– Two-semester sequence?

• Support

Page 50: Susan Horwitz University of Wisconsin-Madison

PLTL IN HIGH SCHOOL?

• Active recruiting– Contact in-coming students– Presentations in other classes (math)

• Peer Leaders– Two-semester sequence?

• Support– Admin– Companies

Page 51: Susan Horwitz University of Wisconsin-Madison

PLTL IN HIGH SCHOOL?

• Active recruiting

• Peer Leaders

• Support

• At least use in-class exercises!

Page 52: Susan Horwitz University of Wisconsin-Madison

PLTL SUMMARY

• PLTL improves retention and grades

• PLTL helps Peer Leaders, too

• PLTL is fun!

• Many resources available: try it soon

Page 53: Susan Horwitz University of Wisconsin-Madison

“I thought the group would be full of CS geniuses, but actually it was a fun group.” 

"I have several lectures that same day, and I originally thought, Oh my God, by the time this comes around I'm going to be like, get me out of here. But it's actually really enjoyable. It has to be the fastest two hours of my day."

I wish my discussions were like this for every class!"

We really help each other out. Some people are better at certain things than others, so when someone has a question someone will stepup and explain it.