0% found this document useful (0 votes)
647 views34 pages

LUMS EE - 2nd Year Course Outlines

For all those who wish to pursue EE at LUMS, Pakistan, and want to know the details of the courses offered for EE at LUMS.

Uploaded by

Ahsan Ahmed Moin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
647 views34 pages

LUMS EE - 2nd Year Course Outlines

For all those who wish to pursue EE at LUMS, Pakistan, and want to know the details of the courses offered for EE at LUMS.

Uploaded by

Ahsan Ahmed Moin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 34

Lahore University of Management Sciences

CS 200 Introduction to Programming

Instructor
Room No.
Office Hours
Email
Telephone
Secretary/TA
TA Office Hours
Course URL (if any)

Fall 2014-15

Naveed Arshad
9-124
TBA
[email protected]
8190,
TBA
TBA
TBA

Course Basics
Credit Hours
Lecture(s)
Recitation/Lab (per week)
Tutorial (per week)

3
Nbr of Lec(s) Per Week
Nbr of Lec(s) Per Week
Nbr of Lec(s) Per Week

2
1
1

Duration
Duration
Duration

1 hour and 50 minutes


2 horus and 50 minutes
1 hour and 50 minutes

Course Distribution
Core
Elective
Open for Student Category
Close for Student Category
COURSE DESCRIPTION
This course teaches computer programming using a mix of on-paper and on-computer exercises. It focuses on procedural as well as objectoriented programming using C++.The main concepts discussed are: Variables, functions, structures, classes, objects, some commonly useful data
structures, algorithms and algorithmic complexity.

COURSE PREREQUISITE(S)
None

COURSE OBJECTIVES

Become familiar with breaking down a problem into objects rather than procedures
Learn object-oriented programming in C++
Learn what is available o_ the shelf to facilitate C++ development (tools, libraries)

Learning Outcomes

Be comfortable programming in C++


Be able to adapt other programming languages and platforms
Be able to integrate with others code and libraries

Lahore University of Management Sciences


Grading Breakup and Policy
Assignments and labs: 30%
First Midterm Examination: 15%
Second Midterm Examination: 25%
Labs/assignments: 30%
Examination Detail
Midterm
Exam

Preferred Date: TBA


Exam Specifications: In lab exam with programming tasks to do on a computer

Yes
Final Exam

COURSE OVERVIEW
Module
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.

Topics
Introduction, Binary, Bits and Bytes, ASCII, Programming, Algorithms, Statements,
Boolean expressions, Conditions, Loops, Variables, Threads, Events
C++ Source code, Compilers, Object code, SSH, GCC, Functions, Comments, Standard output, Arithmetic operators, Precedence,
Associativity, Local variables, Types,
Casting, Standard input, Libraries, Boolean expressions continued, Conditions continued, Loops continued
Functions continued, Global variables, Parameters, Return values, Stack Frames, Scope,Arrays, Strings, Command line
arguments, Recursion, Cryptography
Linear search, Binary search, Big-O notation, Bubble sort, Selection sort, Insertionsort, Debugging
Merge sort, Structures, Dynamic memory allocation, Stack and heap, Pointers, Debugging continued
Pointers continued, File I/O, Forensics, Linked lists
Bitwise operators, Hash tables, Trees, Binary search trees
Object oriented programming, Classes and objects, Inheritance, Constructors and destructors, Polymorphism
Virtual Functions, Abstract classes, verloading, Overriding
Stream I/O
Exception handling, Templates, STL

Textbook(s)/Supplementary Readings

A computer science tapestry by Owen L. Astrachan available online at http://www.cs.duke.edu/csed/tapestry/

Lahore University of Management Sciences


CS 202 Data Structures
(Cross-listed as EE 202)

Spring 2015

Instructor
Class Timings
Room No.
Office Hours
Email
Telephone
Teaching Assistants (TAs)
TA Office Hours
Course URL

Dr. Ihsan Ayyub Qazi


Tue/Thu 5:00pm - 6:15pm
SBASSE 9-114A, Computer Science Department, LUMS
TBA
[email protected]
+92 42 3560 8368
TBA
TBA
LMS (https://lms.lums.edu.pk)

Course Basics
Credit Hours
Lecture(s)
Tutorial (per week)

3 credit hours
2 Per Week
1 Per Week

Course Distribution
Core
Elective
Open for Student Category
Close for Student Category

CS Majors, EE Majors, and CS Minors


All
All
None

Duration
Duration

75 mins
60 mins

COURSE DESCRIPTION
Data structures are essential building blocks for designing efficient algorithms. Thus, they play a central role in computer science
and are important in many areas of electrical engineering, computational biology, computational finance, etc. They are used in a
variety of applications today including web search (e.g., Google, Bing), social networking (e.g., Facebook, Twitter), embedded
systems (e.g., cell phones, robots), and DNA analysis. This course will introduce the fundamentals of data structures and shall
provide a thorough understanding of systematic ways for organizing data in a computer system. In addition to introducing a variety
of data structures and algorithms, this course will provide exposure to analytical tools for comparing data structures in terms of
their time and space complexities. Moreover, students will appreciate that the right programming structures, abstractions and
algorithms are necessary for improving the efficiency and complexity of computer programs.
COURSE PREREQUISITE(S)
CS 200 Introduction to Programming

COURSE OBJECTIVES
To understand the design of fundamental data structures as well as algorithms that operate on them

To introduce tools for analyzing the time and space complexity of data structures

To provide rigorous hands-on experience with implementing different data structures in a programming language

Learning Outcomes
Students

Students

Students

Students

will
will
will
will

become aware of several commonly used data structures in real-world applications


understand the fundamental design choices made in data structures and their reasoning
be able to compare the time and space efficiency of different data structures
be able to write programs to efficiently manipulate, store, and retrieve data

Grading Breakup and Policy


Programming Assignment(s) + Homeworks: 30%
Quiz(s): 20%
Midterm Examination: 20%
Final Examination: 30%

Lahore University of Management Sciences


Examination Detail
Yes/No: Yes
Duration: 3 hours
Midterm
Preferred Date: TBA
Exam
Exam Specifications: TBA
Yes/No: Yes
Duration: 3 hours
Final Exam
Exam Specifications: TBA
Textbook(s)/Supplementary Readings
Required Textbooks

(GTM) Data Structures and Algorithms in C++ by Michael T. Goodrich, Roberto Tamassia, and David Mount (2nd Edition)

(Weiss) Data Structures and Algorithm Analysis in C++ by Mark Allen Weiss (2nd Edition)
Session
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

Topics
Overview (Data Structures, Abstract Data Types, Applications)
Analysis Tools, Asymptotic Notation
Arrays, Lists (Singly, Doubly, Circular Linked Lists)
Lists (continued), Stacks
Stacks, Queues
Introduction to Trees, Tree Traversals
Tree Traversals (continued), Binary Trees
Binary Trees (continued)
Binary Search Trees (BST), BST Analysis
AVL Trees
AVL Trees, Red-Black Trees (optional)
Hashing
Hash Tables
Midterm Exam
Priority Queues, Binary Heaps
Binary Heaps, HeapSort
Sorting (Insertion Sort, Mergesort)
Sorting (Quicksort, Radix-Sort [optional], Bucket-Sort [optional])
Data Compression (Huffman Coding)
Tries (Standard, Compressed, Suffix)
Graphs, Data Structures for Graphs
Graph Traversals (Depth First Search, Breadth First Search)
Directed Graphs, Topological Sort
Shortest-Path Algorithms (including Dijkstra's Algorithm)
Shortest-Path Algorithms, Minimum Spanning Trees
Network Flow Problems
Advanced DS: Distributed Hash Tables & Bloom Filters
Advanced DS (continued) + Review

Recommended Readings
(GTM) Chapters 4.1-4.2 + (Weiss) Chapters 1.1, 1.2,2
(GTM) Chapters 3.1-3.4 + (Weiss) Chapters 3.2, 3.5
Above + (GTM) Chapters 5.1 + (Weiss) Chapter 3.6
(GTM) Chapters 5.1-5.3 + (Weiss) Chapter 3.7
(GTM) Chapters 7.1, 7.2 + (Weiss) Chapter 4.1, 4.6
Above + (GTM) Chapters 7.3 + (Weiss) Chapter 4.2
(GTM) Chapters 7.3 + (Weiss) Chapter 4.2
(GTM) Chapters 10.1 + (Weiss) Chapter 4.3
(GTM) Chapters 10.2 + (Weiss) Chapter 4.4
Above + (GTM) Chapters 10.5 + (Weiss) Chapter 12.2
(GTM) Chapters 9.2 + (Weiss) Chapter 5.1-5.3
(GTM) Chapters 9.2 + (Weiss) Chapter 5.4-5.6
(GTM)
(GTM)
(GTM)
(GTM)
(GTM)
(GTM)
(GTM)
(GTM)
(GTM)
(GTM)
(GTM)
Notes
Notes
Notes

Chapters
Chapters
Chapters
Chapters
Chapters
Chapters
Chapters
Chapters
Chapters
Chapters
Chapters

8.1-8.3 + (Weiss) Chapter 6.1, 6.2


8.3 + (Weiss) Chapter 6.3, 7.5
11.1 + (Weiss) Chapter 7.2, 7.6
11.2, 11.3 + (Weiss) Chapter 7.7
12.4 + (Weiss) Chapter 10.1.2+Notes
12.5 + (Weiss) Chapter 10.1.2
13.1, 13.2 + (Weiss) Chapter 9.1
13.3 + (Weiss) Chapter 9.3.1, 9.6
13.4 + (Weiss) Chapter 9.2
13.5 + (Weiss) Chapter 9.3
13.6 + (Weiss) Chapter 9.4, 9.5

Lahore University of Management Sciences

CS/EE220DigitalLogicCircuits
Spring2015

Instructor
Dr.JahangirIkramandDr.AdeelPasha
RoomNo.
9317Aand9301A
OfficeHours
TBA
Email
[email protected]@lums.edu.pk
Telephone
8201,8359
Secretary/TA
TBA
TAOfficeHours
TBA
CourseURL(ifany) LMSwillbeused

CourseBasics
CreditHours
4(Theory:3+Lab:1)
Lecture(s)
NbrofLec(s)PerWeek 2
Duration 75min
Lab(s)
NbrofLab(s)PerWeek 1
Duration 180min
Recitation/Lab(perweek)
NbrofLec(s)PerWeek
Duration
Tutorial(perweek)
NbrofLec(s)PerWeek
Duration

CourseDistribution
Core
BSEEandBSCS
Elective
ForallLUMSstudents
OpenforStudentCategory

CloseforStudentCategory

CourseDescription

ThiscoursefocusesontheprinciplesandpracticesofDigitalLogicCircuitDesignandisafirstcourseinthisarea.Topicscoveredinclude:Boolean
Algebra,NumberSystems,LogicGates,LogicTechnologies,DRAM,SRAM,ROM,Inverters,CircuitImplementationofLogicGates,SpeedofLogic
GatesandOperatingFrequencies,LogicimplementationofBooleanexpressions,KarnaughMaps,AnalysisandDesignofCombinationalLogic
Circuits,AnalysisandDesignofSequentialLogicCircuits,CircuitsforArithmeticCalculations,CircuitsusingmemoriesandFlipFlops,Registersand
Registerfiles,StateMachines,MemorySystems,BasicProcessorandControlUnitDesign.

CoursePrerequisite(s)

None

CourseObjectives

Attheendofthiscourse,studentsshouldbeabletoconstruct,analyze,verifyandtroubleshootdigitalcircuits(including
combinationalandsequentialelements)usingappropriatetechniquesandtestequipment.

Lahore University of Management Sciences


LearningOutcomes

Studentswillbeabletogetfamiliarwith:
1.
VariousNumberSystemsandassociatedoperations
2.
Booleanarithmetic
3.
CombinationalCircuits
4.
SequentialCircuits
5.
RegistersandCounters
6.
RAMsandROM
7.
Arithmetic/LogicUnitDesign
8.
BasicsofMicroprocessor
9.
10.
Mostimportantly:Studentswillbeabletodesignandimplementabasicdigitalsystem
GradingBreakupandPolicy

LabSessions(14):13%
Quizzes(1011):15%
Assignments:02%
MidtermExamination:25%
LabProject:15%
FinalExamination:30%

ExaminationDetail
Yes/No:Yes
Combine/Separate:Combine
Midterm
Duration:3:00hrs
Exam
PreferredDate:TBA
ExamSpecifications:ClosedBook,ClosedNotes,CalculatorAllowed
Yes/No:Yes
Combine/Separate:Combine
Duration:3:00hrs
ExamSpecifications:ClosedBook,ClosedNotes,CalculatorAllowed

FinalExam

CourseOverview
Lecture

Topics

1.
2.
3.

4.

5.
6.
7.
8.
9.
10.
11.
12.
13.
14.

CourseintroductionandDLCbasics
NumberSystems,ArithmeticOperations,
StandardCodes
TransistorasabasicbuildingblockofDigital
Circuits

RecommendedReadings

Objectives/Application

BasicIntroductionofthecourse

NumberSystems

Chap1(MM )
Chap1(MM )
Handouts4

Transistor:BasicIntroduction

LogicGates,BooleanAlgebra,TruthTables
andKMaps

1
Chap2(MM )

GettingfamiliarwithBooleanArithmetic

CombinationalCircuits:AnalysisandDesign,
Multiplexers,DecodersRateControl

1
Chap3(MM )
1
Chap4(MM )

CombinationalCircuits

ArithmeticLogicUnit(ALU)andIntroduction
toitsControlUnit

Chap9(MM1)

Arithmetic/LogicUnitDesign

MidtermExam
15.
16.
17.

SequentialCircuits:IntroductiontoLatches
andFlipFlops,SequentialCircuitsAnalysis
andDesign:StateDiagramsandStateTables

Chap5(MM )
(5.15.7)

SequentialCircuits

Lahore University of Management Sciences


18.
19.
20.
21.
22.
23.
24.
25.
26.
27.

RegistersandCounters:ShiftRegisters,
ParallelLoadingofRegisters,Synchronous
andAsynchronousCounters

Chap7(MM1)

RegistersandCounters

RandomAccessMemory(RAM),Memory
Decoding
ROM,CombinationalLogicCircuitDesign
throughROM

Chap8(MM1)

RAMsandmemorydecoding

Chap6(MM1)

ROMs

RegisterTransferOperations,Buses

Chap7(MM1)

RegisterOperations

IntrotoMicroprocessor

Chap9(MM1)

BasicsofMicroprocessorDesign

FinalExam

LabOverview
Week
Topics
RecommendedReadings
1.
IntroductiontotheEELab,buildingyourfirstcircuit
2.
UnderstandingthebehaviorofanInverter
3.
DigitalLogicGateOperations(AND,OR,NOT,NAND,NOR,XOR,Buffer)
4.
Combinationalcircuits:Simplification&Implementation
5.
DecoderandComparator
6.
MultiplexerandLogicUnitDesign
4
Handsouts
7.
AnalogtoDigitalConverter,TemperatureSensorandBasicON/OFFControl

8.
SimulatingaDigitalLogicCircuitonProteusSimulationTool
9.
ArithmeticUnitDesign
10.
ROM,RAM&ALU
11.
NANDLatch&DFlipFlop
12.
Up/DownCounter
13.
Registers
ImportantNote:StudentswillberequiredtosubmittheirLabworkandLabhandoutattheendofthedayslabsession.

Textbook(s)/SupplementaryReadings

[1]Textbook:LogicandComputerDesignFundamentalsbyM.MorrisMano&CharlesR.Kime,4thEdition,2008,(PrenticeHallInc.)
[2]ReferenceBook1:DigitalFundamentalsbyThomasL.Floyd,10thEdition(Pearson)
[3]ReferenceBook2:DigitalSystems(PrinciplesandApplications)byRonaldJ.Tocci,NealS.Widmer&GregoryL.Moss,10thEdition(Pearson)
[4]Handoutsprovidedforsomelectures.Similarly,alabmanualwillbeprovidedtothestudentsatthebeginningoftheeachlabthatcarriesthe
detailsoftheexperimentsandrelatedinstructionstoperformthoseexperiments.

Lahore University of Management Sciences


EE240: Circuits-I (Section 1)

Instructor
Room No.
Office Hours
Email
Telephone
Secretary/TA
TA Office Hours
Course URL (if any)

Fall 2013-2014

Nadeem Khan
9-309
TBA
[email protected]
TBA
TBA
LMS

Course Basics
Credit Hours
Lecture(s)
Recitation (per week)
Lab (if any ) per week
Tutorial (per week)

Course Distribution
Core
Elective
Open for Student Category
Closed for Student Category

3
Nbr of Lec(s) Per Week
Nbr of Rec (s) Per
Week
Nbr of Session(s) Per
Week
Nbr of Tut(s) Per
Week

Duration
Duration

75 minutes

Duration
3

Duration

75 minutes

Core Course for Electrical Engineering


BSc students

COURSE PREREQUISITE(S)
MATH-101 Calculus-I
PHY-102 Electricity and Magnetism

Learning Outcomes
- Working principle of passive components i.e. R, L, C
- Conventions for describing networks
- KCL and KVL: Application and analysis
- Analysis of linear networks of first order
- The importance of initial conditions in first order switched circuits
- Analysis and design of second order switched circuits using passive components and independent energy sources only
- Circuit solution using Laplace transformation
Grading Breakup and Policy
Class quizzes: (4-5 announced & 2-3 un-announced quizzes): 20% - Best 5
Assignments: (5): 5%
Tutorials: (Ungraded sessions for problem solving): 2 x 60min sessions per week
Midterm exam: 35%
Final exam: 40%

Lahore University of Management Sciences


Examination Detail

Midterm
Exam

Yes/No: Yes
Combine Separate: Combine
Duration: 90 minutes
Preferred Date: TBA
Exam Specifications: TBA

Final Exam

Yes/No: Yes
Combine Separate: Combine
Duration: 180 minutes
Exam Specifications: TBA

COURSE OVERVIEW
Week
No.

Book Chapter

1
Development of the
circuit concept

2
Conventions for
describing networks

9
10

3
Network equations

4
First-order
differential
equations
1-4
5
Initial conditions in
networks

Topic

Book sections

Course introduction
Charge and Energy
Relationship of field and circuit concepts
The Capacitance parameter
The Inductance parameter
The Resistance parameter
Units, scaling, and circuit interpretation of
physical systems
Reference directions for current and voltage,
Active element conventions,
The dot convention for coupled circuits
Topological description of networks
Kirchhoffs laws,
The number of network equations
Source transformations,
Examples of formulation of network equations

1-1
1-2
1-3
1-4
1-5
1-6
1-7
1-8
2-1
2-2
2-3
2-4
3-1
3-2
3-3
3-4

Examples of formulation of network


equationscont.,
Loop variable analysis

3-4
3-5

Node variable analysis,


Determinants: Minors and the Gauss
elimination method

3-6
3-7

Duality,
State variable analysis

3-8
3-9

General and particular solutions,


Time constants
Time constantscont.
The integrating factor
More complicated networks
Midterm exam
Why study initial conditions,
Initial conditions in elements
Geometrical interpretation of derivatives,
Procedure for evaluating initial conditions
Initial state of a network

4-1
4-2
4-2
4-3
4-4
1-1 to 4-4
5-1
5-2
5-3
5-4
5-5

Additional remarks

5 lectures

2 lectures

5 lectures

3 lectures

In class
3 lectures
+
Review of midterm exam in tutorial

Lahore University of Management Sciences


11

6
Differential
equations,
continued

12

13

14

Second order equation: Internal Excitation


Networks excited by external energy sources
Response as related to the s-plane location of
roots
General solution
Introduction to the Laplace transformation

7
The Laplace
transformation

Basic theorems for the Laplace transformation,


Examples
Partial fraction expansion
Heavisides expansion theorem
Solving problems using the Laplace
transformation

6-1
6-3
6-4
6-5
7-1
7-2
7-3
7-4
7-5
7-6
7-7

Textbook(s)/Supplementary Readings
Textbook:
Network Analysis, 3rd edition, by M. E. Van Valkenburg, Pearson Education or PHI
Supplementary Reading:
Photocopy of relevant sections of notes from Prof. Abidis workshop and other material indicated in the class.

4 lectures

5 lectures

Lahore University of Management Sciences

EE241L- Introductory Circuits Lab


Spring 2014-15

Instructor
DrHassanAbbasKhan
RoomNo.
Room9347A,DepartmentofElectricalEngineering,3rd Floor,SSEBuilding,LUMS
OfficeHours
TBD
Email
[email protected]
Telephone
35608356,ext8356
TA
TBD
TAOfficeHours
TBA
CourseURL(ifany)

CourseBasics
CreditHours
2
Lecture(s)
NbrofLec(s)PerWeek 1
Duration 30mins
Lab(perweek)
NbrofLec(s)PerWeek 1
Duration 3hrs20mins
Tutorial(perweek)
NbrofLec(s)PerWeek
Duration

CourseDistribution
Core
EEmajor
Elective
AllSSE
OpenforStudentCategory

CloseforStudentCategory

COURSEDESCRIPTION

A lab course to introduce electric circuits, electrical measurements and electronic devices. Topics include generating and measuring electrical
signals; building and analyzing simple circuits using transformers, OP-Amps, diodes, MOSFETs, BJTs, filtering and modulation.
Lab also includes a term project on constructing a complete electronic system.

COURSEPREREQUISITE(S)

None

COURSEOBJECTIVES
Familiarize students with basic laboratory instruments used in circuits and electronics

Provide a self-contained introduction to building, testing and understanding basic electrical circuits and electronic devices

Labsaredesignedinsuchawaythatattheendstudentswillbeabletoknow
Charging and discharging of capacitors, time constant of RC circuit
Working of diodes, how to use diodes as rectifiers, clippers and clampers
Input output characteristics of op-amp and comparator
XY feature and working of oscilloscope
Negative feedback and non-inverting amplifiers, design of sound system
Design and frequency response of low and high pass filters
Resonance in LC circuits , Frequency response of band pass filters ,Transformers and their use to induce voltage
I-V characteristics of MOSFET
Amplification using MOSFET
Modulation and demodulation of signals
CMOS logic gates and inverters

Lahore University of Management Sciences


LearningOutcomes
Conduct basic laboratory experiments involving electrical circuits using laboratory test equipment such as multimeters, power

supplies, signal generators, and oscilloscopes.

Predict the behavior and make measurements of electronic circuits employing filters, amplifiers, modulators and rectifiers.

Relate physical observations and measurements involving electrical circuits to theoretical principles.
The student will demonstrate the ability to communicate and share their experiences by
working in small team groups.

GradingBreakupandPolicy

HomeWork:10%
ClassParticipation/Labperformance:40%
Project:25%
FinalExamination:25%

ExaminationDetail

NO
Midterm

Exam

FinalExam

Duration:90mins
BasedonlearningfromtheLabsandprelabassignments.

COURSEOVERVIEW
Week/
Lecture/
Topics
Module
Breadboard,functiongenerator,oscilloscope,
dcpowersupply,colorcodeofresistors
LAB1

LAB2

ResistorCapacitor(RC)circuits

LAB3

Diodesandtheirapplications

LAB4

LAB6

LAB5
LAB7
LAB8

BasicCharacteristicsofOpAmpsand
Comparators

Proteussimulations

Recommended
Readings
AFirstLabinCircuitandelectronics
byY.Tsividis.
Goodlabpracticesandotheruseful
hintspages110
GroundConnectionspages1113
Experiments1&2pages1423
BackgroundsectioninExperiment6
ofY.Tsividispg.4649.
BackgroundsectioninExperiment9
ofY.Tsividispg.6769andhandout
ondiodeequation
OpAmpsectioninExperiment4ofY.
Tsividispg.3536

Audioamplificationsystem(soundsystem)

BackgroundsectioninExperiment5
ofY.Tsividispg.4142.

Filtersandtheirfrequencyresponse

BackgroundsectioninExperiment7
ofY.Tsividispg.5356.
BackgroundsectioninExperiment8

LCcircuits,resonanceandtransformers

Objectives/
Application
Familiarizationwiththebasiclab
equipment

Toknowthechargingand
dischargingofcapacitorinfirstorder
RCcircuitsandtheirtimeconstant
Toknowhowdiodescanbeusedin
practicalcircuitsasrectifiers,
limiters,clippersandclampers
Inputoutputcharacteristicsofanop
ampandhowanopampisusedto
constructasimplecomparator
Togetfamiliarizewiththe
simulationsoftware(Proteus)and
howitcanbehelpfulinanalyzingthe
circuitresponse
Howtomakeasimplesoundsystem
andtheoperationofamicrophone

Howtodesignlowandhighpass
filters
Todeterminethefrequency

Lahore University of Management Sciences


ofY.Tsividispg.6266

MOSFETs

Experiment11ofY.Tsividispg.82
89.

Principlesofamplification

AMOSFETresistorinvertersectionin
Experiment12ofY.Tsividispg.90
91
BackgroundsectioninExperiment10
ofY.Tsividispg.7476.

LAB9

LAB10
LAB11
LAB12

Amplitudemodulation(AM)
CMOS

responseofLCcircuitsandbandpass
filtering,useoftransformerandbasic
principleofAMradio
IVcharacteristicsofMOSFETand
theiruseasvoltagecontrolled
resistorandswitch
TodeterminetheInputoutput
characteristicsofamplifierusing
NMOSandvoltagegain
Modulationanddemodulationof
signalsanddesignofradioreceivers
Todeterminethevoltagetransfer
characteristiccurveofCMOSinverter

Textbook(s)/SupplementaryReadings

AFirstLabinCircuitandelectronicsbyY.Tsividis,JohnWiley&Sons,2002.

Referencetexts:

MicroelectronicCircuitsLaboratoryExplorationsManualbySedraSmith4thEdition,OxfordUniversityPress,1998.

BasicEngineeringCircuitAnalysisbyDavidIrwinandMarkNelms,10thedition,JohnWiley&Sons.

Lahore University of Management Sciences


EE-242 Circuits II
Spring 2014-15
Instructors
Room No.
Office Hours
Email
Telephone
Secretary/TA
TA Office Hours
Course URL (if any)

Naveed Ul Hassan, Tariq Jadoon and Muhammad Tahir


9-350A (Naveed), 9-315A (Tariq), 9-349A(Tahir)
TBA
[email protected] , [email protected] , [email protected]
8331 (Naveed), 8330 (Tariq), 8423(Tahir)
TBA
TBA
TBA

Course Basics
Credit Hours
Lecture(s)
Recitation/Lab (per week)
Tutorial (per week)
Course Distribution
Core
Elective
Open for Student Category
Close for Student Category

3
Nbr of Lec(s) Per Week
Nbr of Lec(s) Per Week
Nbr of Lec(s) Per Week

2
1

Duration
Duration
Duration

75 mins
50 mins

Core
Sophomores

COURSE DESCRIPTION
This is a second course in Circuit Analysis. This course covers various network analysis theorems. Circuit analysis is performed in Laplace
Transform domain which enables the students to learn and recognize the importance of poles, zeros and to determine the stability of electrical
circuits. Two port network descriptions in terms of z, y, h, and transmission parameters are also included. Frequency domain and phasor analysis
techniques are also covered to perform sinusoidal steady state circuit analysis. Various frequency response plots like magnitude plots, phase
plots, polar plots, Bode plots etc. are also included; and some elementary passive filters are discussed. Power analysis, the concepts of reactive
power, power factor and power factor correction is in the course.
COURSE PREREQUISITE(S)

EE-240 Circuits I

COURSE OBJECTIVES
To learn various electrical circuits analysis techniques / theorems especially in Laplace transform domain.
To learn and understand the significance of poles, zeros and stability analysis of electrical circuits.

To familiarize with two port networks and two port network descriptions.

To learn sinusoidal steady state circuits analysis techniques.

To learn frequency response plots and to understand their significance in filter design and power analysis.
To learn stability analysis used in circuits and control theory applications.
To understand basic concepts of power in circuits.

Lahore University of Management Sciences


Learning Outcomes
Transform domain and frequency domain analysis techniques for electrical circuits and networks.
Stability analysis of electrical circuits.

Network descriptions at the terminal / port level.

Frequency response plots and their significance.

Power analysis and power optimization.


Grading Breakup and Policy
Assignment(s): 10%: The assignment will be due one week after the announcement. No late submissions are acceptable. Some assignments will be
graded based on an assignment quiz. Assignment quiz can be unannounced and can take place within two weeks after the assignment submission
deadline.
Home Work:
Quiz(s): 20%: Can be announced or unannounced. No retakes will be allowed.
Class Participation:
Attendance:
Midterm Examination: 30%
Project:
Final Examination: 40%
Examination Detail

Midterm
Exam

Final Exam

Yes/No: Yes
Combine Separate: combine
Duration: 2 hrs
Preferred Date: early in the mid-term week
Exam Specifications: Close book, close notes, no help sheets, all the relevant formulas if required will be provided along with the
question paper.
Yes/No: Yes
Combine Separate: combine
Duration: 3 hrs
Exam Specifications: Close book, close notes, no help sheets, all the relevant formulas if required will be provided along with the
question paper.

COURSE OVERVIEW
Week
1,2,3
4,5
6,7
8,9
10,11,12
13,14

Topics
Introduction, Network Theorems, Transform
domain circuit analysis techniques
Network functions, Poles, zeros, stability,
restrictions on pole/zeros of network
functions
Two port network descriptions
Sinusoidal steady state/Phasor analysis
Frequency response plots, elementary passive
filter design
Power analysis, Power transfer and
Optimization techniques

Recommended
Readings
Chapter 3, 7 and 9

Objectives/
Application
Circuit analysis

Chapter 10

Network synthesis problems

Chapter 11
Chapter 12
Chapter 13

Network analysis
Circuit analysis, Power analysis
Power analysis, Filter design,
Control theory

Chapter 14

Textbook(s)/Supplementary Readings
Text book: Network Analysis, M. E. Van Valkenberg, Pearson Education, 1974.
References:
1.
Electric Circuits Fundamentals, Sergio Franco, Oxford University Press, 1999.
2.
Transforms in Signals and Systems, Peter Kraniauskus, Addison-Wesley Educational Publishers, 1992.

Power analysis

Lahore University of Management Sciences


MATH 102 Calculus II
Fall 2014-2015

Instructor
Room No.
Office Hours
Email
Telephone
Secretary/TA
TA Office Hours
Course URL (if any)

Masood H. Shah, Mudassar Imran


9-253A, SBASSE
TBA
[email protected], [email protected]
8250/2824
Shazia Zafar/Noreen Irshad
TBA
Math.lums.edu.pk/moodle
Click on course name, Login as guest

Course Basics
Credit Hours
Lecture(s)
Recitation/Lab (per week)
Tutorial (per week)
Course Distribution
Core
Elective
Open for Student Category
Close for Student Category

3
Nbr of Lec(s) Per Week
Nbr of Lec(s) Per Week
Nbr of Lec(s) Per Week

Duration
Duration
Duration

75min

Core for math majors


All students
None

COURSE DESCRIPTION
This is the second of a two-semester Calculus sequence. This course covers, Sequences and Series, Vectors, Partial Derivatives and
Linear Approximations, Maxima and Minima for functions of several variables, Lagrange Multipliers, Multiple Integrals, Vector
Calculus, Greens, Gauss and Stokes theorem

COURSE PREREQUISITE(S)

MATH 101 Calculus I or MATH 101A Calculus with Theory

COURSE OBJECTIVES

Students should be able to:

Work with limits in two and three dimensions


Work with derivatives in two and three dimensions
Work with integrals in two and three
dimensions Work with power series

Learning Outcomes
Students will learn to:

Work with sequences, series, and power series and determine their convergence and divergence
Understand three dimensional Cartesian Co-ordinate system and make connections between sets of
points and equations
Be able to determine limits in two and three dimensions

Lahore University of Management Sciences


Be able to determine partial derivatives in two and three dimensions by algorithms and by first principles
Find equations of tangent planes to surfaces
Give linear approximations to functions in two and three dimensions
Comprehend and be able to apply concepts of multivariable optimization
Use the method of Lagrange multipliers for constrained optimization
Be able to integrate in two and three dimensions
Be familiar with some applications of integration in higher
dimensions. Evaluate vector and scalar surface integrals
Use the divergence theorem, Greens theorem, Stokes theorem and fundamental theorem of calculus
for integration
Evaluate triple integrals in Cartesian, cylindrical, and spherical
coordinates Evaluate double integrals using Jacobians and changes of
coordinates Calculate gradients and directional derivatives

Grading Breakup and Policy


Assignment(s): 15%
Midterm Examination: 30%
Final Examination: 55%

Examination Detail

Midterm
Exam

Yes/No: Yes
Combine/Separate: Combine
Duration: 75min
Preferred Date:
Exam Specifications: No notes/No books/No calculators

Final Exam

Yes/No: Yes
Combine/Separate: Combine
Duration: 180min
Exam Specifications: No notes/No books/No calculators

COURSE OVERVIEW
Module
1
2
3
4
5
6
7
8
9
10
11
12
13

Recommended
Readings
10.1-10.5
10.1-10.5
10.1-10.5
11.1-11.3
13.1
13.2
13.4
13.5
13.5
13.6
13.7

Objectives/
Application
Sequences and series
Sequences and series
Taylor series
Vectors
Derivatives
Derivatives
Derivatives
Derivatives
Derivatives
Optimization
Optimization

14.1
14.2

Integrals
Integrals

Topics
Sequences and tests for convergence
Series and tests for convergence
Taylor series
Vectors in two and three dimensions
Surfaces and level curves
Partial derivatives
Linear approximations
Directional derivatives
Chain rule
Optimization
Constrained optimization by Lagrange
multipliers
Double integrals
Double integrals by change of coordinates

Lahore University of Management Sciences


14
15
16
17
18
19
20
21
22
23

Triple integrals
Vector fields, div, grad, curl
Line integrals
FTOC for line integrals
Greens theorem
Surface integrals of vector fields
Surface integrals of scalar fields
Divergence theorem
Stokes theorem
Physical applications of the three big theorems

14.3-14.4
15.1
15.2
15.2
15.3
15.4
15.4
15.5
15.6
Handout

Textbook(s)/Supplementary Readings
Text: Calculus by Gilbert Strang (Also available as online text from MIT open courseware)

http://ocw.mit.edu/ans7870/resources/Strang/strangtext.htm
Thomas' Calculus, 11/E George B. Thomas,Jr. or a similar text may also be used.

Integrals
Derivatives
Integrals
Integrals
Integrals
Integrals
Integrals
Integrals
Integrals
Integrals

Lahore University of Management Sciences


MATH 230 Probability
Spring 2014-2015
Instructor
Room No.
Office Hours
Email
Telephone
Secretary/TA
TA Office Hours
Course URL

Dr. Mujahid Abbas, Faiza Khan


2nd Floor, SBASSE Building
TBA
[email protected], [email protected]
TBA
TBA
TBA
math.lums.edu.pk/moodle

Course Basics
Credit Hours

3
Nbr of Lec(s) Per
Week

Lecture(s)

Duration 75 minutes

Course Distribution
Core
Core for Math majors
Elective
Open for Student Category All students
Close for Student Category None
Course Description
This is a first course in probability which provides preparation for further courses in stochastic processes, statistics, and statistical
mechanics and an understanding of probability concepts essential for students who want to pursue their studies in physical sciences,
social science, economics and engineering. The course starts with an introduction of probability terms and methods of computing
simple and conditional probabilities. The Bayess theorem will be taught with applications. The concept of discrete and continuous
random variables will be given. Bivariate random variables will be explored with marginal and conditional distributions. Special
discrete and continuous probability distributions will be explored with their real life applications.
Course Prerequisite(s)
Calculus-I

Lahore University of Management Sciences


Learning Outcomes
Ability to compute simple probabilities, expectations and variances
Ability to compute conditional probabilities
Ability to use common probability distributions
Ability to use the central limit theory
Grading Breakup and Policy
Quizzes: 25%
Midterm Examination: 35%
Final Examination: 40 %
Examination Detail
Midterm Exam

Final Exam

Duration: 75 minutes
Exam Specifications: Closed book, closed notes; help sheet will be provided if needed; calculator is allowed

Duration: 180 minutes


Exam Specifications: Closed book & closed notes; help sheet will be provided if needed, calculator is allowed

Course Overview

Week

Topics

Readings

Practice Problems

1,2

Counting, Permutations and Combinations

Chapter 1: Sec 1.1-1.5

7, 9, 15, 22, 30, 32

3,4

Sample Space and Events, Axioms of Probability


Probability of Events

Chapter 2: Sec 2.1-2.5

15, 38, 43, 45, 48, 55

5,6

Conditional Probability, Bayess Rule

Chapter 3: Sec 3.1-3.4

10, 13, 26, 28, 45, 47, 56

7,8

Concept of Random Variable, Discrete Random


Variable and Discrete Probability Distributions

Chapter 4: Sec 4.1-4.8

1, 10, 14, 17, 18, 19, 21, 38

Lahore University of Management Sciences

9,10

Continuous Random Variables


Continuous Probability Distributions

11,12

Joint Distributions

Chapter 5: Sec 5.1-5.5

3, 6, 7, 11, 15, 18, 37, 38

Chapter 6: Sec 6.1-6.5

13,14

Properties of Expectation
Central Limit Theorem

Textbooks/Supplementary Readings
Text:
A First Course in Probability (8th Edition) by Sheldon Ross
Recommended Books for Reading Purposes:
Introduction to Probability Models (10th Edition) by Sheldon Ross

2, 8, 12, 15, 18, 22, 27, 29


Chapter 7: 7.1-7.5
Chapter 8: Sec 8.1-8.3

Chapter 7: 7, 9, 10, 16, 21, 26, 51

PHY204: Electricity and Magnetism


Instructor: Muhammad Sabieh Anwar

Year: 2014-15

Office:

Email: [email protected]

Semester: Fall

Office Hours:

Category: Undergrad

Course Code: PHY 204

Course Title: Electricity and Magnetism

Credits: 3

Pre-requisite:None, good understanding of calculus is required

Teaching Fellow:

TFs Office Hours: will be announced

Website:http://physlab.lums.edu.pk (Follow the teaching link)


Lecture format: Per week, there are two 75 minutes lectures and one 75 minutes recitation.
____________________________________________________________________________
Course Description:
The course is a first introduction to Electricity and Magnetism. It will review static and dynamic
electric and magnetic fields, as well as their inter-relationships. Physical models will be
presented throughout the course, with a sprinkling of computational exercises and in-class
demonstrations.
Learning outcomes:
At the conclusion of this course, students should be able to:
1.

understand and model electric and magnetic interactions in free space and homogenous
matter,

2.

write down the Maxwell equations with a clear understanding of their meaning,

3.

sketch and solve simple problems involving distributions of charges and currents, timeindependent and time-dependent.

Course Status:
Core for Physics and EE Majors.
Pre-requisites:
None, but a good grounding in calculus is essential for this course.

Text books:
Physics for Scientists and Engineers with Moden Physicsby Fishbane, Gasiorowicz and
Thornton. (Primary textbook)
Matter and Interactionsby Chabay and Sherwood. (Useful complementary book)

Grading scheme:
Quizzes 25%
Homeworks: 10%
Mid-Term 25%
Final Exam 40%
The instructor has the liberty of varying these grade assignments by 5%.

Tentative Course Schedule & Topics:

Week

Topic

Electric Charge and Field

Gauss's law

Electric Potential

Electric fields in matter, capacitors and dielectrics

Direct currents in materials

Circuit elements

Review and Mid-Term Week

8A

Magnetic forces

8B,9

Production and Properties of magnetic fields, displacement current

10

Faraday's law

11

Magnetism in Matter

12

Inductance and circuit oscillations, alternating currents

13

Maxwell's equations and electromagnetic waves

14

Review and Final Exam

Lahore University of Management Sciences


PHY 200 Experimental Physics Lab-I

Instructor
Room No.
Office Hours
Email
Telephone
Secretary/TA
TA Office Hours
Course URL (if any)

Fall 2014-2015

Amrozia Shaheen, Afshan Jamshaid


Physics Laboratory
Monday Thursday (3:00 pm- 5:00 pm)
[email protected], [email protected]

N/A
N/A
http://physlab.lums.edu.pk/index.php/List_of_Experiments

Course Basics
Credit Hours
Lecture(s)

2
Nbr of Lec(s) Per Week

Lab (per week)


Recitation
Tutorial (per week)

Nbr of sessions Per


week
Nbr of Lec(s) Per Week
Nbr of Lec(s) Per Week

Course Distribution
Core
Elective
Open for Student Category
Close for Student Category

SSE core
N/A
SSE
N/A

2 lectures per week.

Duration

50 minutes.

First four weeks will


comprise lectures
on Uncertainties
and data
processing.
1

Duration

5 hours

N/A
N/A

Duration
Duration

COURSE DESCRIPTION
This is a core laboratory course that will familiarize students to the experimental physics through a set of carefully selected experiments
probing different branches of physics. Students will learn about uncertainties and measurements, units and dimensions and data processing
through Matlab. Students will also learn different techniques to analyze, store, process and display data with special emphasis on curve
fitting, and plotting. Students will be exposed to safety, handle and test different materials, technical report writing, and mathematical
modeling of natural phenomena. Furthermore, they learn about the correlation between theoretical predictions and experimental results.
All experiments will be supervised and guided.
COURSE PREREQUISITE(S)

None

COURSE OBJECTIVES

See below section Learning outcomes

Learning Outcomes

Lahore University of Management Sciences

Learning outcomes of PHY-200 (Conceptual)

Demonstrate a keen appreciation of physical quantities, their dimensions and units.


Understand uncertainties and their propagation.
Perform simple statistical analysis of data including means, mean squares and correlations.
Learn about different probability distributions.
Mathematically understand physical processes and correlating them with linear, exponential, sinusoidal and
polynomial models.
Representation of experimental data in the form of tables and graphs.
Demonstrate the ability to present an idea in the following equivalent forms: equations and formulas, words, graphs,
pictures and sketches

Learning outcomes of PHY-200 (Practical)

Understand the significance of various kinds of materials (ceramics, plastics, metals, conductors, insulators) being
utilized in hardware.
Perform experiments safely.
Appreciate the ability to work in teams.
Develop an appreciation of technical report writing and keeping a record of experimental results.

Grading Breakup and Policy


Assignment(s): 5%
Home Work:
Quiz(s): 10%
Laboratory performance and reports: 70%
Class Participation: N/A
Attendance: N/A
Midterm Examination: 15%
Project: N/A
Final Examination: N/A

Examination Detail

Midterm
Exam

Yes/No: Yes
Combine Separate:
Duration:
Preferred Date:
Exam Specifications:

Final Exam

Yes/No: No
Combine Separate:
Duration:
Exam Specifications:

COURSE OVERVIEW
Week/
Lecture/
Module

Topics

Recommended
Readings

Textbook(s)/Supplementary Readings
Listed on course website: http://physlab.lums.edu.pk/index.php/List_of_Experiments

Objectives/
Application

Lahore University of Management Sciences

This course outline is subject to change.

Instructor
Room No.
Office Hours
Email
Telephone
Head TAs
TA Office
Hours
Course URL (if
any)

SS 101 Islamic Studies


Fall Semester 2013

Aurangzeb Haneef (Course Coordinator)


239 G, Old SS Wing (Aurangzeb Haneef)
[email protected]
Aurangzeb Haneef: +92 42 3560 8092

Course Basics
Credit Hours
Lecture(s)

Tutorial (per week)


Course Distribution
Core
Open for Student
Category

2
Nbr of Lec(s) Per
Week
Nbr of Lec(s) Per
Week

1 lecture per
section (2
sections)
Bi-weekly

Duration 1 hour 50 minutes each


Duration 2 hours

Yes
All

COURSE PREREQUISITE(S)

None.

COURSE OBJECTIVES & DESCRPTION:


This short survey course has clearly defined aims. Conversely, this means that it has its limitations too. Its

overriding aim is to introduce the student to the academic study of IslamIslam here denoting both a religious

system, grounded upon certain normative revealed sources, as well as a civilization unfolding over time as a
complex network of cultures shaped by historical contingencies.

The course remains totally indifferent to the

personal beliefs of the students, to any sectarian identity they espouse, and any doctrinal point of view they hold.
We shall begin by a fundamental methodological question: How does one study a given religious system? What are

the scholarly tools and conceptual frameworks for exploring a civilization radiating from a religious core? What are

Lahore University of Management Sciences


the limitations of the academic study of Islam? In what way is it different from the account and conception of the

believer or, in the case of cultures, of the actor? From here we move on to a historical overview of Islam, looking

at the web of Muslim intellectual, doctrinal, and cultural pluralities, all woven into an unmistakable spirit of
an Islamic identity reverberating through them.

Following this, we survey various local Muslim communities from the perspective of the social

sciences, aiming to understand their diversities, and arriving now at the substantive nucleus of our discoursethe
doctrinal, normative, textual, spiritual, and legal contents of Islam, analytically treated. Then, carrying out an

exploration of Islamic intellectual history, with particular reference to Greek civilization and Alexandrian

Hellenism, we take up a general study of aesthetics in the context of Islamic literary expressions and material

culture, particularly in the realm of art and architecture. The course ends with a discussion of Islam and Muslims in

the contemporary world, looking at the post-17th century revivalist, reform, and modernist movements, the two

World Wars, colonialism, and secularism.

COURSE ETHICS AND DISCIPLINARY ISSUES:

It is advisable that the students first contact the Head Teaching Assistant of the course. In regular matters

for which he/she will have advance approval of the instructors, he/she will try to get back to you directly.

Otherwise, he/she will forward the queries to the respective instructor.

Students are required to complete the readings assigned prior to the class meeting to which they relate.

There will be four unannounced quizzes out of which three best will be taken into account for final grade.

Timely attendance is mandatory, and three un-excused absences will lead to a 50% reduction in your

attendance grade. Any more absences may lead to failure in the course. Late appearances in classes will be

marked as such and the student will not be given full credit for attendance.

Please switch off your mobile phones before entering the class.

In accord with institutional policy, there will be no discrimination in this course on the basis of race,

ethnicity, sex/gender, ability/disability, religion/spiritual beliefs or class. Your political beliefs and moral

values will not be considered relevant for your grading and evaluation.

Cheating, plagiarism, or any other violations of the honour code will be dealt with according to LUMS
policy. For further instructions, please refer to the latest Student Handbook.

Grading Breakup and Policy

Lahore University of Management Sciences


Quiz(s): 4 unannounced Quizzes (3 best) : 25%
Attendance: 10%
Midterm Examination: 30%
Final Examination: 35%

Lahore University of Management Sciences


COURSE OVERVIEW
Recommended
Readings
Module 1. Teaching Islamic Studies and Theoretical/Methodological Concerns (two lectures)
Introduction
to
the
Course
and No assigned reading.
Contextualization of Education in Muslim Supplementary Reading: Education in
1.
Muslim Societies: Learning from the Past,
Societies
pp. 1-19.
(AH)
Hodgson, Marshall. The Venture of Islam:
An Introduction to Islam as a Religion and
The Classical Age of Islam, pp. 71 99.
2.
World Civilization
(EF)
Module 2. Foundational Texts and Formative History (three lectures)
i. Sonn, Tamara. The Blackwell
Companion to Quran, Chapter 1,
pp. 3-16.
ii. Sells, Michael. Approaching the
The Quran
Quran, Chapter: The Sura of
(AH)
3.
Compassion, An Introduction, pp.
145-157.
iii. Esack, Farid. Quran, Liberation &
Pluralism
pp. 52-78.
Muhammad (PBUH) as Prophet
Hodgson, Marshall. The Venture of Islam:
4.
(EF)
The Classical Age of Islam, pp. 158-186.
Brown, Jonathan. Hadith: Muhammads
Hadith
Legacy in the Medieval and Modern World,
5.
(EF)
pp. 1-40.
Module 3. The Islamic Interpretive and Intellectual Tradition (four lectures)
i. Kamali, Hashim. Shariah Law: An
Introduction, pp. 14-27.
Foundations and Methodology of Islamic Law
ii.
Hallaq,
Wael. An Introduction to
6.
(EF)
Islamic Law, pp. 14-27.
Hallaq, Wael. An Introduction to Islamic
Islamic Law in Practice and Its Related
Law,
7.
Institutions
pp. 31-71.
(EF)
i. Burnett, Charles. Arabic into Latin:
Islamic Intellectual History: Philosophy,
The Reception of Arabic Philosophy
8.
into Western Europe.
Science and Theology
ii. Dallal, Ahmad. Islam, Science, and
(NH)
the Challenge of History, pp. 72-80
Makdisi, George. The Rise of Humanism in
Classical Islam and Christian West, Chapter
Adab: The Islamic Literary Tradition
1: Humanism in the Organization of
(AH)
9.
Religious Knowledge, pp. 88-96; Chapter
2: Relation of Adab to Authority, Hadith
and Law, pp. 97-115.
Module 4. Sufism: The Inner Resolutions (one lecture)
i. Chittick, William C. Sufism: A
beginners Guide, Chapter 1: The Sufi
10.
Path, pp. 1-21.

Session

Topics

Lahore University of Management Sciences


Sufism: Introduction to Islamic Spirituality
(AH)

ii.

Nasr, Syed Hossein., The Garden of


Truth, The Vision and Promise of
Sufism, Islams Mystical Tradition,
The Sufi Tradition and the Sufi
Orders, pp. 163-184.

Supplementary Reading: Renard, John.


Knowledge of God in Classical Sufism, AsSarraj, Abu-Nasr: The Book of Flashes, pp.
65-78.
Module 5. Literary Expression and Material Culture (one lecture)
11.

12.

13.

Islamic Art and Architecture


No Assigned Readings
(NS)
Module 6. Critical Issues in Contemporary Muslim Societies (two lectures)
i. Mamdani, Mahmood. America and
Political Islam.
Secular Modernity and the Islamic Revival
ii. Mandaville, Peter. Global Political
(JA)
Islam, pp. 7-15.
iii. Said, Edward. Islam Through Western
Eyes, the Nation.
iv. Denny, Frederick. An Introduction to
Islam: Major Movements in Renewal
and Reform, pp. 351-376.
Abou El Fadl, Khaled. The Place of
Tolerance in Islam, Chapter 1: The Place of
Critical Issues: Extremism, Violence, Jihad,
Tolerance in Islam pp. 3-23; Jan, Abidullah:
Islam and the West
The Limits of Tolerance, pp. 42- 50;
(AH)
Reply, pp. 93-111.

Key
AH: Aurangzeb Haneef
EF: Essam Fahim
JA: Junaid Ahmed
NH: Nomanul Haq
NS: Nadhra Shahbaz

Lahore University of Management Sciences


SS 102 Pakistan Studies: Culture and Heritage
Fall 2014 - 2015

Instructor
Room No.
Office Hours
Email
Telephone
Secretary/TA
TA Office
Hours
Course URL (if
any)

COURSE BASICS
Credit Hours
Lecture(s)

Sehar Sarah Sikander Shah, Anushay Malik, Sana Malik


124 HSS wing, ground floor
[email protected], [email protected]

2
1 Per Week

Duration

1:50 hours

COURSE DESCRIPTION
This course aims to introduce students to the history of Pakistan, provide an overview of contending perspectives
on the origins of the country and examine its politics, society and culture. In addition, it engages with several
contemporary issues facing the country including, for example, the state of human rights, economic and human
development and the role of regional and ethnic identities.

COURSE STRUCTURE
The course is roughly divided into 12 themes; 6 historical and 6 contemporary. The class will be divided into 10
groups of 7-8 members each (depending on enrolment) each of which will choose one historical and one
contemporary theme for the reading presentation and the group project respectively. E.g. if a group chooses a
historical topic for the reading presentation, it must select a contemporary topic for the group project and vice
versa.

GRADING
Attendance
5%
Class Participation
5%
Reading Presentation
10%
Group Project - Project Plan
10%
- Presentation
15%
Quizzes (4)
20%
Final Exam
35%
GROUP READING PRESENTATION
Each group will present on one of the reading themes of the course in the corresponding session. The presentation
will be expected to present the main arguments presented by the author, the gist of the reading, and its analysis.
At least 3-4 members of the group must present while all members are expected to help in making the
presentation.

Lahore University of Management Sciences

GROUP PROJECT
This is an exploratory project (not a research or writing-based one) on topics assigned by the instructor. Similar
to the reading presentation, groups will have around 7-8 members each of which at least 3-4 must present the
project. The project is graded on three fronts: the idea or concept adopted, the project plan, and the final
presentation or video etc. Students will be expected to work on the project throughout the course of the semester
and discuss their progress periodically with the instructor.
QUIZZES
There will be 5 unannounced quizzes in class of which 1 will be dropped. The quizzes will be based on the
readings, slides, lecture notes and/or class discussions. There will be no make-up quizzes.

FINAL EXAM
The final exam will be closed books/closed notes. A major component of this exam will be a subjective, essay
question.
ATTENDANCE
Students are expected to attend all classes. If a student is unable to make it to a session, they must let the
instructor and the TA know beforehand.
COURSE SCHEDULE
Session
Topic
1
Introduction to the
Course
&
The Indus Valley
Civilization
2

Colonial Period

Readings
Fitzsimons, Matthew A. 1970. The Indus Valley Civilization. The History
Teacher (November). 4(1): 9-22

Kenoyer, J. (1998). People and Professions (127 146). Decline and Legacy of
the Indus Cities (173-184). In Ancient Cities of the Indus Valley Civilization.
Michigan: OUP.
Aziz, K. K. (1976). The Imperial Impact in The British in India- A Study in
Imperialism. Islamabad: National Commission on Historical and Cultural
Research.

Talbot, Ian. 2005. Colonial Rule, Authoritarianism and Regional History in


North West India. In Pakistan: A Modern History. London: Hurst & Co.: 53-65
3

Creation of Pakistan

Civil War and


Dismemberment of
Pakistan

Ziring, Lawerence. 1999. Before the Beginning (1-22) In Pakistan in the


Twentieth Century: A Political History. Karachi: OUP
Ziring, Lawerence. 1999. The Formation of Pakistan (23-53). In Pakistan in the
Twentieth Century: A Political History. Karachi: OUP
Sayeed. Khalid. 1968. Conflicting Views about the Origins of Pakistan. In
Pakistan: The Formative Phase 1857 1948. Karachi. OUP. 3-12.

Stephenson, Glenn V. 1968. Pakistan: Discontiguity and the Majority Problem.


Geographical Review. 58(2): 195 - 213

Bose, Sarmila. 2005. Anatomy of Violence: An Analysis of the Civil War in East
Pakistan in 1971. Economic and Political Weekly. 40(41): 4463 4471

Lahore University of Management Sciences

Democratization and Nasr, Vali. 2004. Military Rule, Islamism and Democracy in Pakistan. Middle
Military Rule
East Journal. (Spring) 58 (2): 195-209

Nation building

Waseem, Mohammad. 2002. Causes of Democratic Downslide. Economic and


Political Weekly. 37(44 45): 4532 4538
Nasr, S. Vali. 1997. State, Society and the Crisis of National Identity. In State,
Society and Democratic Change in Pakistan, Rasul Bakhsh Rais (ed). Karachi:
OUP. 104 - 130.

Syed, Anwar H. 1980. The Idea of a Pakistani Nationhood. Polity. 12(4): 575 597
7

Identity Formation

Human Rights

Civil Society

Ahmed, Feroz .1996. Ethnicity, Class and State in Pakistan. Economic and
Political Weekly. 31(47): 3050 3053

Rahman, Tariq. 2003. Language, Power and Ideology. In Continuity and Change:
Socio-political and Institutional Dynamics in Pakistan. Zaidi (ed). Karachi: City
Press. 133- 149

Ahmed, Mumtaz. 1998. Revivalism, Islamization, Sectarianism and Violence in


Pakistan. In Pakistan 1997. Baxter and Kennedy (eds). India: Harper Collins
HRCP. 2011. Freedom of Thought, Conscience and Religion. State of Human
Rights in Pakistan. 81 92.

HRCP. 2011. Freedom of Expression. State of Human Rights in Pakistan. 93


108
Zaidi, S. Akbar. 2006. Civil and Uncivil Society in Pakistan. Economic and
Political Weekly. (Aug19 25). 41 (33): 3556 - 3557

Mustafa, D. 2005. (Anti) Social Capital in the Production of an (un) civil society
in Pakistan. Geographical Review. 95 (3): 328 347
10

Terrorism and
Islamization

A Great Deal of Ruin in a Nation. 2011. Pakistan, Asia, The Economist, March
31. http://www.economist.com/node/18488344
Rashid, Ahmed. 2012. Changing the Narrative or Preparing for the Worst. In
Pakistan on the Brink: The Future of America, Pakistan and Afghanistan. New
York: Viking

Lahore University of Management Sciences


11

12

13
14

Economic
Development

Zaidi, S. Akbar. 2008. Social and Structural Transformations in Pakistan.


Economic and Political Weekly. 43 (20): 10-11

Education

PILDAT. June 2011. Right to Free and Compulsory Education in Pakistan:


Enforcement of Article 25-A of the Constitution of Pakistan Background Paper.
Islamabad: PILDAT

Presentations
Presentations

Hasan, Pervez. May 2007. Role of the State in Pakistans Economy: Assessing
the Past and Exploring Future Challenges Economic and Political Weekly. 42
(18): 1623-1630

Nelson, Matthew J. Sept 2006. Muslims, Markets and the meaning of a Good
Education in Pakistan Asian Survey. 46(5): 699-720

You might also like