Susan Horwitz University of Wisconsin-Madison

Preview:

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

Citation preview

Using Peer-Led Team Learning to Increase Participation of

Under-Represented Groups in Introductory

Computer Science

Susan HorwitzUniversity 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

Why PLTL?Cone of Learning (Edgar Dale)

LECTURE

PLTL

Why PLTL: Learning Styles

• Different people learn differently

• Various ways to categorize learning styles

Why PLTL: Learning Styles

• Different people learn differently

• Various ways to categorize learning styles

– Visual

Why PLTL: Learning Styles

• Different people learn differently

• Various ways to categorize learning styles

– Visual

– Auditory

Why PLTL: Learning Styles

• Different people learn differently

• Various ways to categorize learning styles

– Visual

– Auditory

– Kinesthetic/Tactile

• Different people learn differently

• Various ways to categorize learning styles

– Visual

– Auditory

– Kinesthetic/Tactile

– Read/Write

Why PLTL: Learning Styles

• 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

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

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!

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”

EXAMPLE EXERCISE

• Hand out exercise 1 materials

• Meet your neighbor

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.

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)

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

EXAMPLE EXERCISE

• Start with the string “DEBIT-CARD”

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)

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

EXERCISE GOALS?

EXERCISE GOALS

• Practice with method calls

• Parameters

• Enforce the value of careful code tracing

• Enforce counting from zero

LEARNING STYLES?

LEARNING STYLES

• Kinesthetic: Acting out method effects

• Auditory (maybe): talking aloud

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

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”)

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

EXAMPLE EXERCISE

• Handout Exercise 2 sheets

• Form groups of 4

EXAMPLE EXERCISE

• Play the String game!

• If you finish early, write a palindrome algorithm!

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

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

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!

WHY DO PLTL?

• Great for student participants

• Great for Peer Leaders

• A lot of fun!

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

Benefits for Student Participants

• Stay engaged via hands-on activities

• Easy to form study groups

• Have fun learning

• A wonderful new set of friends!

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

Benefits for Peer Leaders

• Try out teaching

• Get to know faculty

– Prize/fellowship nominations

– Research opportunities

– Letters of recommendation

RESOURCES: PRENTICE-HALL

WE CAN HELP, TOO! www.pltlcs.org

WE CAN HELP, TOO! www.pltlcs.org

course descriptionssample exercises

WE CAN HELP, TOO! www.pltlcs.org

how to recruit/trainPeer Leaders

WE CAN HELP, TOO! www.pltlcs.org

details on eachschool’s program

WE CAN HELP, TOO! www.pltlcs.org

searchable databaseof exercises

maze

PLTL IN HIGH SCHOOL?

• Active recruiting

• Peer Leaders

• Support

PLTL IN HIGH SCHOOL?

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

• Peer Leaders

• Support

PLTL IN HIGH SCHOOL?

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

• Peer Leaders– Two-semester sequence?

• Support

PLTL IN HIGH SCHOOL?

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

• Peer Leaders– Two-semester sequence?

• Support– Admin– Companies

PLTL IN HIGH SCHOOL?

• Active recruiting

• Peer Leaders

• Support

• At least use in-class exercises!

PLTL SUMMARY

• PLTL improves retention and grades

• PLTL helps Peer Leaders, too

• PLTL is fun!

• Many resources available: try it soon

“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.

Recommended