Presentation is loading. Please wait.

Presentation is loading. Please wait.

Mathematics throughout the CS Curriculum Support by NSF #

Similar presentations


Presentation on theme: "Mathematics throughout the CS Curriculum Support by NSF #"— Presentation transcript:

1 Mathematics throughout the CS Curriculum Support by NSF #

2 General Consensus Most CS faculty agree that math is important. Discrete Math is usually required.

3 The Problem Students study math, but don’t see the connection to their CS courses. Content Reasoning skills Why Reasoning Skills? What Reasoning Skills??

4 Beyond the Classroom Current Software is too large for one person to understand at the code level. Software engineers must work at the modular level. How do we prepare future programmers? What do they need to know? How can they reason about large programs composed of many parts?

5 What reasoning skills are necessary? Concept Inventory Boolean LogicStandard Logic Symbols, Standard Proof Techniques Discrete Math StructuresSets, Strings, Numbers, Relations, and other mathematical theories as needed Precise SpecificationsMathematical Descriptions of Software interfaces for clients and implementers. Math models for structures Pre and Post conditions for operations. Modular ReasoningEach Module needs to be proven correct only once. Verification ConditionsMathematical Assertions equivalent to the correctness of the program. Correctness ProofsApplication of Proof Techniques to the program

6 Apply in All Courses Introductory Level Programming Data Structures and Algorithms Software Engineering Theory of Programming Languages Electives

7 Motivation for Reasoning Binary search in C++ library Proven correct? Failed!

8 Need Precise Specs Need to distinguish between mathematical integers and computer integers Specs take this distinction into account.

9 Introductory Programming Informal and Formal Reasoning Reasoning Tables Reasoning based on specification without needing to see code.

10 Example Operation PlusTwo(updates i: int) requires ?? ensures i = #i + 2; Code Increment(i);

11 Increment Operation Increment (updates i: int) requires i < max_int; ensures i = #i + 1; No need to see Code i := i + 1;

12 Example Operation PlusTwo(updates i: int) requires i < max_int - 1; ensures i = #i + 2; Code Increment(i);

13 Reasoning Table Operation PlusTwo State NumberAssumeConfirm 0I0 < max_int - 1 Increment(i) 1i1 = i0 + 1i1 < max_int Increment(i) 2i2 = i1 + 1i2 = i0 + 2

14 Upper Level Formal Methods in Software Engineering Algorithms (Distinction between proving an algorithm and that an implementation meets the specification of the algorithm) Theory of Programming Languages – (Verifying Compiler Challenge)

15 Formal Methods Unit Often at end of text Missing altogether

16 Precise Specifications requires clause (pre-condition) ensures clause (post-condition) loop invariants Math modeling

17 Stack Model Stack_Family is_modeled_by Str(Entry) exemplar S; Initialization ensures S = Λ; Note: Entry is a generic type.

18 Example Operation Push(alters E: Entry; updates S: Stack); requires |S| < Max_Depth; ensures S = o #S; Operation Pop(replaces R: Entry; updates S: Stack); requires |S| > 0; ensures #S = o S;

19 Proof Rules for Verification code: Assume B; code1; Confirm Q; code; Assume B; code2; Confirm Q; -------------------------------------------------------------- code; If B then code1 else code2; endif; Confirm Q;

20 Verification Conditions Automated generation of VC’s http://resolve.cs.clemson.edu/interface/#

21 Summary To meet the challenges of current software, students need – To reason about large programs modularly – To read and write mathematical specs – To distinguish between spec and implementation


Download ppt "Mathematics throughout the CS Curriculum Support by NSF #"

Similar presentations


Ads by Google