Data Envelopment Analysis (DEA) with Maple in Operations Research and Modeling Courses

Size: px
Start display at page:

Download "Data Envelopment Analysis (DEA) with Maple in Operations Research and Modeling Courses"

Transcription

1 Data Envelopment Analysis (DEA) with Maple in Operations Research and Modeling Courses Wm C Bauldry BauldryWC@appstate.edu wmcb March, 2009

2 Abstract We will present the Data Envelopment Analysis technique using Maple. This topic is natural for introductory Operations Research or Math Modeling courses. A sample student project (that can raise a dean s eyebrows) will be given. ICTCM-21: 2 41

3 Introduction What is Data Envelopment Analysis? Data Envelopment Analysis (DEA), occasionally called frontier analysis, was first put forward by Charnes, Cooper and Rhodes in It is a performance measurement technique which can be used for evaluating the relative efficiency of decision-making units (DMU s) in organisations. John Beasley ICTCM-21: 3 41

4 Introduction What is Data Envelopment Analysis? Data Envelopment Analysis (DEA), occasionally called frontier analysis, was first put forward by Charnes, Cooper and Rhodes in It is a performance measurement technique which can be used for evaluating the relative efficiency of decision-making units (DMU s) in organisations. John Beasley From the field of combustion engineering, efficiency is the ratio of the actual amount of heat liberated... to the maximum amount which could be liberated. A. Charnes, W. Cooper, and E. Rhodes ICTCM-21: 4 41

5 Example Batter Data Whom to trade? Choose from among three players: Data: Player A: 100 at-bats for 40 singles & 0 home runs Player B: 100 at-bats for 20 singles & 5 home runs Player C: 100 at-bats for 10 singles & 20 home runs ICTCM-21: 5 41

6 Example Batter Data Whom to trade? Choose from among three players: Data: Player A: 100 at-bats for 40 singles & 0 home runs Player B: 100 at-bats for 20 singles & 5 home runs Player C: 100 at-bats for 10 singles & 20 home runs Analysis: Player A: no combination of B and C can equal A ICTCM-21: 6 41

7 Example Batter Data Whom to trade? Choose from among three players: Data: Player A: 100 at-bats for 40 singles & 0 home runs Player B: 100 at-bats for 20 singles & 5 home runs Player C: 100 at-bats for 10 singles & 20 home runs Analysis: Player A: no combination of B and C can equal A Player C: no combination of A and B can equal C ICTCM-21: 7 41

8 Example Batter Data Whom to trade? Choose from among three players: Data: Player A: 100 at-bats for 40 singles & 0 home runs Player B: 100 at-bats for 20 singles & 5 home runs Player C: 100 at-bats for 10 singles & 20 home runs Analysis: Player A: no combination of B and C can equal A Player B: 44%A + 25%C = B for a 69% efficiency index Player C: no combination of A and B can equal C ICTCM-21: 8 41

9 Example Graphical Analysis (2-D) ICTCM-21: 9 41

10 Strengths & Limitations Data Envelopment Analysis: Strengths & Limitations DEA Strengths: Multiple input and multiple output models Comparison against combinations of peers Inputs and outputs can have very different units ICTCM-21: 10 41

11 Strengths & Limitations Data Envelopment Analysis: Strengths & Limitations DEA Strengths: Multiple input and multiple output models Comparison against combinations of peers Inputs and outputs can have very different units DEA Limitations: Extreme point technique noise in the data can cause significant error Estimates relative, not absolute efficiency Computationally intensive ICTCM-21: 11 41

12 Data Envelopment Analysis Defined DEA: Nonlinear Representation ( I-O Ratio ) Let: n number of DMUs For each DMU j, j = 1..n, define the nonlinear program: n in u i x ik n out v i y ik e k number of input measures weight factor for input i input i for DMU k number of output measures weight factor for output i output i for DMU k efficiency of DMU k Choose u, v to maximize e j subject to n out v i y ik i=1 e k = n in u i x ik i=1 k = 1..n 0 e k 100% k = 1..n u k 0 k = 1..n in v k 0 k = 1..n out ICTCM-21: 12 41

13 Data Envelopment Analysis Defined DEA: As a Linear Program ( Input Oriented ) For each DMU, i = 1..n, define the linear program minimize θ subject to X Inputs λ X i θ 0 M Outputsj λ M Outputsj,i 0 j = 1..n and λ i 0 i = 1..n (λ i can be interpreted as a dual variable.) ICTCM-21: 13 41

14 Arts & Sciences at ASU The Problem Arts & Sciences at Appalachian Task: Analyze the 16 disparate departments. ICTCM-21: 14 41

15 Arts & Sciences at ASU Initial Data Initial Arts & Sciences Data Fall, Source: Institutional Research, Assessment, & Planning, ASU ICTCM-21: 15 41

16 Arts & Sciences at ASU Scaled Data Linearly Scaled Data Return to Results ICTCM-21: 16 41

17 Arts & Sciences at ASU Data Graph Graphical Analysis (2-D) ICTCM-21: 17 41

18 Linear Program Linear Programming Analysis The Math Sciences (DMU #11) linear program is: minimize θ subject to X Inputs λ θ 0 M Outputsj λ M Outputsj,11 0, j = λ i 0, i = ICTCM-21: 18 41

19 Maple Simplex in Maple Arts & Sciences DEA Maple Setup: Use simplex[minimize] or Optimization[LPSolve] DMU := ["Anthropology", "Biology",... N := nops(dmu): ICTCM-21: 19 41

20 Maple Simplex in Maple Arts & Sciences DEA Maple Setup: Use simplex[minimize] or Optimization[LPSolve] DMU := ["Anthropology", "Biology",... N := nops(dmu): MO := Matrix([[610, 204, 3.56], [734,..., [702, 231, 4.35]]): ICTCM-21: 20 41

21 Maple Simplex in Maple Arts & Sciences DEA Maple Setup: Use simplex[minimize] or Optimization[LPSolve] DMU := ["Anthropology", "Biology",... N := nops(dmu): MO := Matrix([[610, 204, 3.56], [734,..., [702, 231, 4.35]]): eq1 := sum(λ[i],i=1..n) - θ 0: ICTCM-21: 21 41

22 Maple Simplex in Maple Arts & Sciences DEA Maple Setup: Use simplex[minimize] or Optimization[LPSolve] DMU := ["Anthropology", "Biology",... N := nops(dmu): MO := Matrix([[610, 204, 3.56], [734,..., [702, 231, 4.35]]): eq1 := sum(λ[i],i=1..n) - θ 0: OV := Vector[row](N,symbol=λ). MO: ICTCM-21: 22 41

23 Maple Simplex in Maple, II Arts & Sciences DEA Maple Computation: Results := NULL: for n from 1 to N do eq2 := OV[1] - M[n,1] 0: # credit hours eq3 := OV[2] - M[n,2] 0: # num students eq4 := OV[3] - M[n,3] 0: # degrees sys := {eq1,eq2,eq3,eq4}: s := simplex[minimize](θ, sys, NONNEGATIVE); Maple Output Form ICTCM-21: 23 41

24 Maple Simplex in Maple, II Arts & Sciences DEA Maple Computation: Results := NULL: for n from 1 to N do eq2 := OV[1] - M[n,1] 0: eq3 := OV[2] - M[n,2] 0: eq4 := OV[3] - M[n,3] 0: sys := {eq1,eq2,eq3,eq4}: # credit hours # num students # degrees s := simplex[minimize](θ, sys, NONNEGATIVE); Results := Results, [DMU[n],select(x (rhs(x)<>0),s))]; end do: Matrix([Results]); Results ICTCM-21: 24 41

25 Maple DEA: Maple Simplex Output n:= 5: eq2 := OV[1] MO[n, 1]: eq3 := OV[2] MO[n, 2]: eq4 := OV[3] MO[n, 3]: sys := {seq(eq i, i=1..4)}: DMU[n], simplex[minimize](θ,sys, NONNEGATIVE); English, {θ = , λ 1 = 0., λ 2 = , λ 3 = 0., λ 4 = 0., λ 5 = 0., λ 6 = 0., λ 7 = 0., λ 8 = 0., λ 9 = 0., λ 10 = 0., λ 11 = 0., λ 12 = , λ 13 = 0., λ 14 = , λ 15 = 0., λ 16 = 0.} Back to Code ICTCM-21: 25 41

26 Maple Results DEA: Maple Results for Arts & Sciences Matrix([Results]); Anthropology θ = λ 12 = λ 14 = Biology θ = 1.0 λ 2 = Chemistry θ = λ 2 = Computer Science θ = λ 14 = English θ = λ 12 = λ 14 = Foreign Lang & Lit θ = λ 12 = λ 14 = Geography & Planning θ = λ 2 = λ 12 = λ 14 = Geology θ = λ 2 = History θ = λ 12 = λ 14 = Interdisc Studies θ = λ 14 = Mathematical Sci θ = λ 12 = Philosophy & Religion θ = 1.0 λ 12 = Physics & Astronomy θ = λ 2 = λ 12 = Poli Sci/Crim Justice θ = 1.0 λ 14 = Psychology θ = λ 12 = λ 14 = Soc & Social Work θ = λ 12 = λ 14 = ICTCM-21: 26 41

27 Maple Results DEA: Maple Results for Arts & Sciences DMU θ% λ 1 Anthropology 79 λ 12 = 0.35, λ 14 = Biology 100 λ 2 = Chemistry 74 λ 2 = Computer Science 49 λ 2 = 0.08, λ 14 = English 74 λ 2 = 0.01, λ 12 = 0.52, λ 14 = Foreign Lang & Lit 87 λ 12 = 0.53, λ 14 = Geography & Planning 74 λ 2 = 0.20, λ 12 = 0.26, λ 14 = Geology 63 λ 2 = History 91 λ 12 = 0.61, λ 14 = Interdisc Studies 51 λ 12 = 0.04, λ 14 = Mathematical Sci 79 λ 12 = Philosophy & Religion 100 λ 12 = Physics & Astronomy 73 λ 2 = 0.44, λ 12 = 0.27, λ 14 = Poli Sci/Crim Justice 100 λ 14 = Psychology 86 λ 2 = 0.06, λ 12 = 0.11, λ 14 = Soc & Social Work 92 λ 12 = 0.38, λ 14 = 0.54 ICTCM-21: 27 41

28 Excel Results in Excel For implementing simplex using Solver in Excel, see MacDonald, or Beasley, etc. ICTCM-21: 28 41

29 Excel: Sorted Results Excel Sorted Results Back to Data ICTCM-21: 29 41

30 Student Projects A Simple Student Project Choose a college, division, or school: Identify DMUs: colleges, divisions, or departments ICTCM-21: 30 41

31 Student Projects A Simple Student Project Choose a college, division, or school: Identify DMUs: colleges, divisions, or departments Define inputs: Frequency Distribution of SAT Verbal, Math, and Writing Scores for Enrolling Freshmen ICTCM-21: 31 41

32 Student Projects A Simple Student Project Choose a college, division, or school: Identify DMUs: colleges, divisions, or departments Define inputs: Frequency Distribution of SAT Verbal, Math, and Writing Scores for Enrolling Freshmen Define outputs: number of majors and degrees awarded ICTCM-21: 32 41

33 Student Projects A Simple Student Project Choose a college, division, or school: Identify DMUs: colleges, divisions, or departments Define inputs: Frequency Distribution of SAT Verbal, Math, and Writing Scores for Enrolling Freshmen Define outputs: number of majors and degrees awarded Perform a data envelopment analysis with 3 inputs and 2 outputs ICTCM-21: 33 41

34 Student Projects A Fun Student Project Choose a college, division, or school Identify DMUs: departments, academic areas, or groups ICTCM-21: 34 41

35 Student Projects A Fun Student Project Choose a college, division, or school Identify DMUs: departments, academic areas, or groups Define inputs: number of faculty: professor, associate, assistant; number of non-tenure-track faculty: full-time, part-time; number of graduate students: GTAs, RAs, fellows; number of staff; operating budget; number of classrooms; number of laboratories; number of offices; total assignable sq ft; etc. (14) ICTCM-21: 35 41

36 Student Projects A Fun Student Project Choose a college, division, or school Identify DMUs: departments, academic areas, or groups Define inputs: number of faculty: professor, associate, assistant; number of non-tenure-track faculty: full-time, part-time; number of graduate students: GTAs, RAs, fellows; number of staff; operating budget; number of classrooms; number of laboratories; number of offices; total assignable sq ft; etc. (14) Define outputs: number of majors; number of degrees awarded; number of sections; student credit hours produced; number of publications/books; number of conference presentations; number of grant proposals: submitted, awarded; number of external committees; number of professional org offices held; etc. (10) ICTCM-21: 36 41

37 Student Projects A Fun Student Project Choose a college, division, or school Identify DMUs: departments, academic areas, or groups Define inputs: number of faculty: professor, associate, assistant; number of non-tenure-track faculty: full-time, part-time; number of graduate students: GTAs, RAs, fellows; number of staff; operating budget; number of classrooms; number of laboratories; number of offices; total assignable sq ft; etc. (14) Define outputs: number of majors; number of degrees awarded; number of sections; student credit hours produced; number of publications/books; number of conference presentations; number of grant proposals: submitted, awarded; number of external committees; number of professional org offices held; etc. (10) Perform a data envelopment analysis ICTCM-21: 37 41

38 Student Projects A Fun Student Project Choose a college, division, or school Identify DMUs: departments, academic areas, or groups Define inputs: number of faculty: professor, associate, assistant; number of non-tenure-track faculty: full-time, part-time; number of graduate students: GTAs, RAs, fellows; number of staff; operating budget; number of classrooms; number of laboratories; number of offices; total assignable sq ft; etc. (14) Define outputs: number of majors; number of degrees awarded; number of sections; student credit hours produced; number of publications/books; number of conference presentations; number of grant proposals: submitted, awarded; number of external committees; number of professional org offices held; etc. (10) Perform a data envelopment analysis Give a copy to the Dean. ICTCM-21: 38 41

39 Student Projects A Fun Student Project Choose a college, division, or school Identify DMUs: departments, academic areas, or groups Define inputs: number of faculty: professor, associate, assistant; number of non-tenure-track faculty: full-time, part-time; number of graduate students: GTAs, RAs, fellows; number of staff; operating budget; number of classrooms; number of laboratories; number of offices; total assignable sq ft; etc. (14) Define outputs: number of majors; number of degrees awarded; number of sections; student credit hours produced; number of publications/books; number of conference presentations; number of grant proposals: submitted, awarded; number of external committees; number of professional org offices held; etc. (10) Perform a data envelopment analysis Give a copy to the Dean. Run. ICTCM-21: 39 41

40 Student Projects A Fun Student Project Choose a college, division, or school Identify DMUs: departments, academic areas, or groups Define inputs: number of faculty: professor, associate, assistant; number of non-tenure-track faculty: full-time, part-time; number of graduate students: GTAs, RAs, fellows; number of staff; operating budget; number of classrooms; number of laboratories; number of offices; total assignable sq ft; etc. (14) Define outputs: number of majors; number of degrees awarded; number of sections; student credit hours produced; number of publications/books; number of conference presentations; number of grant proposals: submitted, awarded; number of external committees; number of professional org offices held; etc. (10) Perform a data envelopment analysis Give a copy to the Dean. Run. Hide. ICTCM-21: 40 41

41 Bibliography Selected References Charnes A., Cooper W.W. and Rhodes E. (1978) Measuring the efficiency of decision making units, Eur. J. Opl. Res. 2, Charnes, A., Cooper, W.W., Lewin, A.Y., Seiford, L.M. (Eds.) (1995) Data Envelopment Analysis: Theory, Methodology and Applications, Springer. Tavares G. (2002), A Bibliography Of Data Envelopment Analysis ( ), RUTCOR Research Report, RRR Rutgers University pdf (3203 entries) ICTCM-21: 41 41

CSCU Exercise Science Transfer Pathway

CSCU Exercise Science Transfer Pathway 0 CSCU Exercise Science Transfer Pathway Archive AY2017-2018 The Exercise Science Transfer Degree is offered at four Community Colleges (GCC, MCC, NCC, TRCC) and received at three State Universities (CCSU,

More information

BECOMING A DANTES FULLY FUNDED DSST TEST CENTER

BECOMING A DANTES FULLY FUNDED DSST TEST CENTER BECOMING A DANTES FULLY FUNDED DSST TEST CENTER PRESENTED BY KRISTINA LEMMER * WESTERN TECHNICAL COLLEGE MONDAY, JUNE 26, 2017 * 3:15-4:00 PM * LUNDA CENTER TESTING SERVICES AT WESTERN Assessment Services

More information

Evaluation of Efficiency in DEA Models Using a Common Set of Weights

Evaluation of Efficiency in DEA Models Using a Common Set of Weights Evaluation of in DEA Models Using a Common Set of Weights Shinoy George 1, Sushama C M 2 Assistant Professor, Dept. of Mathematics, Federal Institute of Science and Technology, Angamaly, Kerala, India

More information

Modified Model for Finding Unique Optimal Solution in Data Envelopment Analysis

Modified Model for Finding Unique Optimal Solution in Data Envelopment Analysis International Mathematical Forum, 3, 2008, no. 29, 1445-1450 Modified Model for Finding Unique Optimal Solution in Data Envelopment Analysis N. Shoja a, F. Hosseinzadeh Lotfi b1, G. R. Jahanshahloo c,

More information

Bachelor of Science in. Computer Science. Advising Brochure Department of. Computer Science & Engineering College of Arts & Sciences

Bachelor of Science in. Computer Science. Advising Brochure Department of. Computer Science & Engineering College of Arts & Sciences Bachelor of Science in Computer Science Advising Brochure 2010 2011 Department of Computer Science & Engineering College of Arts & Sciences 26 Avery Hall info@cse.unl.edu http://cse.unl.edu rev: June,

More information

The pages below provide information regarding the following: PLA Eligibility PLA Policies

The pages below provide information regarding the following: PLA Eligibility PLA Policies Prior Learning Credit The following provides information regarding proficiency credit that may be applicable for students who have professional certifications, who have completed external standardized

More information

PROGRAM CHANGE Cover Sheet

PROGRAM CHANGE Cover Sheet PROGRAM CHANGE Cover Sheet Use$this$form$for$program$changes. [Revised(July(2017]( PROGRAM:$$$$ Design MS $ Course$DESIGNATOR/S$and$TITLE/S$(if$applicable):$$$$ Career: Unit: []Undergraduate[ ] Graduate

More information

California Institute of Arts & Technology AAS in Computer Information Systems - Networking Concentration

California Institute of Arts & Technology AAS in Computer Information Systems - Networking Concentration Transfer Guide California Institute of Arts & Technology AAS in Computer Information Systems - Networking Concentration Revision: August 2018 California Institute of Arts & ENG-100 College Reading and

More information

EASTERN ARIZONA COLLEGE Finite Mathematics

EASTERN ARIZONA COLLEGE Finite Mathematics EASTERN ARIZONA COLLEGE Finite Mathematics Course Design 2015-2016 Course Information Division Mathematics Course Number MAT 171 Title Finite Mathematics Credits 4 Developed by Jay Clarke/Revised by Ray

More information

CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP

CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP-091-167 Electromechanical Systems Engineering Technology BS FOR SEMESTERS Academic

More information

College of Arts, Letters, and Education. Special Education and Elementary Education BAE

College of Arts, Letters, and Education. Special Education and Elementary Education BAE College of Arts, Letters, and Education Special Education and Elementary Education BAE Why study Special Education and Elementary Education? Teaching is an enormously challenging and rewarding profession.

More information

New York State Teacher Certification Process

New York State Teacher Certification Process New York State Teacher Certification Process A Better Understanding Presented by: Edward A. Salina, Jr., Ed.D. Superintendent of Schools Origins of Certification The first school dedicated to teacher training

More information

THE CITY UNIVERSITY OF NEW YORK

THE CITY UNIVERSITY OF NEW YORK THE CITY UNIVERSITY OF NEW YORK ARTICULATION AGREEMENT between LAGUARDIA COMMUNITY COLLEGE PROGRAM IN COMPUTER INFORMATION SYSTEMS and NEW YORK CITY COLLEGE OF TECHNOLOGY BACHELOR OF TECHNOLOGY IN COMPUTER

More information

Pre-Matriculation Test Credits for

Pre-Matriculation Test Credits for Advanced Placement Course and Credit Course Exemption Score Exam Granted (No Credit Granted) APIEL (International 4 or 5 English Language) Art History 5 ARTH 251 (3) ARTH 252 (3) Art Studio: Drawing Art

More information

University of Houston HUB Report March 2009

University of Houston HUB Report March 2009 Academic Affairs ACADEMIC ADV/ORIENTATION Sum of Amount 382.01 1,160.71 1,542.72 Percent of Total 24.76% 75.24% 100.00% ACADEMIC AFFAIRS Sum of Amount 2,571.93 242.26 2,814.19 Percent of Total 91.39% 8.61%

More information

Science No equivalent course YES. Human Anatomy and Physiology YES

Science No equivalent course YES. Human Anatomy and Physiology YES DUAL ENROLLMENT Course Listing COURSES CURRENTLY ACCEPTED FOR DUAL CREDIT PGCC Course = meets PGCPS graduation ACC 1010 Principles of Accounting 553133 ELECTIVE ONLY ART 1010 Fine Art Credit No equivalent

More information

Registration Workshop. Nov. 1, 2017 CS/SE Freshman Seminar

Registration Workshop. Nov. 1, 2017 CS/SE Freshman Seminar Registration Workshop Nov. 1, 2017 CS/SE Freshman Seminar Computer Science Department Website: http://cs.mtech.edu Program descriptions under Degrees & Options Mission statements under Accreditation &

More information

Business Intelligence Reporting User Guide. American University s Executive Dashboard

Business Intelligence Reporting User Guide. American University s Executive Dashboard American University s Executive Dashboard Accessing BI Reporting Log on to the myau.american.edu Portal, then expand the TECHNOLOGY link under Personalized links. Select BI REPORTING. Access to view this

More information

Master & Doctor of Philosophy Programs in Computer Science

Master & Doctor of Philosophy Programs in Computer Science Master & Doctor of Philosophy Programs in Computer Science Research Fields Pattern Recognition Data Analysis Internet of Things and Network Communication Machine Learning Web Semantic and Ontology For

More information

OUTLINE FOR SUBMITTING PROPOSALS TO REVISE PROGRAMS. I. Rationale EASTERN MICHIGAN UNIVERSITY DIVISION OF ACADEMIC AFFAIRS

OUTLINE FOR SUBMITTING PROPOSALS TO REVISE PROGRAMS. I. Rationale EASTERN MICHIGAN UNIVERSITY DIVISION OF ACADEMIC AFFAIRS EASTERN MICHIGAN UNIVERSITY DIVISION OF ACADEMIC AFFAIRS OUTLINE FOR SUBMITTING PROPOSALS TO REVISE PROGRAMS Use this outline to prepare proposals to revise existing programs, including undergraduate majors

More information

Chapter 75 Program Design of DEA Based on Windows System

Chapter 75 Program Design of DEA Based on Windows System Chapter 75 Program Design of DEA Based on Windows System Ma Zhanxin, Ma Shengyun and Ma Zhanying Abstract A correct and efficient software system is a basic precondition and important guarantee to realize

More information

Certification Solutions. Program Catalogue

Certification Solutions. Program Catalogue Certification Solutions Program Catalogue Contents Program Overview 2 Our Mission 3 Certification Areas 4 Getting Started Admission Requirements & Timeline 5 PRAXIS Requirements 6 Computer Testing Options

More information

Washtenaw Community College Comprehensive Report. CNT 216 Routing and Switching Essentials Effective Term: Fall 2018

Washtenaw Community College Comprehensive Report. CNT 216 Routing and Switching Essentials Effective Term: Fall 2018 1 of 5 3/7/2018, 3:03 PM Washtenaw Community College Comprehensive Report CNT 216 Routing and Switching Essentials Effective Term: Fall 2018 Course Cover Division: Business and Computer Technologies Department:

More information

Spokane Community College Divisional FTES Summary

Spokane Community College Divisional FTES Summary Divisional FTES Summary Division Arts and Sciences 2188.5 2261.9 2060.9-73.3 Athletics, Physical Education, and Recreation 293.1 332.0 251.7-38.9 Business, Hospitality, and Information Technology 1238.3

More information

A two-stage model for ranking DMUs using DEA/AHP

A two-stage model for ranking DMUs using DEA/AHP Available online at http://ijim.srbiau.ac.ir/ Int. J. Industrial Mathematics (ISSN 2008-5621) Vol. 7, No. 2, 2015 Article ID IJIM-00540, 9 pages Research Article A two-stage model for ranking DMUs using

More information

Biological Sciences, BS

Biological Sciences, BS Biological Sciences, BS 1 Biological Sciences, BS Biological Sciences, BS Requirements: Biological Sciences, BS degree requires 128 credit hours. 9 of 128 credit hours must be taken at 00 level or higher

More information

Web Design AOS. Program Guide. web design AOS program guide

Web Design AOS. Program Guide. web design AOS program guide Web Design AOS Program Guide web design AOS program guide 1 Web Design AOS Program Guide The Mission Department Head s Message Curriculum Program Objectives Getting Started STUDENT WORK BY: Daniela Vizcaino

More information

ANNUAL PROGRAM REPORT. Multiple and Single Subject Credential Programs. Credential programs are not subject to 5 year reviews

ANNUAL PROGRAM REPORT. Multiple and Single Subject Credential Programs. Credential programs are not subject to 5 year reviews ACADEMIC SENATE Committee on Academic Planning and Review ANNUAL PROGRAM REPORT College Department Program CEAS Teacher Education Multiple and Single Subject Credential Programs Reporting for Academic

More information

First year courses and prerequisites Notes Previously offered ** See catalog for important notes.

First year courses and prerequisites Notes Previously offered ** See catalog for important notes. Student's name: EWU ID: Bachelor of Arts in Education in Physics Secondary Education College of Science, Technology, Engineering, and Mathematics SOAR Department: Physics SOAR Major: BAE PHYS Major Declaration

More information

Courses Approved for General Education Requirements

Courses Approved for General Education Requirements Courses Approved for General Education Requirements * Denotes Language Intensive Updated 04/11/2018 FOUNDATION COURSES A. Oral Communication one course required for general education *G-CM130: Interpersonal

More information

A. NAME OF AGENDA ITEM Consideration and approval of new or revised courses and programs.

A. NAME OF AGENDA ITEM Consideration and approval of new or revised courses and programs. A. NAME OF AGENDA ITEM Consideration and approval of new or revised courses and programs. B. STATEMENT OF ISSUE/PURPOSE 1. Background and Purpose Sections 55002, 55130 and 55150 of Title 5 requires the

More information

California State Polytechnic University, Pomona Degree Curriculum Sheet. Total. Elective Subplan/Option Support. Total

California State Polytechnic University, Pomona Degree Curriculum Sheet. Total. Elective Subplan/Option Support. Total California State Polytechnic University, Pomona Degree Curriculum Sheet Plan (Major) CIVIL ENGINEERING Catalog Year 05-06 Subplan/Option Civil Minimum Required 9 Name Student ID Required Core s Civil CAD

More information

X Prefix/suffix Course Learning Outcomes

X Prefix/suffix Course Learning Outcomes CALIFORNIA STATE UNIVERSITY CHANNEL ISLANDS COURSE MODIFICATION PROPOSAL Courses must be submitted by October 15, 2011, and finalized by the end of the fall semester to make the next catalog (2012-13)

More information

Start with every Pearson option in one go and choose your path to success

Start with every Pearson option in one go and choose your path to success Start with every Pearson option in one go and choose your path to success Key Stage 4 Year 10 & 11 ages 14-16 mostly at grades D-G mostly at grades A*-C BTEC L1 with Traineeship BTEC L1 BTEC First Apprenticeship

More information

CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP

CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP CALIFORNIA STATE POLYTECHNIC UNIVERSITY, POMONA ACADEMIC SENATE ACADEMIC PROGRAMS COMMITTEE REPORT TO THE ACADEMIC SENATE AP-088-167 Electronic Systems Engineering Technology BS FOR SEMESTERS Academic

More information

Missouri State Educator Certification Q & A

Missouri State Educator Certification Q & A PLEASE NOTE: THIS DOCUMENT IS A GENERAL INFORMATION DOCUMENT WITH HELPFUL QUESTION AND ANSWERS ONLY - IT IS YOUR RESPONSIBILITY TO CHECK WITH THE DEPARTMENT OF ELEMENTARY AND SECONDARY EDUCATION (DESE)

More information

Bachelor of Science in. Computer Science. Advising Brochure Department of. Computer Science & Engineering College of Arts & Sciences

Bachelor of Science in. Computer Science. Advising Brochure Department of. Computer Science & Engineering College of Arts & Sciences Bachelor of Science in Computer Science Advising Brochure 201 201 Department of Computer Science & Engineering College of Arts & Sciences 256 Avery Hall advising@cse.unl.edu http://cse.unl.edu/advising

More information

CURRICULUM VITAE. June, 2013

CURRICULUM VITAE. June, 2013 CURRICULUM VITAE ד"ר אבי סופר Dr. Avi Soffer June, 2013 ORT Braude College, Department of Software Engineering, P.O. Box 78, Karmiel 2161002, Israel Telephone: +972-4-990-1720 Email: asoffer@braude.ac.il

More information

REGIS UNIVERSITY CATALOG

REGIS UNIVERSITY CATALOG REGIS UNIVERSITY CATALOG 2013-2014 Global Issues (cultural anthropology, cultural geography, non-u.s. history, foreign language, global area studies, comparative economic systems, comparative political

More information

Digital Communication and Aesthetics,

Digital Communication and Aesthetics, Curriculum for the Elective Study at Bachelor Level in Digital Communication and Aesthetics, 2016 Corrected 2017 Amended 2018 Department of Media, Cognition and Communication Faculty of Humanities University

More information

BEng (Hons) Mechanical Engineering - E440 (Under Review)

BEng (Hons) Mechanical Engineering - E440 (Under Review) BEng (Hons) Mechanical Engineering - E440 (Under Review) 1.0 Introduction Mechanical Engineering is the historical root of engineering practice. It gave its name to the realm of technology-based problem-solving,

More information

Universal General Education Transfer Component (UGETC)

Universal General Education Transfer Component (UGETC) Template for CAA students earning an AS degree who are interested in at Winston-Salem State University Part I: Complete the AS degree within the NCCCS as outlined. Any program/major courses that satisfy

More information

Assessment Plan. Academic Cycle

Assessment Plan. Academic Cycle College of Business and Technology Division or Department: School of Business (Business Administration, BS) Prepared by: Marcia Hardy Date: June 21, 2017 Approved by: Margaret Kilcoyne Date: June 21, 2017

More information

computer science (CSCI)

computer science (CSCI) computer science (CSCI) CSCI overview programs available courses of instruction flowcharts Computer scientists and engineers design and implement efficient software and hardware solutions to computer-solvable

More information

AAS: Digital Video Certificate: Digital Video

AAS: Digital Video Certificate: Digital Video For over twenty years, the Communication Design program at Collin has offered except-ional education in the creative service fields of animation, graphic design, web-interactive design and video production.

More information

PROGRAM CHANGE Cover Sheet

PROGRAM CHANGE Cover Sheet PROGRAM CHANGE Cover Sheet Use$this$form$for$program$changes. [Revised(July(2017]( PROGRAM:$$$$ Human Factors & Ergonomics MS $ Course$DESIGNATOR/S$and$TITLE/S$(if$applicable):$$$$ Career: Unit: []Undergraduate[

More information

Effective and Efficient Use of the Fundamentals of Engineering Exam for Outcomes Assessment

Effective and Efficient Use of the Fundamentals of Engineering Exam for Outcomes Assessment Effective and Efficient Use of the Fundamentals of Engineering Exam for Outcomes Assessment Goals/ABET Criteria Addressed The goals of this presentation are to: 1) make participants aware of the changes

More information

University Core Curriculum Requirements

University Core Curriculum Requirements School of Education Early Childhood Education Program Outline For Students Entering 2018-2019 Academic Year Early Childhood Education / 2018-2019 Name ID# Advisor University Core Curriculum Requirements

More information

THE LINEAR PROGRAMMING APPROACH ON A-P SUPER-EFFICIENCY DATA ENVELOPMENT ANALYSIS MODEL OF INFEASIBILITY OF SOLVING MODEL

THE LINEAR PROGRAMMING APPROACH ON A-P SUPER-EFFICIENCY DATA ENVELOPMENT ANALYSIS MODEL OF INFEASIBILITY OF SOLVING MODEL American Journal of Applied Sciences 11 (4): 601-605, 2014 ISSN: 1546-9239 2014 Science Publication doi:10.3844/aassp.2014.601.605 Published Online 11 (4) 2014 (http://www.thescipub.com/aas.toc) THE LINEAR

More information

MSc Management with Project Management. BS524 (with PDP) Postgraduate Diploma in Management. January 2016 January 2021.

MSc Management with Project Management. BS524 (with PDP) Postgraduate Diploma in Management. January 2016 January 2021. PROGRAMME APPROVAL RECORD AND CERTIFICATE (PARC) PART 1 - GENERAL INFORMATION Programme title Award title Awarding Body/Institution Teaching Institution (if different) Language of Study UCAS Code Programme

More information

COMPUTER GRAPHICS TECHNOLOGY

COMPUTER GRAPHICS TECHNOLOGY Credentials COMPUTER GRAPHICS TECHNOLOGY Foundation skills Certificate 16 cr. 3D and Video Graphics Certificate Graphic Arts Certificate Web and Interactive Media Certificate 3D and Video Graphics AAS

More information

1 από 6 2/11/ :19 μμ

1 από 6 2/11/ :19 μμ Applicant Login E-Learning Intranet Contact Us First Name: Last Name: E-mail: Your Country: Phone No: Status: Preferred Start: Interested In: Choose Password: Repeat Password: Select Country Select Status

More information

Certification. What: Who: Where:

Certification. What: Who: Where: Certification What: Certification is a process by which the Wisconsin Technical College System Office evaluates the occupational, academic, and teaching experience of district employees to determine his/her

More information

Appendix D P a g e

Appendix D P a g e Appendix D 7.1 Information Systems Administrator Advisory Board Meeting September 13, 2012 2:00 pm A-230 Members Present: Tom Hopkins Ty Cook Bill Allred Sandra Partain Keith O toole Laura Goadrich Jennifer

More information

Student's name: EWU ID:

Student's name: EWU ID: Student's name: EWU ID: Bachelor of Arts in Education in Physics Secondary Education 2017-2018 Catalog Year College of Science, Technology, Engineering, and Mathematics SOAR Department: Physics SOAR Major:

More information

Meet with your Advisor every semester!!"

Meet with your Advisor every semester!! for Spring 2016 Meet with your Advisor every semester! If you don t know who your advisor is # Your primary advisor s name is listed in DegreeWorks in the top row and it should also appear in Banner under

More information

HPU COURSE REQUEST FORM INSTRUCTIONS For past course syllabi:

HPU COURSE REQUEST FORM INSTRUCTIONS For past course syllabi: UNDERGRADUATE VISITING STUDENT PRE-APPROVED COURSE LIST: SPRING 2019 HPU COURSE REQUEST FORM INSTRUCTIONS For past course syllabi: http://apps.hpu.edu/cis/web/index.php/search For instructions on how to

More information

Palm Beach State College Career Pathway Agreement Course Award Assessment Overview. NEW MEDIA TECHNOLOGY-Computers

Palm Beach State College Career Pathway Agreement Course Award Assessment Overview. NEW MEDIA TECHNOLOGY-Computers NEW MEDIA TECHNOLOGY-Computers In addition to applying to Palm Beach State College, declaring the appropriate Palm Beach State award program code: College Credit Certificate in: Information Management

More information

Teaching Areas on offer in the M.T.L. Course commencing in October 2018

Teaching Areas on offer in the M.T.L. Course commencing in October 2018 Teaching Areas on offer in the M.T.L. Course commencing in October 2018 M.T.L. 2018-19 Places for 2018 Agribusiness - VET subject area 7 Art 14 Business Education 7 Computing - including Information Technology

More information

CSCU Exercise Science Transfer Pathway

CSCU Exercise Science Transfer Pathway 1 CSCU Exercise Science Transfer Pathway The Exercise Science Transfer Degree is offered at four Community Colleges (GCC, MCC, NCC, TRCC) and received at three State Universities (CCSU, ECSU, SCSU). Contents:

More information

Student's name: EWU ID:

Student's name: EWU ID: Student's name: EWU ID: Bachelor of Arts in Education in Chemistry & Biochemistry Secondary Education 2017-2018 Catalog Year College of Science, Technology, Engineering, and Mathematics SOAR Department:

More information

BS523 (with PDP) Postgraduate Diploma in Management. January 2016 January September 2017

BS523 (with PDP) Postgraduate Diploma in Management. January 2016 January September 2017 PROGRAMME APPROVAL RECORD AND CERTIFICATE (PARC) PART 1 - GENERAL INFORMATION Programme title Award title Awarding Body/Institution Teaching Institution (if different) Language of Study UCAS Code Programme

More information

Dean, College of Agricultural and Life Sciences

Dean, College of Agricultural and Life Sciences DATE: September 22, 2014 TO: FROM: SUBJECT: Dr. Katherine G. Aiken Interim Provost and Executive Vice President John Foltz Dean, College of Agricultural and Life Sciences Minor Change Notification Request

More information

University Core Curriculum Requirements

University Core Curriculum Requirements School of Education Adolescent/Young Adult Minor (Grades 7-1) Program Outline For Students Entering 018-019 Academic Year AYA Minor/ 017-018 Name ID# Advisor University Core Curriculum Requirements First

More information

PROGRAMS GUIDE

PROGRAMS GUIDE 2018-2019 PROGRAMS GUIDE For over twenty years, the Communication Design department at Collin has offered exceptional education in the creative service fields of animation, graphic design, web-interactive

More information

Academic Unit Profile (Draft Version) Office of Institutional Research. Microsoft Power BI

Academic Unit Profile (Draft Version) Office of Institutional Research. Microsoft Power BI Academic Unit Profile (Draft Version) Office of Institutional Research What is an Academic Unit Profile? Academic Unit Profiles shows historical and comparitive trend analysis regarding student enrollment,

More information

Step by Step Guide for Graduate Students on the Electronic Submission of Thesis in the School of Arts and Sciences

Step by Step Guide for Graduate Students on the Electronic Submission of Thesis in the School of Arts and Sciences Step by Step Guide for Graduate Students on the Electronic Submission of Thesis in the School of Arts and Sciences Students from the School of Arts & Sciences in the Departments of Anthropology, Art &

More information

Learning Community Course. Units/Semester Hours (SH) Required Prerequisite Required Corequisite. Enrollment Limitation (SH) 3 u

Learning Community Course. Units/Semester Hours (SH) Required Prerequisite Required Corequisite. Enrollment Limitation (SH) 3 u Accounting ACCT C100 Introduction to Accounting ACCT C101 Financial Accounting 4 u ACCT C102 Managerial Accounting 4 u ACCT C106 Excel for Accounting 2 u ACCT C107 Accounting for Quickbooks 2 u ACCT C112

More information

Curriculum Delivery Plan Key Stage 3 & Key Stage 4

Curriculum Delivery Plan Key Stage 3 & Key Stage 4 Curriculum Delivery Plan 2015-2016 Key Stage 3 & Key Stage 4 FINAL September 2015 Year Group Year 7 Year 8 Year 9 Year 10 Year 11 Number of students in cohort 200 172 140 114 117 Number of boys 102 77

More information

Using the Template to Format the Thesis/Dissertation

Using the Template to Format the Thesis/Dissertation Using the Template to Format the Thesis/Dissertation The template was created for APA Format and MLA 7 format. If you are using a different format, you will need to change the styles. See the Guide to

More information

Bachelor of Applied Science Degree IT NETWORKING

Bachelor of Applied Science Degree IT NETWORKING Bachelor of Applied Science Degree IT NETWORKING Beginning fall 2017! Whatcom Community College s nationally acclaimed computer information systems program will begin offering a bachelor of applied science

More information

Banner 8 Updating Advisors. Table of Contents

Banner 8 Updating Advisors. Table of Contents Table of Contents SGAADVR MULTIPLE ADVISORS FORM... 2 Entering an Advisor Student has no Advisor Assigned... 3 What to do if Advisor information exists from a previous term... 3 What to do if an incorrect

More information

PeopleSoft Faculty Center, Advisor Center & Enrollment. Bloomsburg University

PeopleSoft Faculty Center, Advisor Center & Enrollment. Bloomsburg University PeopleSoft Faculty Center, Advisor Center & Enrollment Bloomsburg University 1 Table of Contents Bloomsburg University Training Notes... 3 Terminology Crosswalk... 3 Term Code Logic... 3 View My Schedule

More information

Master of Engineering Program in Mining Engineering (International Program) Program Overview. Fields of Research

Master of Engineering Program in Mining Engineering (International Program) Program Overview. Fields of Research Master of Engineering Program in Mining Engineering (International Program) Name of the Degree Full Master of Engineering (Mining Engineering) Abbreviated M. Eng. (Mining Engineering) Plan A Type A 1 36

More information

AGING STUDIES ADMISSIONS APPLICATION

AGING STUDIES ADMISSIONS APPLICATION AGING STUDIES ADMISSIONS APPLICATION MASTER OF SCIENCE DEGREE IN GERONTOLOGY This application must be typed or printed legibly in black ink. If not legible, your application will be disqualified. TODAY'S

More information

California State Polytechnic University, Pomona Degree Curriculum Sheet. Required Support Courses. Total Units

California State Polytechnic University, Pomona Degree Curriculum Sheet. Required Support Courses. Total Units California State Polytechnic University, Pomona Degree Curriculum Sheet Plan (Major) CIVIL ENGINEERING Catalog Year 05-06 Subplan/Option Environmental Minimum Required 9 Name Student ID Required Core s

More information

ISACA Chicago Chapter Scholarship Application

ISACA Chicago Chapter Scholarship Application Scholarship Overview Through the generous support of our members, the ISACA Chicago Chapter has established a scholarship fund to provide financial assistance to those interested in pursuing educational

More information

PROFESSIONAL MASTER S IN

PROFESSIONAL MASTER S IN I m in a new job I love. ERIC LAFONTAINE Service Operations Manager GE Healthcare Class of 2013 PROFESSIONAL MASTER S IN APPLIED SYSTEMS ENGINEERING GAIN A COMPETITIVE EDGE WITH A GEORGIA TECH DEGREE TODAY

More information

Chabot College Majors of Students Grouped by Division Fall Final Count

Chabot College Majors of Students Grouped by Division Fall Final Count Fall 06 - Final Count Applied Technology & Business Accounting 00 6 Accounting Technician 0 Administrative Assistant 06 0 0 Auto Engine Performance Tech 0 Auto Tech (Emph Chassis) 0 Auto Tech (Emph Drivetrain)

More information

Geographical Region: US_MICHIGAN Course Equivalencies for Art Institute of MI-Novi-Troy

Geographical Region: US_MICHIGAN Course Equivalencies for Art Institute of MI-Novi-Troy ART 100: Design Fundamentals => TRC 1XXX: Design Fundamentals ART 102: Observational Drawing => TRC 1XXX: Observational Drawing ART 110: Color Theory => TRC 1XXX: Color Theory ART 111: Life Drawing =>

More information

Student's name: EWU ID:

Student's name: EWU ID: Student's name: EWU ID: Bachelor of Arts in Education in Biology Secondary Education 2017-2018 Catalog Year College of Science, Technology, Engineering, and Mathematics SOAR Department: Biology SOAR Major:

More information

Department of Computer Science and Engineering

Department of Computer Science and Engineering Department of Computer Science and Engineering 1 Department of Computer Science and Engineering Department Head: Professor Edward Swan Office: 300 Butler Hall The Department of Computer Science and Engineering

More information

INFORMATION TECHNOLOGY - B.S.I.T.

INFORMATION TECHNOLOGY - B.S.I.T. Kent State University Catalog 208-209 INFORMATION - B.S.I.T. Regional College rcdean@kent.edu www.kent.edu/regional-college Major is pending approval from the Ohio Department of Higher Education Description

More information

California State Polytechnic University, Pomona Degree Curriculum Sheet. Required Support Courses. Total Units

California State Polytechnic University, Pomona Degree Curriculum Sheet. Required Support Courses. Total Units California State Polytechnic University, Pomona Degree Curriculum Sheet Plan (Major) CIVIL ENGINEERING Catalog Year 05-06 Subplan/Option Geospatial Minimum Required 9 Name Student ID Required Core s Civil

More information

University Core Curriculum Requirements

University Core Curriculum Requirements School of Education Intervention Specialist: Mild/Moderate (Grades K-1) Program Outline For Students Entering 018-019 Academic Year Name ID# Advisor University Core Curriculum Requirements First Year Experience

More information

Planning Sheet: Bachelor of Science in EXERCISE SCIENCE Pre-Health Science Track

Planning Sheet: Bachelor of Science in EXERCISE SCIENCE Pre-Health Science Track Augsburg Core Curriculum Updated 8/13 Name ID# Date Planning Sheet: Bachelor of Science in EXERCISE SCIENCE Pre-Health Science Track (Effective Fall 2013) Exercise Science Required Courses Term/Year Grade

More information

OTERO Junior College. CCCOnline 2018 SUMMER SEMESTER SCHEDULE

OTERO Junior College. CCCOnline 2018 SUMMER SEMESTER SCHEDULE OTERO Junior College CCCOnline 2018 SUMMER SEMESTER SCHEDULE SUMMER 2018 - CCCOnline offers a variety of sessions to meet your educational goals and schedules. In Summer 2018 we will offer our Summer Semester

More information

III. Computer and Information Science

III. Computer and Information Science III. Computer and Information Science Contents Students with Advanced Placement credit:... 1 8-semester Plans... 2 Computer and Information Science (B.S.) Business Information Systems Concentration...

More information

Department of Computer Science and Information Technology

Department of Computer Science and Information Technology 1 Department of Computer Science and Infmation Technology Department of Computer Science and Infmation Technology Bachel of Science (B.S.) Infmation Sheet The Department of Computer Science and Infmation

More information

PLA Matrix for New Website ADA compliant. Challenge Exam

PLA Matrix for New Website ADA compliant. Challenge Exam Division of Business ACCT 205 Financial Accounting Financial Accounting Division of Science, Nursing, and Allied Health ALHT 109 ALHT 114 ALHT 115 ALHT 116 ALHT 206 ALHT 207 with Current AHA CPR card Division

More information

Several Modes for Assessment Efficiency Decision Making Unit in Data Envelopment Analysis with Integer Data

Several Modes for Assessment Efficiency Decision Making Unit in Data Envelopment Analysis with Integer Data International Journal of Basic Sciences & Applied Research. Vol., 2 (12), 996-1001, 2013 Available online at http://www.isicenter.org ISSN 2147-3749 2013 Several Modes for Assessment Efficiency Decision

More information

DIGITAL SCIENCES - B.S.

DIGITAL SCIENCES - B.S. Kent State University Catalog 208-209 DIGITAL - B.S. College of Communication and Information School of Digital Sciences 29 Taylor Hall Kent Campus 0-672-905 digital-sciences@kent.edu www.kent.edu/dsci

More information

Program Summary, Planning Guide and Electives. Bachelor of Science in Sustainability Studies

Program Summary, Planning Guide and Electives. Bachelor of Science in Sustainability Studies Program Summary, Planning Guide and Electives Bachelor of Science in Sustainability Studies Major Code: 7039 Degree Awarded: Bachelor of Science Delivery Mode(s): Classroom Location(s): Main Campus - Melbourne

More information

UNIVERSITY OF MAKATI

UNIVERSITY OF MAKATI Now Hiring: HUMANITIES PROFESSOR UNIVERSITY OF MAKATI COLLEGE OF ARTS AND SCIENCES - Graduate of Bachelor s Degree in Education Major in Music - Graduate of any Master s Degree Now Hiring: PSYCHOLOGY AND

More information

Accounting Major (Last Revised 2/2018)

Accounting Major (Last Revised 2/2018) Accounting Major (Last Revised 2/2018) Required Business Core (39 hours) Credit ECON 1041 Principles of Macroeconomics ECON 1051 Principles of Microeconomics (ECON 1041) ECON 1011 Statistics for Business

More information

BSc (Hons) Marketing with Digital Technologies (F/T) LM324 (3 Years)

BSc (Hons) Marketing with Digital Technologies (F/T) LM324 (3 Years) BSc (Hons) Marketing with Digital Technologies (F/T) LM24 ( Years) 1. Objectives The BSc Marketing with Digital Technologies has been designed to equip students to cope with challenges of technology-driven

More information

B.A. Mathematics

B.A. Mathematics B.A. Mathematics 2018-2019 MATH 113 4 MATH 114 4 *S.B.S = Social and Core (Written) 3 MATH 125 3 Behavioral Science Core (Oral) 3 Core (W.C.) 3 *W.C. = Western Core (S.B.S) 3 Core (N.S.) 4 Civilization

More information

UCD APPLICATION INSTRUCTIONS. Non-EU exchange students 2016/17. Please consider the environment before printing this document.

UCD APPLICATION INSTRUCTIONS. Non-EU exchange students 2016/17. Please consider the environment before printing this document. UCD APPLICATION INSTRUCTIONS Non-EU exchange students 2016/17 Please consider the environment before printing this document. Thank you for applying to UCD. Please follow the instructions and the symbol

More information

Find YOUR Program at One of HACC s Five Campuses or Online.

Find YOUR Program at One of HACC s Five Campuses or Online. Find YOUR Program at One of HACC s Five es or Online. With more than 100 programs, five campuses and online learning, we have something for you. Michelle Anderson, a veteran and criminal justice major,

More information

SOFTWARE ENGINEERING. Curriculum in Software Engineering. Program Educational Objectives

SOFTWARE ENGINEERING. Curriculum in Software Engineering. Program Educational Objectives Software Engineering 1 SOFTWARE ENGINEERING For the undergraduate curriculum in Software Engineering (http:// www.se.iastate.edu) leading to the degree Bachelor of Science. This curriculum is accredited

More information