MAT342/CPS342 Numerical Analysis Spring 2017

Size: px
Start display at page:

Download "MAT342/CPS342 Numerical Analysis Spring 2017"

Transcription

1 MAT342/CPS342 Numerical Analysis Spring 2017 General Information Meeting Time and Place Monday, Wednesday, and Friday: 2:10 3:10 p.m., KOS 126. Professor Dr. Jonathan Senning, 246 Ken Olsen Science Center , Office Hours Monday, Wednesday, Friday: 3:20 4:20 p.m., Tuesday and Thursday: 1:30 3:00 p.m., and by appointment. Text Numerical Mathematics and Computing, 7th Edition, W. Cheney and D. Kincaid, Brooks/Cole, Prerequisite Satisfactory completion of two semesters of calculus and the ability to write simple computer programs with conditionals and looping structures. Students will benefit from already having taken MAT225 Differential Equations and/or MAT232 Linear Algebra. Online Materials Online materials associated with this class can be found on the departmental web server at Grades will be maintained using Blackboard. Students with Disabilities Gordon College is committed to assisting students with documented disabilities. (See Academic Catalog Appendix C, for documentation guidelines.) A student with a disability who may need academic accommodations should follow this procedure: 1. Meet with a staff person from the Academic Support Center (Jenks 412, x4746) to: a) make sure documentation of your disability is on file in the ASC, b) discuss the accommodations for which you are eligible, c) discuss the procedures for obtaining the accommodations, and d) obtain a Faculty Notification Form. 2. Deliver a Faculty Notification Form to each course professor within the first full week of the semester; at that time make an appointment to discuss your needs with each professor. Last Modified: :19:58 AM 1

2 Failure to register in time with your professor and the ASC may compromise our ability to provide the accommodations. Questions or disputes about accommodations should be immediately referred to the Academic Support Center. See Grievance Procedures available from the ASC. Course Description Introduction In many disciplines, certainly in the natural sciences and many social sciences, there exist problems which can be modeled mathematically such that solving the mathematical model requires the solution of differential equations. Aside from simple textbook problems, most of these differential equations must be solved numerically, often by reducing the problem to that of solving one or more linear systems. Other problems also arise frequently: finding the solutions to single variable and multivariable equations, fitting functions to data, generating random numbers, etc. While the numerical problems we survey in this course are fairly simple, all of topics we will discuss are used in various ways in the solution of much more complicated problems. Some of the applications are easy to see and will be pointed out to you; others are more subtle. By now you know that what comes out of a computer is only as good as what goes in; actually it might be better to say that what comes out of a computer is no better than what goes in. Other difficulties can arise as well. We will see that it is not good enough to simply solve a mathematical problem, we also must justify, to ourselves at the very least but usually to whoever we are solving the problem for, that our answer is correct with a certain degree of accuracy. Course Content and Objectives This course will cover most of Chapters 1 12: Chapter 1: Mathematical Preliminaries and Floating-Point Representation Chapter 2: Linear Systems Chapter 3: Nonlinear Equations Chapter 4: Interpolation and Numerical Differentiation Chapter 5: Numerical Integration Chapter 6: Spline Functions Chapter 7: Initial Value Problems Chapter 8: More on Linear Systems Chapter 9: Least Squares Methods and Fourier Series Chapter 10: Monte Carlo Methods and Simulation Chapter 11: Boundary Value Problems Chapter 12: Partial Differential Equations Students completing this course will be able to effectively use computational tools to solve a variety of mathematical problems, specifically those listed above, understand and avoid potential sources of error in numerical methods, and quantify the possible error in numerical solutions. 2

3 Procedure and Expectations Class time will primarily be devoted to lecture and discussion. I encourage you to ask questions during class regarding the material presented and at times I may ask you to perform some work during our class meeting times. For each semester hour of credit, students should expect to spend a minimum of 2 3 hours per week outside of class in engaged academic time. This time includes reading, writing, studying, completing assignments, lab work, or group projects, among other activities. I expect that during class you will not use your cell phone, tablet or laptop for non-class related conversations or activities. These activities prevent you from fully concentrating on our topic and they are often distracting to those around you. Course Requirements Attendance You are expected to attend class and will be responsible for what transpires in class regardless of your attendance. As a courtesy to others, please avoid arriving late and do not leave during class unless it is an emergency or you have made prior arrangements with me. If you are aware of classes you will need to miss because of field trips, athletic events, or for personal reasons, please let me know in advance. Homework Assignments Homework assignments will be assigned throughout the semester and will usually be due the following class period. Late homework will generally not be accepted except in unusual circumstances or by prior arrangement with the instructor. You are expected to attempt all the assigned problems before the next class period. The following are required for all assignments: Assignments are to be done on 8.5x11 paper. Pages must not have ragged edges from spiral bound notebooks. Solutions should be laid out in an organized, legible manner and presented in the order that they were assigned. Final answers (where appropriate) should be clearly marked, either by highlighting or by enclosing in a neat circle or box. Multiple page assignments must be fastened (e.g. stapled but not folded) together. You are permitted to work together on the homework assignments. However, the work you turn in should be your own. These problems should be considered tools to help you better understand the theory and to become more proficient with the techniques of this course. It is essential that you understand the solution to each problem in order to derive the greatest benefit from this course. Computer Problems Throughout the semester you will be problems that require the use of a computer and frequently will involve small amounts of programming. These will vary in complexity and are designed to give you some hands-on experience with the concepts and methods discussed in the class. While all of these exercises could be carried out using programming languages such as C++ or Java, we will use the high- 3

4 level languages Python ( Octave ( or MATLAB. These interpreted languages have the advantage that one can issue commands interactively or group commands together to form a program. We will use these languages to "tinker" with the topics we are working on and also to create entire programs designed to solve specific problems. Term Project Each student will carry out a research project during the semester. These will be done in teams of two or individually. Ideally this project will allow you to explore an area where numerical computing overlaps another area of interest that you have. You will need to choose a topic and discuss it with me to get my approval during the first four weeks of the semester. These projects should involve programming and numerical experiments as well as have a significant writing component. You will need to locate and utilize references beyond our text, carry out your experimentation and then write a report that explains your work in a coherent manner. The projects will be due two weeks before the end of the semester to allow me time to comment on them and return them to you for revisions. The final version will be due at the end of the semester. Examinations There will be a midterm exam and a comprehensive take-home final exam. Any missed exam will receive the grade of zero. You may petition me in writing if you must miss an exam. This should be done as soon as possible, preferably before the exam. If I agree that you have a valid reason to miss the exam during the scheduled hour, I will arrange an alternative time for you to take the exam. Grading Procedure Your final average will be computed using the following table: Component Percentage Homework 20% Computer Exercises 20% Term Project 20% Midterm 20% Final 20% The following table shows the correspondence between the final average and letter grades. (100 96] A+ (88 84] B+ (76 72] C+ (64 60] D+ (96 92] A (84 80] B (72 68] C (60 56] D (92 88] A (80 76] B (68 64] C (56 52] D 4

5 Tentative Schedule Date Section(s) Topic Project Jan 20, Fri 1.1 Introduction Jan 23, Mon 1.2 Mathematical Preliminaries: Taylor Series Jan 25, Wed 1.3 Floating-Point Representation Jan 27, Fri 1.4 Loss of Significance Jan 30, Mon 2.1 Naïve Gaussian Elimination Feb 1, Wed 2.2 Gaussian Elimination with Scaled Partial Pivoting Feb 3, Fri 2.3 Tridiagonal and Banded Systems Feb 6, Mon 3.1 Bisection Method Feb 8, Wed 3.2 Newton's Method Feb 10, Fri 3.3 Secant Method Feb 13, Mon 4.1 Polynomial Interpolation Init. Topic Feb 15, Wed 4.2 Errors in Polynomial Interpolation Feb 17, Fri 4.3 Estimating Derivatives and Richardson Extrapolation Feb 20, Mon 5.1 Numerical Integration Feb 22, Wed 5.1 Trapezoid Method Feb 24, Fri 5.2 Romberg Algorithm Feb 27, Mon 5.3 Simpson's Rule and Adaptive Simpson's Rule Mar 1, Wed 5.4 Gaussian Quadrature Formulas Final Topic Mar 3, Fri 6.1 First-Degree and Second-Degree Splines Mar 6, Mon 6.2 Natural Cubic Splines Mar 8, Wed Midterm Exam: Chapters 1 6 Mar 10, Fri No Class Quad Finals Mar 13, Mon No Class Spring Break Mar 15, Wed No Class Spring Break Mar 17, Fri No Class Spring Break Mar 20, Mon 7.1 Taylor Series Methods Mar 22, Wed 7.2 Runge-Kutta Methods Mar 24, Fri 7.3 Adaptive Runge-Kutta Method Mar 27, Mon 7.3 Multistep Methods Outline due Mar 29, Wed 7.4 Methods for First and Higher Order Systems Mar 31, Fri 8.1 Matrix Factorizations Apr 3, Mon 8.4 Iterative Solutions of Linear Systems Apr 5, Wed 9.1 Method of Least Squares Apr 7, Fri 9.2 Orthogonal Systems and Chebyshev Polynomials Apr 10, Mon 9.3 Other Examples of the Least-Squares Principle Apr 12, Wed 10.1 Random Numbers Apr 14, Fri No Class Good Friday Apr 17, Mon No Class Easter Travel Apr 19, Wed 10.2 Est. of Areas and Volumes by Monte Carlo Techniques Apr 21, Fri 10.3 Simulation 5

6 Date Section(s) Topic Project Apr 24, Mon 11.1 Shooting Method Apr 26, Wed 11.2 A Discretization Method Paper due Apr 28, Fri Intro to 12 Partial Differential Equations and Finite Differences May 1, Mon 12.1 Parabolic Problems May 3, Wed 12.2 Hyperbolic Problems May 5, Fri 12.3 Elliptic Problems May 8, Mon Student Presentations May 10, Wed Student Presentations May 17, Wed Final exam due: 2:00 p.m. Revision due 6

Stochastic Calculus for Finance I (46-944) Spring 2008 Syllabus

Stochastic Calculus for Finance I (46-944) Spring 2008 Syllabus Stochastic Calculus for Finance I (46-944) Spring 2008 Syllabus Introduction. This is a first course in stochastic calculus for finance. It assumes students are familiar with the material in Introduction

More information

MTH 215: Introduction to Linear Algebra

MTH 215: Introduction to Linear Algebra MTH 215: Introduction to Linear Algebra Fall 2017 University of Rhode Island, Department of Mathematics INSTRUCTOR: Jonathan A. Chávez Casillas E-MAIL: jchavezc@uri.edu LECTURE TIMES: Tuesday and Thursday,

More information

Foothill College Summer 2016

Foothill College Summer 2016 Foothill College Summer 2016 Intermediate Algebra Math 105.04W CRN# 10135 5.0 units Instructor: Yvette Butterworth Text: None; Beoga.net material used Hours: Online Except Final Thurs, 8/4 3:30pm Phone:

More information

MTH 141 Calculus 1 Syllabus Spring 2017

MTH 141 Calculus 1 Syllabus Spring 2017 Instructor: Section/Meets Office Hrs: Textbook: Calculus: Single Variable, by Hughes-Hallet et al, 6th ed., Wiley. Also needed: access code to WileyPlus (included in new books) Calculator: Not required,

More information

Course Syllabus for Math

Course Syllabus for Math Course Syllabus for Math 1090-003 Instructor: Stefano Filipazzi Class Time: Mondays, Wednesdays and Fridays, 9.40 a.m. - 10.30 a.m. Class Place: LCB 225 Office hours: Wednesdays, 2.00 p.m. - 3.00 p.m.,

More information

ACTL5103 Stochastic Modelling For Actuaries. Course Outline Semester 2, 2014

ACTL5103 Stochastic Modelling For Actuaries. Course Outline Semester 2, 2014 UNSW Australia Business School School of Risk and Actuarial Studies ACTL5103 Stochastic Modelling For Actuaries Course Outline Semester 2, 2014 Part A: Course-Specific Information Please consult Part B

More information

Syllabus ENGR 190 Introductory Calculus (QR)

Syllabus ENGR 190 Introductory Calculus (QR) Syllabus ENGR 190 Introductory Calculus (QR) Catalog Data: ENGR 190 Introductory Calculus (4 credit hours). Note: This course may not be used for credit toward the J.B. Speed School of Engineering B. S.

More information

Accounting 312: Fundamentals of Managerial Accounting Syllabus Spring Brown

Accounting 312: Fundamentals of Managerial Accounting Syllabus Spring Brown Class Hours: MW 3:30-5:00 (Unique #: 02247) UTC 3.102 Professor: Patti Brown, CPA E-mail: patti.brown@mccombs.utexas.edu Office: GSB 5.124B Office Hours: Mon 2:00 3:00pm Phone: (512) 232-6782 TA: TBD TA

More information

CS/SE 3341 Spring 2012

CS/SE 3341 Spring 2012 CS/SE 3341 Spring 2012 Probability and Statistics in Computer Science & Software Engineering (Section 001) Instructor: Dr. Pankaj Choudhary Meetings: TuTh 11 30-12 45 p.m. in ECSS 2.412 Office: FO 2.408-B

More information

Spring 2014 SYLLABUS Michigan State University STT 430: Probability and Statistics for Engineering

Spring 2014 SYLLABUS Michigan State University STT 430: Probability and Statistics for Engineering Spring 2014 SYLLABUS Michigan State University STT 430: Probability and Statistics for Engineering Time and Place: MW 3:00-4:20pm, A126 Wells Hall Instructor: Dr. Marianne Huebner Office: A-432 Wells Hall

More information

THE UNIVERSITY OF SYDNEY Semester 2, Information Sheet for MATH2068/2988 Number Theory and Cryptography

THE UNIVERSITY OF SYDNEY Semester 2, Information Sheet for MATH2068/2988 Number Theory and Cryptography THE UNIVERSITY OF SYDNEY Semester 2, 2017 Information Sheet for MATH2068/2988 Number Theory and Cryptography Websites: It is important that you check the following webpages regularly. Intermediate Mathematics

More information

Class Meeting Time and Place: Section 3: MTWF10:00-10:50 TILT 221

Class Meeting Time and Place: Section 3: MTWF10:00-10:50 TILT 221 Math 155. Calculus for Biological Scientists Fall 2017 Website https://csumath155.wordpress.com Please review the course website for details on the schedule, extra resources, alternate exam request forms,

More information

COURSE WEBSITE:

COURSE WEBSITE: Intro to Financial Accounting Spring 2012 Instructor 2: Jacqueline R. Conrecode, MBA, MS, CPA Office Hours: Mondays & Wednesdays: 11:00 12:15 PM, 3:30 4:45PM Office: Lutgert Hall 3333 Office Phone: 239

More information

Math 150 Syllabus Course title and number MATH 150 Term Fall 2017 Class time and location INSTRUCTOR INFORMATION Name Erin K. Fry Phone number Department of Mathematics: 845-3261 e-mail address erinfry@tamu.edu

More information

Syllabus - ESET 369 Embedded Systems Software, Fall 2016

Syllabus - ESET 369 Embedded Systems Software, Fall 2016 Syllabus - ESET 369 Embedded Systems Software, Fall 2016 Contact Information: Professor: Dr. Byul Hur Office: 008A Fermier Telephone: (979) 845-5195 Facsimile: E-mail: byulmail@tamu.edu Web: www.tamuresearch.com

More information

SOUTHERN MAINE COMMUNITY COLLEGE South Portland, Maine 04106

SOUTHERN MAINE COMMUNITY COLLEGE South Portland, Maine 04106 SOUTHERN MAINE COMMUNITY COLLEGE South Portland, Maine 04106 Title: Precalculus Catalog Number: MATH 190 Credit Hours: 3 Total Contact Hours: 45 Instructor: Gwendolyn Blake Email: gblake@smccme.edu Website:

More information

MGMT 5303 Corporate and Business Strategy Spring 2016

MGMT 5303 Corporate and Business Strategy Spring 2016 Instructor: Dr. Scott Johnson Associate Professor William S. Spears Chair in Business Management Department MGMT 5303 Corporate and Business Strategy Spring 2016 Contact Information: Office: 320 Business

More information

Math 181, Calculus I

Math 181, Calculus I Math 181, Calculus I [Semester] [Class meeting days/times] [Location] INSTRUCTOR INFORMATION: Name: Office location: Office hours: Mailbox: Phone: Email: Required Material and Access: Textbook: Stewart,

More information

CS 1103 Computer Science I Honors. Fall Instructor Muller. Syllabus

CS 1103 Computer Science I Honors. Fall Instructor Muller. Syllabus CS 1103 Computer Science I Honors Fall 2016 Instructor Muller Syllabus Welcome to CS1103. This course is an introduction to the art and science of computer programming and to some of the fundamental concepts

More information

Nutrition 10 Contemporary Nutrition WINTER 2016

Nutrition 10 Contemporary Nutrition WINTER 2016 Nutrition 10 Contemporary Nutrition WINTER 2016 INSTRUCTOR: Anna Miller, MS., RD PHONE 408.864.5576 EMAIL milleranna@fhda.edu Write NUTR 10 and the time your class starts in the subject line of your e-

More information

MAT 122 Intermediate Algebra Syllabus Summer 2016

MAT 122 Intermediate Algebra Syllabus Summer 2016 Instructor: Gary Adams Office: None (I am adjunct faculty) Phone: None Email: gary.adams@scottsdalecc.edu Office Hours: None CLASS TIME and LOCATION: Title Section Days Time Location Campus MAT122 12562

More information

Penn State University - University Park MATH 140 Instructor Syllabus, Calculus with Analytic Geometry I Fall 2010

Penn State University - University Park MATH 140 Instructor Syllabus, Calculus with Analytic Geometry I Fall 2010 Penn State University - University Park MATH 140 Instructor Syllabus, Calculus with Analytic Geometry I Fall 2010 There are two ways to live: you can live as if nothing is a miracle; you can live as if

More information

Fall 2016 ARA 4400/ 7152

Fall 2016 ARA 4400/ 7152 Instructor information: Instructor: Sarra Tlili Office hours: Thursday 10-12 Office: Pugh Hall, 354 Email address: satlili@ufl.edu Phone: (352) 392-8678 meeting times and places Days Per Bldg Room T 08

More information

Statewide Framework Document for:

Statewide Framework Document for: Statewide Framework Document for: 270301 Standards may be added to this document prior to submission, but may not be removed from the framework to meet state credit equivalency requirements. Performance

More information

Please read this entire syllabus, keep it as reference and is subject to change by the instructor.

Please read this entire syllabus, keep it as reference and is subject to change by the instructor. Math 125: Intermediate Algebra Syllabus Section # 3288 Fall 2013 TTh 4:10-6:40 PM MATH 1412 INSTRUCTOR: Nisakorn Srichoom (Prefer to be call Ms. Nisa or Prof. Nisa) OFFICE HOURS: Tuesday at 6:40-7:40 PM

More information

BI408-01: Cellular and Molecular Neurobiology

BI408-01: Cellular and Molecular Neurobiology BI408-01: Cellular and Molecular Neurobiology Spring 2013 Instructor: Jennifer R. Kowalski, Ph.D. Office: Gallahue Hall 271 Phone: 940-8879 Office Hours: 10:00-11:30 a.m. Mon. and Wed. E-mail: jrkowals@butler.edu

More information

EECS 700: Computer Modeling, Simulation, and Visualization Fall 2014

EECS 700: Computer Modeling, Simulation, and Visualization Fall 2014 EECS 700: Computer Modeling, Simulation, and Visualization Fall 2014 Course Description The goals of this course are to: (1) formulate a mathematical model describing a physical phenomenon; (2) to discretize

More information

State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 Fall 2015 M,W,F 1-1:50 NSC 210

State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 Fall 2015 M,W,F 1-1:50 NSC 210 1 State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 Fall 2015 M,W,F 1-1:50 NSC 210 Dr. Michelle Benson mbenson2@buffalo.edu Office: 513 Park Hall Office Hours: Mon & Fri 10:30-12:30

More information

CTE Teacher Preparation Class Schedule Career and Technical Education Business and Industry Route Teacher Preparation Program

CTE Teacher Preparation Class Schedule Career and Technical Education Business and Industry Route Teacher Preparation Program 2014-2015 Career and Technical Education Business and Industry Route Teacher Preparation Program Bates Technical College offers training that prepares individuals with business and industry experience

More information

MATH 108 Intermediate Algebra (online) 4 Credits Fall 2008

MATH 108 Intermediate Algebra (online) 4 Credits Fall 2008 MATH 108 Intermediate Algebra (online) 4 Credits Fall 2008 Instructor: Nolan Rice Math Lab: T 2:00 2:50 Office: SHL 206-F Office Hours: M/F 2:00 2:50 Phone/Voice Mail: 732.6819 W 4:30 5:20 E-mail: nrice@csi.edu

More information

THE GEORGE WASHINGTON UNIVERSITY Department of Economics. ECON 1012: PRINCIPLES OF MACROECONOMICS Prof. Irene R. Foster

THE GEORGE WASHINGTON UNIVERSITY Department of Economics. ECON 1012: PRINCIPLES OF MACROECONOMICS Prof. Irene R. Foster THE GEORGE WASHINGTON UNIVERSITY Department of Economics ECON 1012: PRINCIPLES OF MACROECONOMICS Prof. Irene R. Foster Office: Monroe 323 Phone: (202) 994-6150 Walk-in Office Hours: W 2-4pm Email: fosterir@gwu.edu

More information

Spring 2015 Natural Science I: Quarks to Cosmos CORE-UA 209. SYLLABUS and COURSE INFORMATION.

Spring 2015 Natural Science I: Quarks to Cosmos CORE-UA 209. SYLLABUS and COURSE INFORMATION. Spring 2015 Natural Science I: Quarks to Cosmos CORE-UA 209 Professor Peter Nemethy SYLLABUS and COURSE INFORMATION. Office: 707 Meyer Telephone: 8-7747 ( external 212 998 7747 ) e-mail: peter.nemethy@nyu.edu

More information

Course Description. Student Learning Outcomes

Course Description. Student Learning Outcomes Instructor Nancy Lay, Office #2796 Instructor s Campus Phone (760) 355-5707; email = nancy.lay@imperial.edu Office Hours = Mondays and Wednesdays = 10:00-11:00 Tuesdays and Thursdays = 9:45-10:45 N. Lay

More information

SAT & ACT PREP. Evening classes at GBS - open to all Juniors!

SAT & ACT PREP. Evening classes at GBS - open to all Juniors! SAT & ACT PREP Evening classes at GBS - open to all Juniors! Both tests are accepted by all colleges. You may sign up for SAT Prep, ACT Prep, or both. SAT PREP Begins Mon. Jan. 22, 2018 Classes taught

More information

GEOG 473/573: Intermediate Geographic Information Systems Department of Geography Minnesota State University, Mankato

GEOG 473/573: Intermediate Geographic Information Systems Department of Geography Minnesota State University, Mankato GEOG 473/573: Intermediate Geographic Information Systems Department of Geography Minnesota State University, Mankato Syllabus Spring 2014 ----------------------------------------------------------------------------------------------------------------------------------

More information

COMM 210 Principals of Public Relations Loyola University Department of Communication. Course Syllabus Spring 2016

COMM 210 Principals of Public Relations Loyola University Department of Communication. Course Syllabus Spring 2016 COMM 210 Principals of Public Relations Loyola University Department of Communication Course Syllabus Spring 2016 Instructor: Veronica Marshall Course Schedule: Email: vmarshall@luc.edu Tuesdays and Thursdays

More information

FINANCE 3320 Financial Management Syllabus May-Term 2016 *

FINANCE 3320 Financial Management Syllabus May-Term 2016 * FINANCE 3320 Financial Management Syllabus May-Term 2016 * Instructor details: Professor Mukunthan Santhanakrishnan Office: Fincher 335 Office phone: 214-768-2260 Email: muku@smu.edu Class details: Days:

More information

School of Innovative Technologies and Engineering

School of Innovative Technologies and Engineering School of Innovative Technologies and Engineering Department of Applied Mathematical Sciences Proficiency Course in MATLAB COURSE DOCUMENT VERSION 1.0 PCMv1.0 July 2012 University of Technology, Mauritius

More information

Mathematics. Mathematics

Mathematics. Mathematics Mathematics Program Description Successful completion of this major will assure competence in mathematics through differential and integral calculus, providing an adequate background for employment in

More information

Ryerson University Sociology SOC 483: Advanced Research and Statistics

Ryerson University Sociology SOC 483: Advanced Research and Statistics Ryerson University Sociology SOC 483: Advanced Research and Statistics Prerequisites: SOC 481 Instructor: Paul S. Moore E-mail: psmoore@ryerson.ca Office: Sociology Department Jorgenson JOR 306 Phone:

More information

(Sub)Gradient Descent

(Sub)Gradient Descent (Sub)Gradient Descent CMSC 422 MARINE CARPUAT marine@cs.umd.edu Figures credit: Piyush Rai Logistics Midterm is on Thursday 3/24 during class time closed book/internet/etc, one page of notes. will include

More information

Navigating the PhD Options in CMS

Navigating the PhD Options in CMS Navigating the PhD Options in CMS This document gives an overview of the typical student path through the four Ph.D. programs in the CMS department ACM, CDS, CS, and CMS. Note that it is not a replacement

More information

COSI Meet the Majors Fall 17. Prof. Mitch Cherniack Undergraduate Advising Head (UAH), COSI Fall '17: Instructor COSI 29a

COSI Meet the Majors Fall 17. Prof. Mitch Cherniack Undergraduate Advising Head (UAH), COSI Fall '17: Instructor COSI 29a COSI Meet the Majors Fall 17 Prof. Mitch Cherniack Undergraduate Advising Head (UAH), COSI Fall '17: Instructor COSI 29a Agenda Resources Available To You When You Have Questions COSI Courses, Majors and

More information

Bittinger, M. L., Ellenbogen, D. J., & Johnson, B. L. (2012). Prealgebra (6th ed.). Boston, MA: Addison-Wesley.

Bittinger, M. L., Ellenbogen, D. J., & Johnson, B. L. (2012). Prealgebra (6th ed.). Boston, MA: Addison-Wesley. Course Syllabus Course Description Explores the basic fundamentals of college-level mathematics. (Note: This course is for institutional credit only and will not be used in meeting degree requirements.

More information

Soil & Water Conservation & Management Soil 4308/7308 Course Syllabus: Spring 2008

Soil & Water Conservation & Management Soil 4308/7308 Course Syllabus: Spring 2008 1 Instructor: Dr. Clark Gantzer Office: 330 ABNR Building Mailbox: 302 ABNR Building Phone: 882-0611 E-mail: gantzerc@missouri.edu Office Hours: by Appointment Class Meetings: Lecture - 1:00 1: 50 pm MW

More information

CS 101 Computer Science I Fall Instructor Muller. Syllabus

CS 101 Computer Science I Fall Instructor Muller. Syllabus CS 101 Computer Science I Fall 2013 Instructor Muller Syllabus Welcome to CS101. This course is an introduction to the art and science of computer programming and to some of the fundamental concepts of

More information

PSYCHOLOGY 353: SOCIAL AND PERSONALITY DEVELOPMENT IN CHILDREN SPRING 2006

PSYCHOLOGY 353: SOCIAL AND PERSONALITY DEVELOPMENT IN CHILDREN SPRING 2006 PSYCHOLOGY 353: SOCIAL AND PERSONALITY DEVELOPMENT IN CHILDREN SPRING 2006 INSTRUCTOR: OFFICE: Dr. Elaine Blakemore Neff 388A TELEPHONE: 481-6400 E-MAIL: OFFICE HOURS: TEXTBOOK: READINGS: WEB PAGE: blakemor@ipfw.edu

More information

Sociology 521: Social Statistics and Quantitative Methods I Spring Wed. 2 5, Kap 305 Computer Lab. Course Website

Sociology 521: Social Statistics and Quantitative Methods I Spring Wed. 2 5, Kap 305 Computer Lab. Course Website Sociology 521: Social Statistics and Quantitative Methods I Spring 2012 Wed. 2 5, Kap 305 Computer Lab Instructor: Tim Biblarz Office hours (Kap 352): W, 5 6pm, F, 10 11, and by appointment (213) 740 3547;

More information

ME 4495 Computational Heat Transfer and Fluid Flow M,W 4:00 5:15 (Eng 177)

ME 4495 Computational Heat Transfer and Fluid Flow M,W 4:00 5:15 (Eng 177) ME 4495 Computational Heat Transfer and Fluid Flow M,W 4:00 5:15 (Eng 177) Professor: Daniel N. Pope, Ph.D. E-mail: dpope@d.umn.edu Office: VKH 113 Phone: 726-6685 Office Hours:, Tues,, Fri 2:00-3:00 (or

More information

Lahore University of Management Sciences. FINN 321 Econometrics Fall Semester 2017

Lahore University of Management Sciences. FINN 321 Econometrics Fall Semester 2017 Instructor Syed Zahid Ali Room No. 247 Economics Wing First Floor Office Hours Email szahid@lums.edu.pk Telephone Ext. 8074 Secretary/TA TA Office Hours Course URL (if any) Suraj.lums.edu.pk FINN 321 Econometrics

More information

CHEM 6487: Problem Seminar in Inorganic Chemistry Spring 2010

CHEM 6487: Problem Seminar in Inorganic Chemistry Spring 2010 CHEM 6487: Problem Seminar in Inorganic Chemistry Spring 2010 Instructor: Dr. Stephen M. Holmes Course Time: 10 AM Friday Office Location: 418 Benton Hall Course Location: 451 Benton Hall Email: holmesst@umsl.edu

More information

ECO 3101: Intermediate Microeconomics

ECO 3101: Intermediate Microeconomics ECO 3101: Intermediate Microeconomics Spring Semester 2016 Syllabus Instructor: Alberto Ortega Time: T&Th 4:05pm-6:00pm Email: aorte013@ufl.edu Place: MAT 112 Course Pages: 1. http://elearning.ufl.edu/

More information

MATH 205: Mathematics for K 8 Teachers: Number and Operations Western Kentucky University Spring 2017

MATH 205: Mathematics for K 8 Teachers: Number and Operations Western Kentucky University Spring 2017 MATH 205: Mathematics for K 8 Teachers: Number and Operations Western Kentucky University Spring 2017 INSTRUCTOR: Julie Payne CLASS TIMES: Section 003 TR 11:10 12:30 EMAIL: julie.payne@wku.edu Section

More information

Class Mondays & Wednesdays 11:00 am - 12:15 pm Rowe 161. Office Mondays 9:30 am - 10:30 am, Friday 352-B (3 rd floor) or by appointment

Class Mondays & Wednesdays 11:00 am - 12:15 pm Rowe 161. Office Mondays 9:30 am - 10:30 am, Friday 352-B (3 rd floor) or by appointment SYLLABUS Marketing Concepts - Spring 2016 MKTG 3110-003 - Course # 23911 - Belk College of Business, UNC-Charlotte Instructor: Mrs. Tamara L. Cohen Ph: 704-687-7644 e-mail: tcohen3@uncc.edu www.belkcollegeofbusiness.uncc.edu/tcohen3

More information

Biology 1 General Biology, Lecture Sections: 47231, and Fall 2017

Biology 1 General Biology, Lecture Sections: 47231, and Fall 2017 Instructor: Rana Tayyar, Ph.D. Email: rana.tayyar@rcc.edu Website: http://websites.rcc.edu/tayyar/ Office: MTSC 320 Class Location: MTSC 401 Lecture time: Tuesday and Thursday: 2:00-3:25 PM Biology 1 General

More information

Jeff Walker Office location: Science 476C (I have a phone but is preferred) 1 Course Information. 2 Course Description

Jeff Walker Office location: Science 476C   (I have a phone but  is preferred) 1 Course Information. 2 Course Description BIO 221 Human Physiology I Jeff Walker Office location: Science 476C E-mail: walker@maine.edu (I have a phone but e-mail is preferred) Fall 2017 1 Course Information Room Science 105 Class meetings are

More information

CALCULUS III MATH

CALCULUS III MATH CALCULUS III MATH 01230-1 1. Instructor: Dr. Evelyn Weinstock Mathematics Department, Robinson, Second Floor, 228E 856-256-4500, ext. 3862, email: weinstock@rowan.edu Days/Times: Monday & Thursday 2:00-3:15,

More information

Office Hours: Mon & Fri 10:00-12:00. Course Description

Office Hours: Mon & Fri 10:00-12:00. Course Description 1 State University of New York at Buffalo INTRODUCTION TO STATISTICS PSC 408 4 credits (3 credits lecture, 1 credit lab) Fall 2016 M/W/F 1:00-1:50 O Brian 112 Lecture Dr. Michelle Benson mbenson2@buffalo.edu

More information

RTV 3320: Electronic Field Production Instructor: William A. Renkus, Ph.D.

RTV 3320: Electronic Field Production Instructor: William A. Renkus, Ph.D. RTV 3320: Electronic Field Production Instructor: William A. Renkus, Ph.D. IMPORTANT INFORMATION: Lecture: Tuesdays, Periods 6-7 (12:50 PM 1:40 PM) Room: Weimer 1070 Office Hours: Monday & Wednesday 1:45

More information

Course Name: Elementary Calculus Course Number: Math 2103 Semester: Fall Phone:

Course Name: Elementary Calculus Course Number: Math 2103 Semester: Fall Phone: Course Name: Elementary Calculus Course Number: Math 2103 Semester: Fall 2011 Instructor s Name: Ricky Streight Hours Credit: 3 Phone: 405-945-6794 email: ricky.streight@okstate.edu 1. COURSE: Math 2103

More information

COUNSELING PSYCHOLOGY 748 ADVANCED THEORY OF GROUP COUNSELING WINTER, 2016

COUNSELING PSYCHOLOGY 748 ADVANCED THEORY OF GROUP COUNSELING WINTER, 2016 Instructor: Robert L. Gleave, Ph.D. Office Phone: 422-3035 COUNSELING PSYCHOLOGY 748 ADVANCED THEORY OF GROUP COUNSELING WINTER, 2016 Required Reading: Yalom, I.D. (2005). The Theory and Practice of Group

More information

PSCH 312: Social Psychology

PSCH 312: Social Psychology PSCH 312: Social Psychology Spring 2016 Instructor: Tomas Ståhl CRN/Course Number: 14647 Office: BSB 1054A Lectures: TR 8-9:15 Office phone: 312 413 9407 Classroom: 2LCD D001 E-mail address: tstahl@uic.edu

More information

ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering

ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering Lecture Details Instructor Course Objectives Tuesday and Thursday, 4:00 pm to 5:15 pm Information Technology and Engineering

More information

Syllabus: CS 377 Communication and Ethical Issues in Computing 3 Credit Hours Prerequisite: CS 251, Data Structures Fall 2015

Syllabus: CS 377 Communication and Ethical Issues in Computing 3 Credit Hours Prerequisite: CS 251, Data Structures Fall 2015 Syllabus: CS 377 Communication and Ethical Issues in Computing 3 Credit Hours Prerequisite: CS 251, Data Structures Fall 2015 Instructor: Robert H. Sloan Website: http://www.cs.uic.edu/sloan Office: 1112

More information

Honors Mathematics. Introduction and Definition of Honors Mathematics

Honors Mathematics. Introduction and Definition of Honors Mathematics Honors Mathematics Introduction and Definition of Honors Mathematics Honors Mathematics courses are intended to be more challenging than standard courses and provide multiple opportunities for students

More information

Foothill College Fall 2014 Math My Way Math 230/235 MTWThF 10:00-11:50 (click on Math My Way tab) Math My Way Instructors:

Foothill College Fall 2014 Math My Way Math 230/235 MTWThF 10:00-11:50  (click on Math My Way tab) Math My Way Instructors: This is a team taught directed study course. Foothill College Fall 2014 Math My Way Math 230/235 MTWThF 10:00-11:50 www.psme.foothill.edu (click on Math My Way tab) Math My Way Instructors: Instructor:

More information

B.S/M.A in Mathematics

B.S/M.A in Mathematics B.S/M.A in Mathematics The dual Bachelor of Science/Master of Arts in Mathematics program provides an opportunity for individuals to pursue advanced study in mathematics and to develop skills that can

More information

EDINA SENIOR HIGH SCHOOL Registration Class of 2020

EDINA SENIOR HIGH SCHOOL Registration Class of 2020 EDINA SENIOR HIGH SCHOOL 2017-2018 Registration Class of 2020 Angela Kieffer Taylor Johnson Dylan Hackbarth Lisa Burnham Sandy Schmidt Bill Hicks Course Catalog You may find the course catalog at: http://www.edinaschools.org/ehscounseling_registration

More information

Prerequisite: General Biology 107 (UE) and 107L (UE) with a grade of C- or better. Chemistry 118 (UE) and 118L (UE) or permission of instructor.

Prerequisite: General Biology 107 (UE) and 107L (UE) with a grade of C- or better. Chemistry 118 (UE) and 118L (UE) or permission of instructor. Introduction to Molecular and Cell Biology BIOL 499-02 Fall 2017 Class time: Lectures: Tuesday, Thursday 8:30 am 9:45 am Location: Name of Faculty: Contact details: Laboratory: 2:00 pm-4:00 pm; Monday

More information

Medical Terminology - Mdca 1313 Course Syllabus: Summer 2017

Medical Terminology - Mdca 1313 Course Syllabus: Summer 2017 Medical Terminology - Mdca 1313 Course Syllabus: Summer 2017 Northeast Texas Community College exists to provide responsible, exemplary learning opportunities. April Brannon Office: Online Phone: Cell:

More information

Undergraduate Program Guide. Bachelor of Science. Computer Science DEPARTMENT OF COMPUTER SCIENCE and ENGINEERING

Undergraduate Program Guide. Bachelor of Science. Computer Science DEPARTMENT OF COMPUTER SCIENCE and ENGINEERING Undergraduate Program Guide Bachelor of Science in Computer Science 2011-2012 DEPARTMENT OF COMPUTER SCIENCE and ENGINEERING The University of Texas at Arlington 500 UTA Blvd. Engineering Research Building,

More information

Physics XL 6B Reg# # Units: 5. Office Hour: Tuesday 5 pm to 7:30 pm; Wednesday 5 pm to 6:15 pm

Physics XL 6B Reg# # Units: 5. Office Hour: Tuesday 5 pm to 7:30 pm; Wednesday 5 pm to 6:15 pm Physics XL 6B Reg# 264138 # Units: 5 Department of Humanities & Sciences (310) 825-7093 Quarter:_Spring 2016 Instructor: Jacqueline Pau Dates: 03/30/16 06/15/16 Lectures: 1434A PAB, Wednesday (6:30-10pm)

More information

San José State University Department of Psychology PSYC , Human Learning, Spring 2017

San José State University Department of Psychology PSYC , Human Learning, Spring 2017 San José State University Department of Psychology PSYC 155-03, Human Learning, Spring 2017 Instructor: Valerie Carr Office Location: Dudley Moorhead Hall (DMH), Room 318 Telephone: (408) 924-5630 Email:

More information

FINN FINANCIAL MANAGEMENT Spring 2014

FINN FINANCIAL MANAGEMENT Spring 2014 FINN 3120-004 FINANCIAL MANAGEMENT Spring 2014 Instructor: Sailu Li Time and Location: 08:00-09:15AM, Tuesday and Thursday, FRIDAY 142 Contact: Friday 272A, 704-687-5447 Email: sli20@uncc.edu Office Hours:

More information

MBA 510: Critical Thinking for Managers

MBA 510: Critical Thinking for Managers MBA 510: Critical Thinking for Managers In Workflow 1. 20BUS GR Director of Curriculum (steve_allen@ncsu.edu) 2. 20BUS Grad Head (rswarr@ncsu.edu) 3. MGMT CC Chair GR (katherine_krawczyk@ncsu.edu) 4. MGMT

More information

TCC Jim Bolen Math Competition Rules and Facts. Rules:

TCC Jim Bolen Math Competition Rules and Facts. Rules: TCC Jim Bolen Math Competition Rules and Facts Rules: The Jim Bolen Math Competition is composed of two one hour multiple choice pre-calculus tests. The first test is scheduled on Friday, November 8, 2013

More information

ME 443/643 Design Techniques in Mechanical Engineering. Lecture 1: Introduction

ME 443/643 Design Techniques in Mechanical Engineering. Lecture 1: Introduction ME 443/643 Design Techniques in Mechanical Engineering Lecture 1: Introduction Instructor: Dr. Jagadeep Thota Instructor Introduction Born in Bangalore, India. B.S. in ME @ Bangalore University, India.

More information

Business Computer Applications CGS 1100 Course Syllabus. Course Title: Course / Prefix Number CGS Business Computer Applications

Business Computer Applications CGS 1100 Course Syllabus. Course Title: Course / Prefix Number CGS Business Computer Applications Business Computer Applications CGS 10 Course Syllabus Course / Prefix Number CGS 10 CRN: 20616 Course Catalog Description: Course Title: Business Computer Applications Tuesday 6:30pm Building M Rm 118,

More information

Mathematics subject curriculum

Mathematics subject curriculum Mathematics subject curriculum Dette er ei omsetjing av den fastsette læreplanteksten. Læreplanen er fastsett på Nynorsk Established as a Regulation by the Ministry of Education and Research on 24 June

More information

Instructor: Matthew Wickes Kilgore Office: ES 310

Instructor: Matthew Wickes Kilgore Office: ES 310 MATH 1314 College Algebra Syllabus Instructor: Matthew Wickes Kilgore Office: ES 310 Longview Office: LN 205C Email: mwickes@kilgore.edu Phone: 903 988-7455 Prerequistes: Placement test score on TSI or

More information

Grading Policy/Evaluation: The grades will be counted in the following way: Quizzes 30% Tests 40% Final Exam: 30%

Grading Policy/Evaluation: The grades will be counted in the following way: Quizzes 30% Tests 40% Final Exam: 30% COURSE SYLLABUS FALL 2010 MATH 0408 INTERMEDIATE ALGEBRA Course # 0408.06 Course Schedule/Location: TT 09:35 11:40, A-228 Instructor: Dr. Calin Agut, Office: J-202, Department of Mathematics, Brazosport

More information

Math Techniques of Calculus I Penn State University Summer Session 2017

Math Techniques of Calculus I Penn State University Summer Session 2017 Math 110 - Techniques of Calculus I Penn State University Summer Session 2017 Instructor: Sergio Zamora Barrera Office: 018 McAllister Bldg E-mail: sxz38@psu.edu Office phone: 814-865-4291 Office Hours:

More information

GUIDE TO THE CUNY ASSESSMENT TESTS

GUIDE TO THE CUNY ASSESSMENT TESTS GUIDE TO THE CUNY ASSESSMENT TESTS IN MATHEMATICS Rev. 117.016110 Contents Welcome... 1 Contact Information...1 Programs Administered by the Office of Testing and Evaluation... 1 CUNY Skills Assessment:...1

More information

Probability and Game Theory Course Syllabus

Probability and Game Theory Course Syllabus Probability and Game Theory Course Syllabus DATE ACTIVITY CONCEPT Sunday Learn names; introduction to course, introduce the Battle of the Bismarck Sea as a 2-person zero-sum game. Monday Day 1 Pre-test

More information

Math 96: Intermediate Algebra in Context

Math 96: Intermediate Algebra in Context : Intermediate Algebra in Context Syllabus Spring Quarter 2016 Daily, 9:20 10:30am Instructor: Lauri Lindberg Office Hours@ tutoring: Tutoring Center (CAS-504) 8 9am & 1 2pm daily STEM (Math) Center (RAI-338)

More information

This course has been proposed to fulfill the Individuals, Institutions, and Cultures Level 1 pillar.

This course has been proposed to fulfill the Individuals, Institutions, and Cultures Level 1 pillar. FILM 1302: Contemporary Media Culture January 2015 SMU-in-Plano Course Description This course provides a broad overview of contemporary media as industrial and cultural institutions, exploring the key

More information

Intermediate Algebra

Intermediate Algebra Intermediate Algebra An Individualized Approach Robert D. Hackworth Robert H. Alwin Parent s Manual 1 2005 H&H Publishing Company, Inc. 1231 Kapp Drive Clearwater, FL 33765 (727) 442-7760 (800) 366-4079

More information

95723 Managing Disruptive Technologies

95723 Managing Disruptive Technologies 95723 Managing Disruptive Technologies Instructor Vibhanshu (Vibs) Abhishek Office: HbH 3024 Email: vibs@andrew.cmu.edu Twitter: @vibhanshu Course blog: http://www.vibhanshu.com/courses/telecom/ (Links

More information

ACC : Accounting Transaction Processing Systems COURSE SYLLABUS Spring 2011, MW 3:30-4:45 p.m. Bryan 202

ACC : Accounting Transaction Processing Systems COURSE SYLLABUS Spring 2011, MW 3:30-4:45 p.m. Bryan 202 1 The University of North Carolina at Greensboro Bryan School of Business and Economics Department of Accounting and Finance ACC 325-01: Accounting Transaction Processing Systems COURSE SYLLABUS Spring

More information

AP Calculus AB. Nevada Academic Standards that are assessable at the local level only.

AP Calculus AB. Nevada Academic Standards that are assessable at the local level only. Calculus AB Priority Keys Aligned with Nevada Standards MA I MI L S MA represents a Major content area. Any concept labeled MA is something of central importance to the entire class/curriculum; it is a

More information

Economics 100: Introduction to Macroeconomics Spring 2012, Tuesdays and Thursdays Kenyon 134

Economics 100: Introduction to Macroeconomics Spring 2012, Tuesdays and Thursdays Kenyon 134 Economics 100: Introduction to Macroeconomics Spring 2012, Tuesdays and Thursdays Kenyon 134 Instructor: Sarah Pearlman Office: Blodgett 134A E-mail: sapearlman@vassar.edu Office Hours: Tues & Wed 4:45-5:45pm

More information

Biology 10 - Introduction to the Principles of Biology Spring 2017

Biology 10 - Introduction to the Principles of Biology Spring 2017 Biology 10 - Introduction to the Principles of Biology Spring 2017 Welcome to Bio 10! Lecture: Monday and Wednesday Lab: Monday 7:00 10:00pm or 5:30-7:00pm Wednesday 7:00 10:00pm Room: 2004 Lark Hall Room:

More information

General Physics I Class Syllabus

General Physics I Class Syllabus 1. Instructor: General Physics I Class Syllabus Name: Dr. Andy Hollerman Rank: Professor of Physics Office Location: 107 Broussard Hall Office Hours: Monday to Thursday 7:00 8:00 am Monday & Wednesday

More information

Phys4051: Methods of Experimental Physics I

Phys4051: Methods of Experimental Physics I Phys4051: Methods of Experimental Physics I 5 credits This course is the first of a two-semester sequence on the techniques used in a modern experimental physics laboratory. Because of the importance of

More information

Health Sciences and Human Services High School FRENCH 1,

Health Sciences and Human Services High School FRENCH 1, Health Sciences and Human Services High School FRENCH 1, 2013-2014 Instructor: Mme Genevieve FERNANDEZ Room: 304 Tel.: 206.631.6238 Email: genevieve.fernandez@highlineschools.org Website: genevieve.fernandez.squarespace.com

More information

Mktg 315 Marketing Research Spring 2015 Sec. 003 W 6:00-8:45 p.m. MBEB 1110

Mktg 315 Marketing Research Spring 2015 Sec. 003 W 6:00-8:45 p.m. MBEB 1110 Mktg 315 Marketing Research Spring 2015 Sec. 003 W 6:00-8:45 p.m. MBEB 1110 Instructor: Joanna Gabler, Ph.D. Phone: 713-562-8523 Office: MBEB 3210 Email: joannagabler@boisestate.edu Office Hours: Mon-Fri

More information

AGN 331 Soil Science. Lecture & Laboratory. Face to Face Version, Spring, Syllabus

AGN 331 Soil Science. Lecture & Laboratory. Face to Face Version, Spring, Syllabus AGN 331 Soil Science Lecture & Laboratory Face to Face Version, Spring, 2011 Syllabus Contact Information: J. Leon Young Office number: 936-468-4544 Soil Plant Analysis Lab: 936-468-4500 Agriculture Department,

More information

We are strong in research and particularly noted in software engineering, information security and privacy, and humane gaming.

We are strong in research and particularly noted in software engineering, information security and privacy, and humane gaming. Computer Science 1 COMPUTER SCIENCE Office: Department of Computer Science, ECS, Suite 379 Mail Code: 2155 E Wesley Avenue, Denver, CO 80208 Phone: 303-871-2458 Email: info@cs.du.edu Web Site: Computer

More information

Military Science 101, Sections 001, 002, 003, 004 Fall 2014

Military Science 101, Sections 001, 002, 003, 004 Fall 2014 Military Science 101, Sections 001, 002, 003, 004 Fall 2014 Instructor Name: SFC Jonathan Whittington Email: whittingjm@sfasu.edu Phone: 936-468-4230 Office: Military Science Building, Room 104 Office

More information

Spring 2016 Stony Brook University Instructor: Dr. Paul Fodor

Spring 2016 Stony Brook University Instructor: Dr. Paul Fodor CSE215, Foundations of Computer Science Course Information Spring 2016 Stony Brook University Instructor: Dr. Paul Fodor http://www.cs.stonybrook.edu/~cse215 Course Description Introduction to the logical

More information