diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ceef286..ccff9ce 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,6 +12,7 @@ repos: - id: check-merge-conflict - id: check-yaml - id: check-added-large-files + args: ['--maxkb=5120'] # 5mb - id: debug-statements - repo: https://github.com/adrienverge/yamllint.git rev: v1.33.0 diff --git a/ocw_oer_export/create_csv.py b/ocw_oer_export/create_csv.py index 04fd93f..038d9cf 100644 --- a/ocw_oer_export/create_csv.py +++ b/ocw_oer_export/create_csv.py @@ -4,12 +4,37 @@ import csv import os import logging +import re from .client import extract_data_from_api from .data_handler import extract_data_from_json from .constants import API_URL -from .utilities import text_cleanup +from .utilities import normalize_course_url, text_cleanup + + +def create_fm_ocw_course_url_to_keywords_mapping(path=None, file_name=None): + """ + Creates a mapping from OCW course URLs to their associated keywords using FM export data. + + This function reads a CSV file and extracts the mapping between course URLs and their keywords. + """ + if path is None: + path = os.path.dirname(__file__) + + if file_name is None: + file_name = "mapping_files/fm_keywords_export.csv" + + file_path = os.path.join(path, file_name) + course_map = {} + + with open(file_path, newline="", encoding="utf-8") as csvfile: + reader = csv.DictReader(csvfile) + for row in reader: + if row["zze_courseURL"]: + course_url = normalize_course_url(row["zze_courseURL"]) + course_map[course_url] = row["zzd_keywords"] + return course_map def create_ocw_topic_to_oer_subject_mapping(path=None, file_name=None): @@ -52,8 +77,17 @@ def get_cr_subjects(ocw_topics_mapping, ocw_course_topics): return "|".join(sorted_unique_oer_subjects) -def get_cr_keywords(list_of_topics_objs): - """Get OER formatted Course Resource Keywords from a list of OCW topic objects.""" +def get_cr_keywords(fm_ocw_keywords_mapping, list_of_topics_objs, course_url): + """ + Get OER formatted Course Resource keywords for a given OCW course. + + It checks for course's keywords in FM export mapping (fm_ocw_keywords_mapping). + If no keywords are found there, it uses OCW course's topics as keywords. + """ + keywords = fm_ocw_keywords_mapping.get(course_url) + if keywords: + normalized_keywords = re.sub(r"[;,]|\n\n|\n", "|", keywords) + return normalized_keywords.replace("| ", "|") return "|".join(topic["name"] for topic in list_of_topics_objs) @@ -110,7 +144,7 @@ def get_description_in_plain_text(description): return cleaned_description -def transform_single_course(course, ocw_topics_mapping): +def transform_single_course(course, ocw_topics_mapping, fm_ocw_keywords_mapping): """Transform a single course according to OER template.""" return { "CR_TITLE": course["title"], @@ -123,7 +157,9 @@ def transform_single_course(course, ocw_topics_mapping): "CR_COU_TITLE": "Creative Commons Attribution Non Commercial Share Alike 4.0", "CR_PRIMARY_USER": "student|teacher", "CR_SUBJECT": get_cr_subjects(ocw_topics_mapping, course["topics"]), - "CR_KEYWORDS": get_cr_keywords(course["topics"]), + "CR_KEYWORDS": get_cr_keywords( + fm_ocw_keywords_mapping, course["topics"], course["runs"][0]["url"] + ), "CR_AUTHOR_NAME": get_cr_authors(course["runs"][0]["instructors"]), "CR_PROVIDER": "MIT", "CR_PROVIDER_SET": "MIT OpenCourseWare", @@ -134,12 +170,16 @@ def transform_single_course(course, ocw_topics_mapping): } -def transform_data(data, ocw_topics_mapping): +def transform_data(data): """Transform all courses into OER template.""" + fm_ocw_keywords_mapping = create_fm_ocw_course_url_to_keywords_mapping() + ocw_topics_mapping = create_ocw_topic_to_oer_subject_mapping() + return [ course for course in ( - transform_single_course(course, ocw_topics_mapping) for course in data + transform_single_course(course, ocw_topics_mapping, fm_ocw_keywords_mapping) + for course in data ) if course is not None ] @@ -165,8 +205,7 @@ def create_csv( else: raise ValueError("Invalid source. Use 'api' or 'json'.") - ocw_topics_mapping = create_ocw_topic_to_oer_subject_mapping() - transformed_data = transform_data(api_data_json, ocw_topics_mapping) + transformed_data = transform_data(api_data_json) fieldnames = [ "CR_TITLE", "CR_URL", diff --git a/ocw_oer_export/mapping_files/fm_keywords_export.csv b/ocw_oer_export/mapping_files/fm_keywords_export.csv new file mode 100644 index 0000000..58e41fd --- /dev/null +++ b/ocw_oer_export/mapping_files/fm_keywords_export.csv @@ -0,0 +1,6144 @@ +zz_kbcx_courseNumber,zzm_courseTitle_noEdit,zzd_semester,zzd_year,zzd_keywords,zze_courseURL +1.00,Introduction to Computers and Engineering Problem Solving,Spring,2012,computer; engineering; problem solving; software; software development; programming; graphical user interface; numerical methods; data structures; sorting; searching; computer graphics; Java; ,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-00-introduction-to-computers-and-engineering-problem-solving-spring-2012 +1.010,Uncertainty in Engineering,Fall,2008,fundamentals of probability; random processes; statistics; decision analysis; random variables and vectors; uncertainty propagation; conditional distributions; second-moment analysis; system reliability; Bayes theorem; total probability theorem; Bayesian analysis and risk-based decision; estimation of distribution parameters; hypothesis testing; simple and multiple linear regressions; Poisson and Markov processes,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-010-uncertainty-in-engineering-fall-2008 +1.011,Project Evaluation,Spring,2011,civil engineering project; engineering economics; net present value; life-cycle costing; benefit-cost analysis; project evaluation; cost estimation; large-scale infrastructure; building design; construction; transportation systems; urban development; environmental projects; water resource management,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-011-project-evaluation-spring-2011 +1.012,Introduction to Civil Engineering Design,Spring,2002,design theory; design tools; design techniques; problem-solving; design issues; practice in civil engineering; built facilities; buildings; bridges; roads; built environment; natural environment; economic factors; social factors; expected life span;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-012-introduction-to-civil-engineering-design-spring-2002 +1.017,Computing and Data Analysis for Environmental Applications,Fall,2003,"probability; statistics; events; random variables; univariate distributions; multivariate distributions; uncertainty propagation; Bernoulli trials; Poisson processed; conditional probability; Bayes rule; random sampling, point estimation; interval estimation; hypothesis testing; analysis of variance; linear regression",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-017-computing-and-data-analysis-for-environmental-applications-fall-2003 +1.020,Ecology II: Engineering for Sustainability,Spring,2008,modeling; matlab; human impact on environment; economics; natural resources; assessment of model predictions; mass balance; energy balance; mass transport; energy transport; resource economics; life cycle analysis; chemical kinetics; population modeling; pesticides; nutrients; building energy; air quality; crop irrigation; groundwater,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-020-ecology-ii-engineering-for-sustainability-spring-2008 +1.022,Introduction to Network Models,Fall,2018,"network models +spectral graph theory +notions of centrality +contagion phenomena +cascades +diffusion +opinion dynamics +triadic closure +homophily +spectral clustering +community detection +liner dynamic systems +Markov chains +herding +epidemics +game theory +congestion games +networks",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-022-introduction-to-network-models-fall-2018 +1.033,Mechanics of Material Systems: An Energy Approach,Fall,2003,continuum mechanics; material modeling; engineering materials; energy principles: deformation and strain; momentum balance; stress; stress states; elasticity and elasticity bounds; plasticity; yield design;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-033-mechanics-of-material-systems-an-energy-approach-fall-2003 +1.040,Project Management,Spring,2004,"project management, resource management, financial controls, construction management, scheduling, estimating, progress monitoring, project control",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-040-project-management-spring-2004 +1.040,Project Management,Spring,2009,project management; public-private partnership; infrastructure; construction finance; enterprise project management; cost estimation; portfolio project management; risk management; risk analysis; project control; project organization; private finance initiative; allocation; risk management process; cost-benefit analysis; project organization and contracts; procurement,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-040-project-management-spring-2009 +1.050,Solid Mechanics,Fall,2004,solid mechanics;engineering design; open ended exercises; matrix analysis of structures; structural mechanics; static equilibrium; force resultants; support conditions; determinate planar structures; beams; trusses; frames; stress; strain; shear; bending; torsion; matrix methods; elastic stability; design exercises; interactive exercises; systems thinking,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-050-solid-mechanics-fall-2004 +1.050,Engineering Mechanics I,Fall,2007,mechanics; materials; structures; engineering design; Galileo's problem; dimensional analysis; atomic explosion; World Trade Center towers; stress; continuum model; beam model; strength models; strength criteria; stress plane; deformation; strain tensor; Mohr circle; elasticity; energy bounds; fracture mechanics; collapse,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-050-engineering-mechanics-i-fall-2007 +1.051,Structural Engineering Design,Fall,2003,structural engineering design; concrete design; steel design; analysis; element level; system levels; design experience; real-world; open-ended; design issues;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-051-structural-engineering-design-fall-2003 +1.054,Mechanics and Design of Concrete Structures,Spring,2004,concrete structures; mechanics; design; strength; deformation; stress; strain; failure criteria; concrete plasticity; fracture mechanics; reinforced concrete; code constraints; high-performance materials; slabs; yield line theory; behavior models; nonlinear analysis; bridge structures; concrete shells; containments,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-054-mechanics-and-design-of-concrete-structures-spring-2004 +1.060,Engineering Mechanics II,Spring,2006,fluid mechanics; fluids; civil and environmental engineering; differential equations; calculus; flow; movement; wave forms; Bernoulli's theorem; wavelets; mechanics; solids; hydrostatics; mass; momentum; energy; flow nets; velocity; laminar flow; turbulent flow; groundwater; hydraulics; backwater curves; ,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-060-engineering-mechanics-ii-spring-2006 +1.061,Transport Processes in the Environment,Fall,2008,mass transport; environmental flows; rivers; lakes; water flow; derivation; diffusion; turbulence; boundary layers; dissolution; bed-water exchange; air-water exchange; particle transport; conservation of mass; scaling; aquatic systems; advection; instantaneous point source; dispersion; transport,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-061-transport-processes-in-the-environment-fall-2008 +1.101,Introduction to Civil and Environmental Engineering Design I,Fall,2005,design; water resources; water treatment; structures; structural design; fabrication; testing; hardware; laboratory experiments; pH; neutralization; hydraulic conductivity; porosity; truss; tension; beam bending; beam buckling; thermal design; heating; cooling; thermal infrared camera; thermal IR imaging; heat loss,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-101-introduction-to-civil-and-environmental-engineering-design-i-fall-2005 +1.101,Introduction to Civil and Environmental Engineering Design I,Fall,2006,design; water resources; water treatment; structures; structural design; fabrication; testing; hardware; laboratory experiments; pH; neutralization; hydraulic conductivity; porosity; truss; tension; beam bending; beam buckling; thermal design; heating; cooling; thermal infrared camera; thermal IR imaging; heat loss,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-101-introduction-to-civil-and-environmental-engineering-design-i-fall-2006 +1.103,Civil Engineering Materials Laboratory,Spring,2004,"materials laboratory; load-deformation characteristics; failure modes; experiments; data collection, data analysis; tension; elastic behavior; direct shear; friction; concrete; early age properties; compression; directionality; soil classification; consolidation test; heat treatment",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-103-civil-engineering-materials-laboratory-spring-2004 +1.105,Solid Mechanics Laboratory,Fall,2003,properties of structural materials; structural elements; structural systems; experimental technique; data collection; reduction; analysis; presentation;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-105-solid-mechanics-laboratory-fall-2003 +1.133,M.Eng. Concepts of Engineering Practice,Fall,2007,professional engineer; team-building skills; lectures; team workshops; seminars; written communication; oral communication; job placement skills; trends in engineering; trends in construction industry; risk analysis; risk management; proposal preparation; request for proposal; small business; professional registration; project evaluation; project management; liability; professional ethics; negotiation;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-133-masters-of-engineering-concepts-of-engineering-practice-fall-2007 +1.151,Probability and Statistics in Engineering,Spring,2005,fundamentals of probability; random processes; statistics; decision analysis; random variables and vectors; uncertainty propagation; conditional distributions; second-moment analysis; system reliability; Bayesian analysis and risk-based decision; estimation of distribution parameters; hypothesis testing; simple and multiple linear regressions; Poisson and Markov processes,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-151-probability-and-statistics-in-engineering-spring-2005 +1.204,Computer Algorithms in Systems Engineering,Spring,2010,databases; data structures; divide and conquer algorithm; greedy algorithm; dynamic programming; branch and bound; linear optimization; nonlinear optimization; approximate queues; network designs,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-204-computer-algorithms-in-systems-engineering-spring-2010 +1.322,Soil Behavior,Spring,2005,soil; soil composition; clay; interparticle forces; soil strength; laddite; Hvorslev parameters; plasticity; stress history; consol; conductivity; compression; consolidation; problem soils; sands,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-322-soil-behavior-spring-2005 +1.34,Waste Containment and Remediation Technology,Spring,2004,"waste containment, waste remediation, soil remediation, groundwater remediation, contaminated site, contamination, waste disposal, mass transport, Superfund, EPA, USGS, air sparging, air stripper, bioremediation, soil vapor extraction, SVE, pump and treat, landfill, leachate, chlorinated solvent, NAPL, LNAPL, DNAPL, TCE, PCE, risk assessment, soil liner, clay liner, geomembrane, brownfield, remediation technologies",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-34-waste-containment-and-remediation-technology-spring-2004 +1.361,Advanced Soil Mechanics,Fall,2004,soil; origin and nature of soils; soil classification; effective stress principle; hydraulic conductivity and seepage; stress-strain-strength behavior of cohesionless and cohesive soils and application to lateral earth stresses; bearing capacity and slope stability; consolidation theory; settlement analyses; laboratory methods; soil properties; design practice,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-361-advanced-soil-mechanics-fall-2004 +1.364,Advanced Geotechnical Engineering,Fall,2003,"geotechnical engineering, soil, soil mechanics, foundations, earth retaining structures, site investigation, ultimate limit, serviceability limit, soil improvement, gravity walls, composite construction, reinforced earth, structural support, excavations, bracing, tieback anchors, tiebacks, safety factors, boreholes, soil sampling, stratigraphy, SPT, FV, PCPT, spread foundation design, in situ tests, bearing capacity, strength parameters, allowable settlements, sand, clay, soil-structure interaction, pile types, pile selection, pile behavior, pile capacity, pile driving, pile load tests, slope stability, cantilevers, propper walls, braced excavations, reinforced soil, soil nailing, geosynthetic reinforcement",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-364-advanced-geotechnical-engineering-fall-2003 +1.46,Strategic Management in the Design and Construction Value Chain,Fall,2003,strategic management; value chain; construction; strategic planning; real estate; industry analysis; information technology; case method; case study,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-46-strategic-management-in-the-design-and-construction-value-chain-fall-2003 +1.464,E-Commerce and the Internet in Real Estate and Construction,Spring,2004,e-commerce; Internet; real estate; construction; information technology; business strategy; supply chain; risk allocation; contract obligations; consolidation; information transparency; case method; case study,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-464-e-commerce-and-the-internet-in-real-estate-and-construction-spring-2004 +1.561,Motion Based Design,Fall,2003,preliminary design; motion-sensitive structures; analytical techniques; numerical techniques; optimal stiffness distribution; damping; controlling motion; tuned mass dampers; base isolation systems; active structural control; building structures; wind excitation; seismic excitation,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-561-motion-based-design-fall-2003 +1.571,Structural Analysis and Control,Spring,2004,structural analysis; structures; large-scale structural systems; modeling; tall buildings; cable-stayed bridges; tension structures; active structural control; feedback control systems; civil structures; simulations,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-571-structural-analysis-and-control-spring-2004 +1.63,Advanced Fluid Dynamics of the Environment,Fall,2002,"fluid dynamics, fluid motion, Cartesian tensor convention, scaling, approximations, slow flow, Stokes flow, Oseen, spreading, gravity, stratified fluid, boundary layer, high speed +flow, jets, thermal plume, pure fluids, +porous media, similarity method of solution, transient boundary layer, buoyancy, +convection. porous media, dispersion, hydrodynamic instability, Kelvin-Helmholtz instability, shear, stratification, Orr-Sommerfeld, capillary phenomena, bubbles, drops, Marangoni instability, contact lines, geophysical fluid dynamics, coastal flows, wind-induced flows, coastal upwelling",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-63-advanced-fluid-dynamics-of-the-environment-fall-2002 +1.72,Groundwater Hydrology,Fall,2005,D'arcy equation; flow nets; mass conservation; the aquifer flow equation; heterogeneity and anisotropy; storage properties; regional circulation; unsaturated flow; recharge; stream-aquifer interaction; well hydraulics; flow through fractured rock; numerical models; groundwater quality; contaminant transport processes; dispersion; decay; adsorption;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-72-groundwater-hydrology-fall-2005 +1.731,Water Resource Systems,Fall,2006,"water resources, river basin development, flood control, water supply, groundwater remediation, simulation, optimization, hydrology",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-731-water-resource-systems-fall-2006 +1.74,"Land, Water, Food, and Climate",Fall,2020,"land resources +water resources +food security +climate change +food production +natural resources +agriculture +agro-ecology +biotechnology +demography",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-74-land-water-food-and-climate-fall-2020 +1.76,Aquatic Chemistry,Fall,2005,water; aquatic; seawater; carbonate; trace metals; woods hole; acid-base; complexation; precipitation-dissolution; reduction-oxidation; chemical kinetics; equilibrium composition; approximation techniques; ,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-76-aquatic-chemistry-fall-2005 +1.77,Water Quality Control,Spring,2006,water quality control; mathematical models; effluents; lakes; reservoirs; rivers; estuaries; oceans; element cycles; water quality indicators; offshore outfalls; diffusion; salinity intrusion; thermal stratification; eutrophication; sedimentation processes,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-77-water-quality-control-spring-2006 +1.782,Environmental Engineering MEng Project,Fall,2003,civil engineering; environmental engineering; professional practice; methodology; thesis; proposal; yonder; geotechnical data; water treatment; aquifer; groundwater; hydrology; Chattahoochee; Tennessee; US Virgin Islands; pollution; contaminants; drinking water,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-782-environmental-engineering-masters-of-engineering-project-fall-2003-spring-2004 +1.782,Environmental Engineering Masters of Engineering Project,Fall,2007,civil engineering; environmental engineering; professional practice; methodology; thesis; proposal; request for proposal; water treatment; aquifer; groundwater; hydrology; Ghana; Thailand; Honduras; pollution; contaminants; drinking water; refugee camp; sanitation; water filtration; guinea worm; biosand filter; horizontal roughing filter; ,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-782-environmental-engineering-masters-of-engineering-project-fall-2007-spring-2008 +1.85,Water and Wastewater Treatment Engineering,Spring,2006,"water pollution; wastewater treatment; chemical treatment; gas transfer, reactor tanks; water quality; trickling filters; sludge handling; wastewater screening",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-85-water-and-wastewater-treatment-engineering-spring-2006 +1.89,Environmental Microbiology,Fall,2004,microorganisms; nature; environment; cellular architecture; energetics; growth; evolution; gene flow; population and community dynamics; water and soil microbiology; biogeochemical cycling; microorganisms; biodeterioration; bioremediation;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-89-environmental-microbiology-fall-2004 +1.963,Environmental Engineering Applications of Geographic Information Systems,Fall,2004,GIS; Spatial Database Management; Geographic Information Systems; ArcView; census; SQL; databases; cartography; community planning; spatial analysis; wetlands management; data types; map-making; data mapping; hydrology; environmental engineering; deepwater habitats; salinization;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-963-environmental-engineering-applications-of-geographic-information-systems-fall-2004 +1.963,A Sustainable Transportation Plan for MIT,Spring,2007,sustainable transportation; shuttle; MBTA; bus; subway; commuter rail; parking; subsidy; Universal pass; underground parking; garage; parking lots; leased parking; MIT campus,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-963-a-sustainable-transportation-plan-for-mit-spring-2007 +1.964,Design for Sustainability,Fall,2006,sustainability; engineering; built environment; life-cycle assessment; LCA; product impact; product life cycle; infrastructure; computational methods; water; wastewater; energy; materials; construction;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-964-design-for-sustainability-fall-2006 +1.978,From Nano to Macro: Introduction to Atomistic Modeling Techniques,IAP,2007,"large-scale atomistic +modeling techniques; modern +engineering sciences; atomistic +modeling; extreme loading; ductile and brittle materials failure; molecular dynamics; simulations; Cauchy-Born rule; biomechanics; biomaterials; copper nanocrystal; nanomechanics; material mechanics",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-978-from-nano-to-macro-introduction-to-atomistic-modeling-techniques-january-iap-2007 +2.000,How and Why Machines Work,Spring,2002,"machines, conceived, developed, drawn, hands-on experience, sketching, 3D CAD, field trips, physics, history",https://ocw.mit.edu/courses/mechanical-engineering/2-000-how-and-why-machines-work-spring-2002 +2.001,Mechanics & Materials I,Fall,2006,"statics; pressure;deformation; deformable solid;equilibrium; geometric compatibility; material behavior; stress; strain; shear; elasticity; thermal expansion; failure modes; biomechanics, natural materials; motion; structure; force; moment; member; truss; friction; torsion; bending; displacement; beam;",https://ocw.mit.edu/courses/mechanical-engineering/2-001-mechanics-materials-i-fall-2006 +2.002,Mechanics and Materials II,Spring,2004,beam bending; buckling; vibration; polymers; viscoelasticity; strength; ductility; stress; stress concentration; sheet bending; heat treatment; fracture; plasticity; creep; fatigue; solid materials; mechanical loading; thermal loading; design-limiting behavior; stiffness; toughness; durability; engineering materials; materials-limiting problem; materials selection,https://ocw.mit.edu/courses/mechanical-engineering/2-002-mechanics-and-materials-ii-spring-2004 +2.003,Modeling Dynamics and Control I,Spring,2005,modeling; analysis; control; dynamic; systems; mechanical; translation; uniaxial; rotation; electrical; circuits; coupling; levers; gears; electro-mechanical; devices; linear; differential; equations; state-determined; Laplace; transforms; transfer; functions; frequency; response; Bode; vibrations; modal; open-loop; closed-loop; control; instability; time-domain; controller; frequency-domain,https://ocw.mit.edu/courses/mechanical-engineering/2-003-modeling-dynamics-and-control-i-spring-2005 +2.004,Modeling Dynamics and Control II,Spring,2003,"Kinematics, dynamics of mechanical systems, Linear and angular momentum principles, Linearization about equilibrium, Integral and derivative action, lead and lag compensators. Root-locus design methods. Frequency-domain design methods. multi-domain systems.",https://ocw.mit.edu/courses/mechanical-engineering/2-004-modeling-dynamics-and-control-ii-spring-2003 +2.004,"Systems, Modeling, and Control II",Fall,2007,Laplace transform; transform function; electrical and mechanical systems; pole-zero diagram; linearization; block diagrams; feedback control systems; stability; root-locus plot; compensation; Bode plot; state space representation; minimum time;,https://ocw.mit.edu/courses/mechanical-engineering/2-004-systems-modeling-and-control-ii-fall-2007 +2.004,Dynamics and Control II,Spring,2008,Laplace transform; transform function; electrical and mechanical systems; pole-zero diagram; linearization; block diagrams; feedback control systems; stability; root-locus plot; compensation; Bode plot; state space representation; minimum time;,https://ocw.mit.edu/courses/mechanical-engineering/2-004-dynamics-and-control-ii-spring-2008 +2.007,Design and Manufacturing I,Spring,2009,"engineering design, synthesis, analysis, robustness, manufacturability, active learning, idea generation, estimation, materials selection, visual thinking, kinematics, machine elements, robotics, mechanical engineering, student work, contest",https://ocw.mit.edu/courses/mechanical-engineering/2-007-design-and-manufacturing-i-spring-2009 +2.008,Design and Manufacturing II,Spring,2003,"manufacturing enterprises, physics, stochastic nature of manufacturing processes, quality, rate, cost, flexibility, process physics, process control",https://ocw.mit.edu/courses/mechanical-engineering/2-008-design-and-manufacturing-ii-spring-2003 +2.008,Design and Manufacturing II,Spring,2004,modern manufacturing; manufacturing processes; equipment/control; systems; design for manufacturing; integration of engineering and management disciplines; manufacturing rate; cost; quality; flexibility; process physics; equipment design; automation/control; quality; design for manufacturing; industrial management; systems design and operation,https://ocw.mit.edu/courses/mechanical-engineering/2-008-design-and-manufacturing-ii-spring-2004 +2.009,Product Engineering Process,Fall,2021,"product design +product engineering +innovation +design teams +team dynamics +product development +opportunity identification +market research +mock-ups +prototypes +new product opportunities +sketch models",https://ocw.mit.edu/courses/mechanical-engineering/2-009-product-engineering-process-fall-2021/ +2.011,Introduction to Ocean Science and Engineering,Spring,2006,"oceanography, physical oceanography, ocean circulation, geostrophic flow, surface wave, wave velocity, propagation phenomena, ocean acoustics, sonar, submarine, submersible, marine, marine science, ship, boat, marine animal, undersea, ROV, current, vortex, turbulence",https://ocw.mit.edu/courses/mechanical-engineering/2-011-introduction-to-ocean-science-and-engineering-spring-2006 +2.016,Hydrodynamics,Fall,2005,fluid mechanics; mass; momentum; energy; lift; drag; laminar; turbulent; turbulence; wave; waves; surface waves; current; water; ocean; force; sea; sea wave; ship; propulsion; propeller; fish; swimming; wind; VIV; vortex induced vibration; Bernoulli; D'Allembert; hydrostatics; fluid dynamics,https://ocw.mit.edu/courses/mechanical-engineering/2-016-hydrodynamics-13-012-fall-2005 +2.019,Design of Ocean Systems,Spring,2011,"ocean environment, seakeeping, hydrodynamics, mooring dynamics, propulsion and power, structural dynamics, manufacturing and fabrication, floating offshore structures, design process, group dynamics, ethics in engineering practice",https://ocw.mit.edu/courses/mechanical-engineering/2-019-design-of-ocean-systems-spring-2011 +2.032,Dynamics,Fall,2004,"motion; momentum; work-energy principle; degrees of freedom; Lagrange's equations; D'Alembert's principle; Hamilton's principle; gyroscope; gyroscopic effect; steady motions; nature of small deviations; natural modes, natural frequencies for continuous and lumped parameter systems, mode shapes; forced vibrations; dynamic stability theory; instability.",https://ocw.mit.edu/courses/mechanical-engineering/2-032-dynamics-fall-2004 +2.035,Special Topics in Mathematics with Applications: Linear Algebra and the Calculus of Variations,Spring,2007,"calculus of variations, linear algebra, solid mechanics, fluid mechanics, energy methods, microstructures of crystalline solids",https://ocw.mit.edu/courses/mechanical-engineering/2-035-special-topics-in-mathematics-with-applications-linear-algebra-and-the-calculus-of-variations-spring-2007 +2.051,Introduction to Heat Transfer,Fall,2015,"Conduction, Convection,Radiation, Fourier Law, Energy Balance , +First law of thermodynamics, +Thermal resistance network, Thermal Energy Generation, Fins, Heat Transfer in Fins, ",https://ocw.mit.edu/courses/mechanical-engineering/2-051-introduction-to-heat-transfer-fall-2015 +2.06,Fluid Dynamics,Spring,2013,"fluid, dynamics, mechanics, engineering, flow, aerodynamics, surface, wave, hydrostatic, buoyancy, viscous, viscosity, lift, drag, physics, ",https://ocw.mit.edu/courses/mechanical-engineering/2-06-fluid-dynamics-spring-2013 +2.067,Advanced Structural Dynamics and Acoustics (13.811),Spring,2004,3D elasticity; wave equations; elastic wave; plastic wave; plates; shells; cylindrical shells; submerged plates and shells; high-intensity load; dynamic plasticity; fracture; implosive load;impact load.,https://ocw.mit.edu/courses/mechanical-engineering/2-067-advanced-structural-dynamics-and-acoustics-13-811-spring-2004 +2.068,Computational Ocean Acoustics (13.853),Spring,2003,Wave equations; fluid and visco-elastic media; Wave-theory formulations; acoustic source radiation; seismo-acoustic propagation; stratified ocean waveguides; Wavenumber Integration; Normal Mode; propagation in plane-stratified media; Seismo-Acoustic modeling; Seismic interface; surface waves; stratified seabed; Parabolic Equation; Coupled Mode; range-dependent ocean waveguides; Numerical modeling; target scattering; reverberation clutter; Ocean ambient noise modeling,https://ocw.mit.edu/courses/mechanical-engineering/2-068-computational-ocean-acoustics-13-853-spring-2003 +2.082,Ship Structural Analysis & Design (13.122),Spring,2003,"ships, offshore structures, structural mechanics, Hydrostatic loading, shear load, bending moment, ship structural design concepts, superstructures, primary strength, transverse shear stresses, torsional strength, Failure mechanisms, design limit states, plastic analysis. Matrix stiffness, grillage, finite element analysis",https://ocw.mit.edu/courses/mechanical-engineering/2-082-ship-structural-analysis-design-13-122-spring-2003 +2.086,Numerical Computation for Mechanical Engineers,Fall,2012,MATLAB; numerical analysis; programming; physical modeling; calculus; linear algebra; Monte Carlo Method; differential equations; nonlinear systemst',https://ocw.mit.edu/courses/mechanical-engineering/2-086-numerical-computation-for-mechanical-engineers-fall-2012 +2.086,Numerical Computation for Mechanical Engineers,Spring,2013,MATLAB; numerical analysis; programming; physical modeling; calculus; linear algebra; Monte Carlo Method; differential equations; nonlinear systems; variable types; data structure; flow control; probability; statistics; robotics,https://ocw.mit.edu/courses/mechanical-engineering/2-086-numerical-computation-for-mechanical-engineers-spring-2013 +2.086,Numerical Computation for Mechanical Engineers,Fall,2014,MATLAB; numerical analysis; programming; physical modeling; calculus; linear algebra; Monte Carlo Method; differential equations; nonlinear systems; variable types; data structure; flow control; probability; statistics; robotics,https://ocw.mit.edu/courses/mechanical-engineering/2-086-numerical-computation-for-mechanical-engineers-fall-2014 +2.087,Engineering Math: Differential Equations and Linear Algebra,Fall,2014,"differential equations, linear algebra, linear differential equations, ordinary, partial, vector space, first order, second order, Heaviside, delta, Dirac, exponential, sinusoid, real, complex, forced oscillations, Laplace transform, graph, nonlinear, source, sink, saddle, spiral, Euler, linearization, Guassian, matrix, mechanical engineer, eigenvector, eigenvalue, exponentiation, least squares",https://ocw.mit.edu/courses/mechanical-engineering/2-087-engineering-math-differential-equations-and-linear-algebra-fall-2014 +2.092,Finite Element Analysis of Solids and Fluids I,Fall,2009,"finite element methods, solids, structures, fluid mechanics, heat transfer, equilibrium equations, direct integration, mode superposition, eigensolution techniques, frequencies, mode shapes, statics, dynamics, nonlinear systems, wave propagation",https://ocw.mit.edu/courses/mechanical-engineering/2-093-finite-element-analysis-of-solids-and-fluids-i-fall-2009 +2.094,Finite Element Analysis of Solids and Fluids II,Spring,2011,"linear static analysis, solids, structures, nonlinear static analysis, heat transfer, fluid flows, finite element methods, ADINA, student work, beams, plates, shells, displacement, conduction, convection, radiation, Navier-Stokes, incompressible fluids, acoustic fluids",https://ocw.mit.edu/courses/mechanical-engineering/2-094-finite-element-analysis-of-solids-and-fluids-ii-spring-2011 +2.12,Introduction to Robotics,Fall,2005,"robot; robot design; rescue; recovery; automation; dynamics; statics; intelligent control; planar and spatial kinematics; motion planning; manipulator; mobile robots, multi-rigid-body dynamics; 3D graphic simulation; control design; actuator; sensor; task modeling;human-machine interface; embedded software; servo, servomechanism; real-time control; computer vision; navigation; tele-robotics; virtual reality",https://ocw.mit.edu/courses/mechanical-engineering/2-12-introduction-to-robotics-fall-2005 +2.14,Analysis and Design of Feedback Control Systems,Spring,2014,"feedback loops, control systems, compensation, Bode plots, Nyquist plots, state space, frequency domain, time domain, transfer functions, Laplace transform, root locus, op-amps, gears, motors, actuators, nonlinear systems, stability theory, control systems, dynamic feedback, mechanical engineering problem archive",https://ocw.mit.edu/courses/mechanical-engineering/2-14-analysis-and-design-of-feedback-control-systems-spring-2014 +2.141,Modeling and Simulation of Dynamic Systems,Fall,2006,Modeling multi-domain engineering systems; design and control system implementation; Network representation; state-space models; Multi-port energy storage & dissipation; Legendre transforms; Nonlinear mechanics; transformation theory; Lagrangian & Hamiltonian forms; Control-relevant properties; electro-mechanical transducers; mechanisms; electronics; fluid & thermal systems; compressible flow; chemical processes; diffusion; wave transmission.,https://ocw.mit.edu/courses/mechanical-engineering/2-141-modeling-and-simulation-of-dynamic-systems-fall-2006 +2.154,Maneuvering and Control of Surface and Underwater Vehicles (13.49),Fall,2004,Maneuvering; motion; surface and underwater vehicles; Derivation of equations of motion; hydrodynamic coefficients; Memory effects; Linear and nonlinear forms; Control surfaces; modeling and design; Engine; propulsor; transmission systems modeling; simulation; Stability of motion; multivariable automatic control; Optimal control; Kalman filtering; loop transfer recovery; autopilots for surface vehicles; towing in open seas; remotely operated vehicles.,https://ocw.mit.edu/courses/mechanical-engineering/2-154-maneuvering-and-control-of-surface-and-underwater-vehicles-13-49-fall-2004 +2.160,"Identification, Estimation, and Learning",Spring,2006,system identification; estimation; least squares estimation; Kalman filter; noise dynamics; system representation; function approximation theory; neural nets; radial basis functions; wavelets; volterra expansions; informative data sets; persistent excitation; asymptotic variance; central limit theorem; model structure selection; system order estimate; maximum likelihood; unbiased estimates; Cramer-Rao lower bound; Kullback-Leibler information distance; Akaike’s information criterion; experiment design; model validation. ,https://ocw.mit.edu/courses/mechanical-engineering/2-160-identification-estimation-and-learning-spring-2006 +2.161,Signal Processing: Continuous and Discrete,Fall,2008,"analysis and processing of experimental data; real-time experimental control methods; spectral analysis; filter design; system identification; simulation in continuous and discrete-time domains; MATLAB, fast Fourier transform, correlation function, sampling, op-amps, Chebyshev, Laplace transform, Butterworth, convolution, frequency response, windowing, low-pass, poles, zeros +",https://ocw.mit.edu/courses/mechanical-engineering/2-161-signal-processing-continuous-and-discrete-fall-2008 +2.171,Analysis and Design of Digital Control Systems,Fall,2006,digital computer; computation; real-time computer; input-output; I/O; interface; data converter; A/D converter; sampling; state-space; algorithm; quantization; servo; timing; noise; nonlinear; nonlinearity; non-linear;,https://ocw.mit.edu/courses/mechanical-engineering/2-171-analysis-and-design-of-digital-control-systems-fall-2006 +2.18,Biomolecular Feedback Systems,Spring,2015,"biomolecular feedback systems, systems biology, modeling, feedback, cell, system, control, dynamical, input/output, synthetic biology, techniques, transcription, translation, transcriptional regulation, post-transcriptional regulation, cellular subsystems, dynamic behavior, analysis, equilibrium, robustness, oscillatory behavior, bifurcations, model reduction, stochastic, biochemical, simulation, linear, circuit, design, biological circuit design, negative autoregulation, toggle switch, repressilator, activator-repressor clock, IFFL, incoherent feedforward loop, bacterial chemotaxis, interconnecting components, modularity, retroactivity, gene circuit, design",https://ocw.mit.edu/courses/mechanical-engineering/2-18-biomolecular-feedback-systems-spring-2015 +2.20,Marine Hydrodynamics (13.021),Spring,2005,"fundamentals of fluid mechanics, naval architecture, ocean science and engineering, transport theorem, conservation principles, Navier-Stokes' equation, dimensional analysis, ideal and potential flows, vorticity and Kelvin's theorem, hydrodynamic forces in potential flow, D'Alembert's paradox, added-mass, slender-body theory. Viscous-fluid flow, laminar and turbulent boundary layers, model testing, scaling laws, application of potential theory to surface waves, energy transport, wave/body forces, linearized theory of lifting surfaces, experimental project in the towing tank or propeller tunnel",https://ocw.mit.edu/courses/mechanical-engineering/2-20-marine-hydrodynamics-13-021-spring-2005 +2.22,Design Principles for Ocean Vehicles (13.42),Spring,2005,seakeeping; sea keeping; wave; waves; swell; current; ship design; underwater vehicle; submarine; offshore platform; wave spectra; Froude Krylov; Fourier transform; vortex; vortex induced vibration; wave energy; wave spectra; Pierson-Moskowitz spectrum; Bretschneider spectrum; Ochi spectrum; JONSWAP spectrum,https://ocw.mit.edu/courses/mechanical-engineering/2-22-design-principles-for-ocean-vehicles-13-42-spring-2005 +2.23,Hydrofoils and Propellers,Spring,2007,"turbine, rotor, computer-aided design, propulsion, lifting line, thrust, torque, vortices, boundary layers, wake adaptation, cavitation, fluid flow, fluid dynamics, lifting surface panel method, vortex lattice method, lifting flow, ",https://ocw.mit.edu/courses/mechanical-engineering/2-23-hydrofoils-and-propellers-spring-2007 +2.24,Surface Waves and their Interaction With Floating Bodies (13.022),Spring,2002,,https://ocw.mit.edu/courses/mechanical-engineering/2-24-ocean-wave-interaction-with-ships-and-offshore-energy-systems-13-022-spring-2002 +2.25,Advanced Fluid Mechanics,Fall,2013,"fluid dynamics; Mass conservation; Navier-Stokes equation, viscous flows, dimensional analysis, Lubrication theory, boundary layer, lift, drag, vorticity theorems, Potential flow, turbulence, Bernoulli equation, potenial flow, inviscid flow, flight, surface tension",https://ocw.mit.edu/courses/mechanical-engineering/2-25-advanced-fluid-mechanics-fall-2013 +2.26,Compressible Fluid Dynamics,Spring,2004,"conservation laws, isentropic flows, normal shock wave relations, oblique shock waves, weak shock, strong shock, ducts, heat transfer, unsteady flows, Riemann invariants, piston, shock tube, steady 2D supersonic flow, Prandtl-Meyer function, self-similar compressible flows.",https://ocw.mit.edu/courses/mechanical-engineering/2-26-compressible-fluid-dynamics-spring-2004 +2.27,Turbulent Flow and Transport,Spring,2002,,https://ocw.mit.edu/courses/mechanical-engineering/2-27-turbulent-flow-and-transport-spring-2002 +2.29,Numerical Marine Hydrodynamics (13.024),Spring,2003,numerical methods; interpolation; differentiation; integration; systems of linear equations; differential equations; numerical integration; partial differential equations of inviscid hydrodynamics; finite difference methods; boundary integral equation panel methods; numerical lifting surface computations; Fast Fourier Transforms; Numerical representation; deterministic and random sea waves; Integral boundary layer equations; numerical solutions,https://ocw.mit.edu/courses/mechanical-engineering/2-29-numerical-marine-hydrodynamics-13-024-spring-2003 +2.29,Numerical Fluid Mechanics,Spring,2015,please reuse from Fall 2011 course,https://ocw.mit.edu/courses/mechanical-engineering/2-29-numerical-fluid-dynamics-spring-2015 +2.500,Desalination and Water Purification,Spring,2009,"reverse osmosis, seawater, electrodialysis, student work, distillation, flash evaporation, power generation, wastewater treatment, particulate removal, system engineering, cogeneration, solar still, chlorination, Haiti",https://ocw.mit.edu/courses/mechanical-engineering/2-500-desalination-and-water-purification-spring-2009 +2.51,Intermediate Heat and Mass Transfer,Fall,2008,,https://ocw.mit.edu/courses/mechanical-engineering/2-51-intermediate-heat-and-mass-transfer-fall-2008 +2.57,Nano-to-Macro Transport Processes,Spring,2012,nanotechnology; nanostructure; energy; energy trasnport; energy storage; energy carriers; quantum mechanics; quantum physics; thermoelectrics; semiconductor physics; solar cells; waves and particles;,https://ocw.mit.edu/courses/mechanical-engineering/2-57-nano-to-macro-transport-processes-spring-2012 +2.61,Internal Combustion Engines,Spring,2017,"internal combustion engines, +engine operation, +engine fuel requirements, +environmental impact, +fluid flow, +thermodynamics, +combustion, +heat transfer, +friction phenomena, +fuel properties, +spark-ignition, +stratified-charge, +mixed-cycle engine",https://ocw.mit.edu/courses/mechanical-engineering/2-61-internal-combustion-engines-spring-2017 +2.611,Marine Power and Propulsion,Fall,2006,marine propulsion; propellers; waterjets; power plants; thermodynamics; reversible cycles; availability; rankine cycle; combustion; brayton cycle; diesel cycle; reduction gears; electric propulsors; electric drive; propulsion dynamics; small underwater vehicles; ,https://ocw.mit.edu/courses/mechanical-engineering/2-611-marine-power-and-propulsion-fall-2006 +2.627,Fundamentals of Photovoltaics,Fall,2013,"photovoltaics; renewable energy; solar; pn-junction; quantum efficiency; bandgap; thermalization; semiconductor; thin films; charge excitation; conduction; commercialization; emerging technologies; conversion efficiencies, loss mechanisms; manufacturing; life-cycle analysis; markets; policy; society; environment",https://ocw.mit.edu/courses/mechanical-engineering/2-627-fundamentals-of-photovoltaics-fall-2013 +2.670,Mechanical Engineering Tools,IAP,2004,fundamentals of machine tool and computer tool use; bandsaw; milling machine; lathe; MATLAB; MAPLE; XESS; CAD; problem solving; project-oriented.,https://ocw.mit.edu/courses/mechanical-engineering/2-670-mechanical-engineering-tools-january-iap-2004 +2.672,Project Laboratory,Spring,2009,Engineering laboratory; analytical and experimental methods; Communication; written report; oral presentation; projects; heat exchanger; pressure; fluids; dynamics; vibrations; ,https://ocw.mit.edu/courses/mechanical-engineering/2-672-project-laboratory-spring-2009 +2.674,Micro/Nano Engineering Laboratory,Spring,2016,"microfluidics, surface science, self-assembly, MEMS, carbon nanotube and graphene, SEM, AFM, micro 3D printing",https://ocw.mit.edu/courses/mechanical-engineering/2-674-micro-nano-engineering-laboratory-spring-2016 +2.682,Acoustical Oceanography,Spring,2012,"oceanography, acoustics, shallow water acoustics, acoustical oceanography, WHOI",https://ocw.mit.edu/courses/mechanical-engineering/2-682-acoustical-oceanography-spring-2012 +2.693,Principles of Oceanographic Instrument Systems -- Sensors and Measurements (13.998),Spring,2004,oceanography; monitoring; instrumentation; experiment; sampling; transducer; meteorology; calibration; noise; noise; ocean; water; sea water; telemetry; data recorder; satellite; current; salinity; pressure; corrosion; underwater;,https://ocw.mit.edu/courses/mechanical-engineering/2-693-principles-of-oceanographic-instrument-systems-sensors-and-measurements-13-998-spring-2004 +2.700,Principles of Naval Architecture,Fall,2014,"naval architecture +ship geometry +geometry of ships +ship resistance +flow +hydrostatics +intact stability +damage stability +general stability +hull +hydrostatic +ship model testing +hull structure +Resistance +Propulsion +Vibration +submarine +hull subdivision +midsection",https://ocw.mit.edu/courses/mechanical-engineering/2-700-principles-of-naval-architecture-fall-2014 +2.71,Optics,Spring,2009,optical science; elementary engineering applications; Geometrical optics; ray-tracing; aberrations; lens design; apertures; stops; radiometry; photometry; Wave optics; basic electrodynamics; polarization; interference; wave-guiding; Fresnel; Faunhofer diffraction; image formation; resolution; space-bandwidth product; optical design,https://ocw.mit.edu/courses/mechanical-engineering/2-71-optics-spring-2009 +2.71,Optics,Spring,2014,optics; optical science; geometrical optics; ray-tracing; aberrations; lens design; apertures; stops; radiometry; photometry; Wave optics; electrodynamics; polarization; interference; wave-guiding; Fresnel; Fraunhofer diffraction; image formation; resolution; space-bandwidth product; optical design,https://ocw.mit.edu/courses/mechanical-engineering/2-71-optics-spring-2014 +2.72,Elements of Mechanical Design,Spring,2009,"machine design; hardware; project; machine element; design process; design layout; prototype; mechanism; engineering; fabrication; lathe, precision engineering, group project, project management, CAD, fatigue, Gantt chart",https://ocw.mit.edu/courses/mechanical-engineering/2-72-elements-of-mechanical-design-spring-2009 +2.737,Mechatronics,Fall,2014,"mechatronics +mechatronic systems +control systems +electrical systems +mechanical systems +robots +robotics +LabVIEW +control electronics +electromechanics +mechanical CAD +digital control systems +laboratory +design +software +hardware +computation +digital logic +analog interfacing +power amplifier +measurement +sensing +transducer +",https://ocw.mit.edu/courses/mechanical-engineering/2-737-mechatronics-fall-2014 +2.75,Precision Machine Design,Fall,2001,"precision engineering theory, heuristics, systems design, economics, project management, design philosophy, error budgeting, bearings, actuators, transmissions, system integration, functional requirements, operating physics",https://ocw.mit.edu/courses/mechanical-engineering/2-75-precision-machine-design-fall-2001 +2.76,Multi-Scale System Design,Fall,2004,"scale; complexity; nano, micro, meso, or macro-scale; kinematics; metrology; engineering modeling, motion; modeling; design; manufacture; design principles; fabrication process; functional requirements; precision instruments; nanomanipulators, fiber optics, micro- photonics, nano-photonics, nanorobotics, MEMS; piezoelectric, transducer, actuator, sensor; constraint, rigid constraint, flexible constraint, ride-flexible constraint; constaint-based design; carbon nanotube; nanowire; scanning tunneling microscope; flexure; protein structure; polymer structure; nanopelleting, nanopipette, nanowire; TMA pixel array; error modeling;repeatability;",https://ocw.mit.edu/courses/mechanical-engineering/2-76-multi-scale-system-design-fall-2004 +2.800,Tribology,Fall,2004,tribology; surfaces; interface; friction; wear; metal; polymer; ceramics; abrasive wear; delamination theory; tool wear; erosive wear; composites; boundary lubrication; solid-film lubrication. nano-tribology; macro-tribology; rolling contacts; magnetic recording; electrical contact; connector; axiomatic design; traction; seals;,https://ocw.mit.edu/courses/mechanical-engineering/2-800-tribology-fall-2004 +2.852,Manufacturing Systems Analysis,Spring,2010,transfer lines; flexible manufacturing systems; performance measures; throughput; in-process inventory; real-time scheduling; machine failure; buffer design; optimization; probability; Markov chains; long lines; quality/quantity; loops; assembly/disassembly systems; ,https://ocw.mit.edu/courses/mechanical-engineering/2-852-manufacturing-systems-analysis-spring-2010 +2.854,Introduction to Manufacturing Systems,Fall,2016,manufacturing systems; material flow and storage; statistics; queuing models; production systems; flow planning; probability,https://ocw.mit.edu/courses/mechanical-engineering/2-854-introduction-to-manufacturing-systems-fall-2016 +2.875,Mechanical Assembly and Its Role in Product Development,Fall,2004,"mechanical assembly, product development, assembly automation, rigid part mating, compliant part mating, remote center compliance, product architecture, feature-based design, assembly sequence analysis, mechanical constraint analysis, tolerances, system-level design for assembly, JIT methods, economics of assembly automation, mass customization, management of variety, product family strategies",https://ocw.mit.edu/courses/mechanical-engineering/2-875-mechanical-assembly-and-its-role-in-product-development-fall-2004 +2.882,System Design and Analysis based on AD and Complexity Theories,Spring,2005,"information content; electrical connector; constraint; complexity; manufacturing; design; functional requirement; requirement; tradeoff; optimization; engineered systems, natural systems, complexity theory, axiomatic design; tribology; tribological systems, manufacturing systems, biological systems",https://ocw.mit.edu/courses/mechanical-engineering/2-882-system-design-and-analysis-based-on-ad-and-complexity-theories-spring-2005 +2.96,Management in Engineering,Fall,2012,"engineering management, financial principles, innovation in management, technology strategy, management practices, project planning, technical strategy.",https://ocw.mit.edu/courses/mechanical-engineering/2-96-management-in-engineering-fall-2012 +2.964,Economics of Marine Transportation Industries,Fall,2006,ships; shipping; boat; container ships; ports; docks; LNG; transportation; tanker; supertanker; ferry; ferries; FPSO; fast ferry; catamaran; monohull; oil spill; natural resources; energy supply; trade; globalization;,https://ocw.mit.edu/courses/mechanical-engineering/2-964-economics-of-marine-transportation-industries-fall-2006 +2.971,2nd Summer Introduction to Design,IAP,2003,"creative design process, scientific method, peer review, fundamental principles, team-based, design-and-build project focused on the need for a new consumer product, concept selection, machine elements, manufacturing design, visual thinking",https://ocw.mit.edu/courses/mechanical-engineering/2-971-2nd-summer-introduction-to-design-january-iap-2003 +2.993,Designing Paths to Peace,Fall,2002,"creative design, scientific method, inlaid tile, design process, inlaid tile, digital solid models, abrasive waterjet machining center",https://ocw.mit.edu/courses/mechanical-engineering/2-993-designing-paths-to-peace-fall-2002 +2.993,Special Topics in Mechanical Engineering: The Art and Science of Boat Design ,IAP,2007,"boat design, half hull, model, ocean engineering, woodwork",https://ocw.mit.edu/courses/mechanical-engineering/2-993-special-topics-in-mechanical-engineering-the-art-and-science-of-boat-design-january-iap-2007 +2.994,MADM with Applications in Material Selection and Optimal Design,IAP,2007,materials selection; tradeoff; optimization; Taguchi; multiple attribute; decision making; multiple attribute decision making; performance index; rank stability analysis; decision matrix; multi-criteria decision making; multiobjective optimization; Pareto; TOPSIS; ELECTRE;,https://ocw.mit.edu/courses/mechanical-engineering/2-994-madm-with-applications-in-material-selection-and-optimal-design-january-iap-2007 +2.996,Sailing Yacht Design (13.734),Fall,2003,"sailing design, yacht design, hydrostatics, transverse stability, design spiral, CAD, hulls, appendages, decks",https://ocw.mit.edu/courses/mechanical-engineering/2-996-sailing-yacht-design-13-734-fall-2003 +2.996,Biomedical Devices Design Laboratory,Fall,2007,biomedical devices; electrical engineering in medicine; basic electronic circuits; op amp; op amp circuits; analog signal conditioning; microprocessors; wireless communication; PCB design; printed circuit board; microprocessor programming,https://ocw.mit.edu/courses/mechanical-engineering/2-996-biomedical-devices-design-laboratory-fall-2007 +2.997,Decision Making in Large Scale Systems,Spring,2004,algorithm; markov decision process; dynamic programming; stochastic models; policy iteration; Q-Learning; reinforcement learning; Lyapunov function; ODE; TD-Learning; value function approximation; linear programming; policy search; policy gradient; actor-critic; experts algorithm; regret minimization and calibration; games.,https://ocw.mit.edu/courses/mechanical-engineering/2-997-decision-making-in-large-scale-systems-spring-2004 +2.997,Direct Solar/Thermal to Electrical Energy Conversion Technologies ,Fall,2009,"thermophotovoltaics, thermoelectric devices, selective surfaces, nanostructured materials, photovoltaic cells, semiconductor physics, phonons, absorption spectrum, Seebeck effect, thermionic engines, photonic crystals, band gap",https://ocw.mit.edu/courses/mechanical-engineering/2-997-direct-solar-thermal-to-electrical-energy-conversion-technologies-fall-2009 +3.00,Thermodynamics of Materials,Fall,2002,"thermodynamics, First Law, Second Law, Third Law, entropy, state function, Zeroth Law, ideal gas, pahse transformation, equilibrium condition, Gibbs-Duhem Equation, chemical potential",https://ocw.mit.edu/courses/materials-science-and-engineering/3-00-thermodynamics-of-materials-fall-2002 +3.003,Principles of Engineering Practice,Spring,2010,"ethical engineering, communication, technical writing, inventions, patents, transportation, infrastructure, sustainable materials, photovoltaic cell, electromagnetic waves",https://ocw.mit.edu/courses/materials-science-and-engineering/3-003-principles-of-engineering-practice-spring-2010 +3.012,Fundamentals of Materials Science,Fall,2005,"bonding, energetics, structure; antibonding;hydrogen; Quantum mechanics; electron; atom; molecule; molecular dynamics; MD; Symmetry properties; solid; gas; liquid; phase; matter; molecular geometry;complex and disordered materials; thermodynamics; equilibrium property; macroscopic behavior; molecular model; heat capacity; phase transformation; multiphase equilibria; chemical reaction; magnetism; engineered alloy; electronic and magnetic material; ionic solid; network solid; polymer; biomaterial; glass; liquid crystal; LCD;",https://ocw.mit.edu/courses/materials-science-and-engineering/3-012-fundamentals-of-materials-science-fall-2005 +3.014,Materials Laboratory,Fall,2006,,https://ocw.mit.edu/courses/materials-science-and-engineering/3-014-materials-laboratory-fall-2006 +3.016,Mathematics for Materials Scientists and Engineers,Fall,2005,energetics; visualization; graph; plot; chart; materials science; DMSE; structure; symmetry; mechanics; physicss; solids and soft materials; linear algebra; orthonormal basis; eigenvalue; eigenvector; quadratic form; tensor operation; symmetry operation; calculus; complex analysis; differential equations; ODE; solution; vector; matrix; determinant; theory of distributions; fourier analysis; random walk; Mathematica; simulation,https://ocw.mit.edu/courses/materials-science-and-engineering/3-016-mathematics-for-materials-scientists-and-engineers-fall-2005 +3.020,Thermodynamics of Materials,Spring,2021,, +3.024,"Electronic, Optical and Magnetic Properties of Materials",Spring,2013,"electronic properites, optical properties, magnetic properties, materials, Hamilton approach, Schrödinger’s Equation, mechanics, quantum mechanics, spectral decomposition, symmetries, angular momentum, periodic potentials, band diagrams, Fermi, Fermi-Dirac, p-n junction, light emitting diodes, wave optics, electromagnetic waves, magnetization, semiconductor devices, Maxwell's equations, photonic bands",https://ocw.mit.edu/courses/materials-science-and-engineering/3-024-electronic-optical-and-magnetic-properties-of-materials-spring-2013 +3.032,Mechanical Behavior of Materials,Fall,2007,"Basic concepts of solid mechanics and mechanical behavior of materials, stress-strain relationships, stress transformation, elasticity, plasticity and fracture. Case studies include materials selection for bicycle frames, stress shielding in biomedical implants; residual stresses in thin films; and ancient materials. Lab experiments and demonstrations give hands-on experience of the physical concepts at a variety of length scales. Use of facilities for measuring mechanical properties including standard mechanical tests, bubble raft models, atomic force microscopy and nanoindentation.",https://ocw.mit.edu/courses/materials-science-and-engineering/3-032-mechanical-behavior-of-materials-fall-2007 +3.034,Organic & Biomaterials Chemistry,Fall,2005,"biomaterials chemistry, organic materials, polypeptides, block copolymers, polymer synthesis, polymeric nanoreactors, virus-mediated biomineralization, conducting polymers",https://ocw.mit.edu/courses/materials-science-and-engineering/3-034-organic-biomaterials-chemistry-fall-2005 +3.042,Materials Project Laboratory,Spring,2008,"Student project teams design and fabricate a materials engineering prototype using processing technologies (injection molding, thermoforming, investment casting, powder processing, three-dimensional printing, physical vapor deposition, etc.) appropriate for the materials and device of interest. Goals include using MSE fundamentals in a practical application; understanding trade-offs between design, processing and performance; and fabrication of a deliverable prototype. Emphasis on teamwork, project management, communications and computer skills, and hands-on work using student and MIT laboratory shops. Teams document their progress and final results by means of web pages and weekly oral presentations. Instruction and practice in oral communication provided.",https://ocw.mit.edu/courses/materials-science-and-engineering/3-042-materials-project-laboratory-spring-2008 +3.044,Materials Processing,Spring,2013,"materials processing, heat conduction, heat transfer, Biot number, glass fibers, thermal spray, 2D analysis, friction welding, radiation, black bodies, emessivity, radiation, solidification, sand casting, lost foam, molds, binary solidification, microstructures, fluid flow, glass production, Pilkington glass, drag force, Newtonian, non-Newtonian, blow molding, compressive forming, powder, sintering, slurry, and colloid processing, steel making, electronics manufacturing",https://ocw.mit.edu/courses/materials-science-and-engineering/3-044-materials-processing-spring-2013 +3.052,Nanomechanics of Materials and Biomaterials ,Spring,2007,"biology; biological engineering; cells; AFM; atomic force microscope; nanoindentation; gecko; malaria; nanotube; collagen; polymer; seashell; biomimetics; molecule; atomic; bonding; adhesion; quantum mechanics; physics; chemistry; protein; DNA; bone; lipid; +nanotechnology",https://ocw.mit.edu/courses/materials-science-and-engineering/3-052-nanomechanics-of-materials-and-biomaterials-spring-2007 +3.054,"Cellular Solids: Structure, Properties and Applications",Spring,2015,"honeycombs, foams, lattices, stress strain, elasticity, bending compressive collapse stress, fracture, trabecular bone, osteoporosis, tissue engineering, scaffolds, energy absorption devices, structural sandwich panels, cellular structures in plants",https://ocw.mit.edu/courses/materials-science-and-engineering/3-054-cellular-solids-structure-properties-and-applications-spring-2015 +3.063,Polymer Physics,Spring,2007,mechanical; optical; transport; physical chemistry; chemistry; physics; melt; solution; solid; polymer chain; copolymer; glass; crystal; rubber; elastic; thermodynamics; microphase separation; organic; inorganic; nanocomposite,https://ocw.mit.edu/courses/materials-science-and-engineering/3-063-polymer-physics-spring-2007 +3.064,Polymer Engineering,Fall,2003,engineering analysis; design techniques; synthetic polymers; materials properties selection; mechanical characterization; design of load-bearing and environment-compatible structures.,https://ocw.mit.edu/courses/materials-science-and-engineering/3-064-polymer-engineering-fall-2003 +3.071,Amorphous Materials,Fall,2015,"glass, amorphous solid, mechanical and optical properties, metastable, silica, ideal crystals, network formers, modifiers, intermediates, alkali silicate glass, amorphous semiconductors, metallic glass, glass forming theory, crystallization,thermodynamics of nucleation, potential energy landscape, Zachariasen’s rules, kinetic theory, network topology theory, laboratory glass transition, glass forming ability parmaters, performance metrics, GST phase change alloy, PCM, phase change memory, data storage, pitch drop experiment, temperature dependence, viscous flow, stron v. fragile liquids, non- newtonian behavior, viscometry, linear elasticity, Newtonian viscosity, temperature dependence, elasticity, viscosity, glass shaping, relaxation, mechanical properties, glass stregthening, electrical properties, transport properties, macroelectronics, optical properties, optical fibers, waveguides, amorphous state",https://ocw.mit.edu/courses/materials-science-and-engineering/3-071-amorphous-materials-fall-2015 +3.080,Economic & Environmental Issues in Materials Selection,Fall,2005,cost; value; cash flow; discount; life-cycle; engineering economics; manufacturing economics; LCA; life-cycle assessment; PCBM; process-based cost modeling; cost model; environmental impact; uncertainty; consumption; efficiency; waste; Ashby,https://ocw.mit.edu/courses/materials-science-and-engineering/3-080-economic-environmental-issues-in-materials-selection-fall-2005 +3.091,Introduction to Solid-State Chemistry,Fall,2018,"scientific method +atom +chemical reaction balancing +law of conservation of mass +combustion reaction +limiting reagent +yield +mole +Avogadro’s number +atomic mass units (AMUs) +groups +Main Group Elements +Transition Elements +alpha particles +beta particles +gamma rays +nucleus +protons +atomic number +neutrons +mass number +isotopes +Bohr model +quantization +ground state +excited states +absorption +emission +photoelectric effect +Photo-Electron Spectroscopy (PES) +wave-particle duality +Schrodinger Equation +orbital +wave function +Aufbau principle +electronic configuration +Hund’s rule +periodic trends +Photo-electron Spectroscopy (PES) +electron affinity +Lewis Dot Diagrams +octet rule +Covalent bonds +polarity +Electronegativity +expanded octet +intermolecular forces (IMFs) +ion-dipole interaction +dipole-dipole +induced dipoles +London dispersion forces (LDF) +hydrogen bonds +continuous band of electronic state +overlap +band gap +conduction band +band gap +conduction band +valence band +lattice +sea of electrons +high electrical conductivity +high thermal conductivity +high heat capacity +ductility +luster +conductivity +heat +malleable +half-filled valence bands +long-range order +crystal lattice +radiation +metal target atom +x-ray generation +medical imaging +crystal lattice +vacancies +interstitial impurities +self-interstitials +substitutional impurities +dislocations +slip-planes +silica +crystalline solids +Corning +chain scission +network modifier +tempered +compressive stress +Le Chatelier's principle +common ion effect +acids +bases +naturalization +polymers +radical polymerization +condensation polymerizationpolymer properties +weight, branding, tactility +cross linking",https://ocw.mit.edu/courses/materials-science-and-engineering/3-091-introduction-to-solid-state-chemistry-fall-2018 +3.093,Information Exploration: Becoming a Savvy Scholar,Fall,2006,library research; library; citation; scholarship; sources; peer review; scholarly publication; indexing; index; abstracting; abstract; search strategy; literature review; vetting; fact checking; keyword; abstract; ,https://ocw.mit.edu/courses/materials-science-and-engineering/3-093-information-exploration-becoming-a-savvy-scholar-fall-2006 +3.094,Materials in Human Experience,Spring,2004,"Examines the ways in which people in ancient and contemporary societies have selected, evaluated, and used materials of nature, transforming them to objects of material culture. Some examples: glass in ancient Egypt and Rome; sounds and colors of powerful metals in Mesoamerica; cloth and fiber technologies in the Inca empire. Explores ideological and aesthetic criteria often influential in materials development. Laboratory/workshop sessions provide hands-on experience with materials discussed in class. Subject complements 3.091. Enrollment may be limited.",https://ocw.mit.edu/courses/materials-science-and-engineering/3-094-materials-in-human-experience-spring-2004 +3.11,Mechanics of Materials,Fall,1999,,https://ocw.mit.edu/courses/materials-science-and-engineering/3-11-mechanics-of-materials-fall-1999 +3.15,"Electrical, Optical & Magnetic Materials and Devices",Fall,2006,"electrical, optical, and magnetic devices; microstructural characteristics of materials; device-motivated approach; emerging technologies; physical phenomena; electrical conductivity; doping; transistors; photodectors; photovoltaics; luminescence; light emitting diodes; lasers; optical phenomena; photonics; ferromagnetism; magnetoresistance.",https://ocw.mit.edu/courses/materials-science-and-engineering/3-15-electrical-optical-magnetic-materials-and-devices-fall-2006 +3.185,Transport Phenomena in Materials Engineering,Fall,2003,"diffusion, heat conduction and radiation, fluid dynamics, heat and mass transfer",https://ocw.mit.edu/courses/materials-science-and-engineering/3-185-transport-phenomena-in-materials-engineering-fall-2003 +3.20,Materials at Equilibrium,Fall,2003,"thermodynamics; mechanical, electromagnetic and electrochemical systems; phase diagrams; Statistical thermodynamics; microscopic and macroscopic properties; ensembles; gases; crystal lattices; phase transitions; phase stability; properties of mixtures; Computational modeling; Interfaces",https://ocw.mit.edu/courses/materials-science-and-engineering/3-20-materials-at-equilibrium-sma-5111-fall-2003 +3.205,Thermodynamics and Kinetics of Materials,Fall,2006,"Laws of thermodynamics,solution theory,equilibrium diagrams,kinetics of processes,diffusion,phase transformations,microstructure development.",https://ocw.mit.edu/courses/materials-science-and-engineering/3-205-thermodynamics-and-kinetics-of-materials-fall-2006 +3.21,Kinetic Processes in Materials ,Spring,2006,thermodynamics; field; gradient; continuity equation; irreversible thermodynamics; entropy; Onsager's symmetry principle; diffusion; capillarity; stress; diffusion equation; crystal; jump process; jump rate; diffusivity; interstitial; Kroger-Vink; grain boundary; isotropic; Rayleigh instability; Gibbs-Thomson; particle coarsening; growth kinetics; phase transformation; nucleation; spinoldal decomposition,https://ocw.mit.edu/courses/materials-science-and-engineering/3-21-kinetic-processes-in-materials-spring-2006 +3.22,Mechanical Behavior of Materials,Spring,2008,"Phenomenology, mechanical behavior, material structure, deformation, failure, elasticity, viscoelasticity, plasticity, creep, fracture, fatigue, metals, semiconductors, ceramics, polymers, microstructure, composition, semiconductor diodes, thin films, carbon nanotubes, battery materials, superelastic alloys, defect nucleation, student projects, viral capsides",https://ocw.mit.edu/courses/materials-science-and-engineering/3-22-mechanical-behavior-of-materials-spring-2008 +3.225,Electronic and Mechanical Properties of Materials,Fall,2007,"metals, semiconductors, ceramics, polymers, bonding, structure, energy band, microstructure, composition, semiconductor diodes, optical detectors, sensors, thin films, biomaterials, cellular materials, magnetism, polarity, viscoelasticity, plasticity, fracture, materials selection ",https://ocw.mit.edu/courses/materials-science-and-engineering/3-225-electronic-and-mechanical-properties-of-materials-fall-2007 +3.23,"Electrical, Optical, and Magnetic Properties of Materials",Fall,2007,quantum mechanics; functional materials; magnetic domains; particle wells; spintronics; semiconductor engineering; p-n junction; luminescence; nanoparticles; phonons,https://ocw.mit.edu/courses/materials-science-and-engineering/3-23-electrical-optical-and-magnetic-properties-of-materials-fall-2007 +3.320,Atomistic Computer Modeling of Materials,Spring,2005,simulation; computer simulation; atomistic computer simulations; Density-functional theory; DFT; Hartree-Fock; total-energy pseudopotential; thermodynamics; thermodynamic ensembles; quantum mechanics; first-principles;Monte Carlo sampling; molecular dynamics; finite temperature; Free energies; phase transitions; Coarse-graining; mesoscale model; nanotube; alloy,https://ocw.mit.edu/courses/materials-science-and-engineering/3-320-atomistic-computer-modeling-of-materials-sma-5107-spring-2005 +3.35,Fracture and Fatigue,Fall,2003,"Linear elastic, elastic-plastic fracture mechanics, Microstructural effects on fracture, Toughening mechanisms, Crack growth resistance, creep fracture, Interface fracture mechanics, Fatigue damage, dislocation substructures, Variable amplitude fatigue, Corrosion fatigue",https://ocw.mit.edu/courses/materials-science-and-engineering/3-35-fracture-and-fatigue-fall-2003 +3.37,Welding and Joining Processes,Fall,2002,"cold welding, adhesive bonding, diffusion bonding, soldering, brazing, flames, arcs, high-energy density heat sources, solidification, cracking resistance, shielding methods, and electric contacts",https://ocw.mit.edu/courses/materials-science-and-engineering/3-37-welding-and-joining-processes-fall-2002 +3.45,Magnetic Materials,Spring,2004,"Magnetostatics; magnetism; magnetic domains and domain walls; magnetic anisotropy; reversible and irreversible magnetization; hard and soft magnetic materials; magnetic recording; thin films; ferromagnets, magnetoresistive sensors; amorphous magnetic materials.",https://ocw.mit.edu/courses/materials-science-and-engineering/3-45-magnetic-materials-spring-2004 +3.46,Photonic Materials and Devices,Spring,2006,Optical materials design; Ray optics; electromagnetic optics; guided wave optics; light-matter interactions; LED; laser; photodetector; modulator; interconnect; optical filter; photonic crystals; crystal growth; substrate engineering; thin film deposition; microphotonic integrated circuits; telecom and datacom systems.,https://ocw.mit.edu/courses/materials-science-and-engineering/3-46-photonic-materials-and-devices-spring-2006 +3.53,Electrochemical Processing of Materials,Spring,2001,"Thermodynamic and transport properties of aqueous and nonaqueous electrolytes; electrode/electrolyte interface;Kinetics of electrode processes; Electrochemical characterization; d.c. techniques (controlled potential, controlled current); a.c. techniques (voltametry and impedance spectroscopy); electrowinning; electrorefining; electroplating; electrosynthesis; electrochemical power sources (batteries and fuel cells).",https://ocw.mit.edu/courses/materials-science-and-engineering/3-53-electrochemical-processing-of-materials-spring-2001 +3.60,"Symmetry, Structure, and Tensor Properties of Materials",Fall,2005,"crystallography, rotation, translation, lattice, plane, point group, space group, motif, glide plane, mirror plane, reflection, spherical trigonometry, binary compound, coordination number, ion, crystal structure, tetrahedral, octahedral, packing, monoclinic, triclinic, orthorhombic, cell, screw axis, eigenvector, stress, strain, anisotropy, anisotropic, piezoelectric, ",https://ocw.mit.edu/courses/materials-science-and-engineering/3-60-symmetry-structure-and-tensor-properties-of-materials-fall-2005 +3.91,Mechanical Behavior of Plastics,Spring,2007,plastics; synthetic high polymers; viscoelastic phenomena; viscoelastic and strength properties; mechanical property evaluation; plastics fabrication methods,https://ocw.mit.edu/courses/materials-science-and-engineering/3-91-mechanical-behavior-of-plastics-spring-2007 +3.986,The Human Past: Introduction to Archaeology,Fall,2006,human; hunter/gatherer; society; history; agriculture; prehistoric; prehistory; Mesoamerica; civilization; ancient civilization; technology; urbanization; Neolithic; Sumer; Natufian; Uruk; Maya; Olmec; Tehuancan; decline; collapse; stone age; city-state; Universal Transverse Mercator grid; UTM;,https://ocw.mit.edu/courses/materials-science-and-engineering/3-986-the-human-past-introduction-to-archaeology-fall-2006 +3.987,Human Origins and Evolution,Spring,2006,"cultural evolution, pre-hominid, hominid, Pleistocene adaptations, morphological variation, race, agriculture, urbanization, paleontology, archaeology, Oligocene, Miocene, Homo, Homo erectus, Homo heidelbergensis, Homo neanderthalensis, Homo sapiens, fossil",https://ocw.mit.edu/courses/materials-science-and-engineering/3-987-human-origins-and-evolution-spring-2006 +4.101,Experiencing Architecture Studio,Spring,2003,"spatial organization, concatenate, concrete, wood, frame, construction, design",https://ocw.mit.edu/courses/architecture/4-101-experiencing-architecture-studio-spring-2003 +4.104,Architectural Design: Intentions,Spring,2004,architecture; introduction; design; public; private; restroom; detention; Cuba; Guantanamo; structure; material; tectonics; sketching; drawing; perspective; rendering; space; light;,https://ocw.mit.edu/courses/architecture/4-104-architectural-design-intentions-spring-2004 +4.104,Architecture Studio: Intentions,Spring,2005,architecture; introduction; design; public; private; structure; material; tectonics; sketching; drawing; perspective; rendering; space; light; MIT; visual arts; artist habitation; dynamism; intention; creation,https://ocw.mit.edu/courses/architecture/4-104-architecture-studio-intentions-spring-2005 +4.105,Geometric Disciplines and Architecture Skills: Reciprocal Methodologies,Fall,2012,"geometry, representation, architecture, drawing, projection, perspective, planes, axonometric, stereotomy, volume, surface, curvature, curves, discretization, generation, construction, publication, presentation",https://ocw.mit.edu/courses/architecture/4-105-geometric-disciplines-and-architecture-skills-reciprocal-methodologies-fall-2012 +4.107,MArch Portfolio Seminar,Fall,2003,representation; portfolio; digital; written; communicating design; meta-level design; theory; representational media; words vs image; physical vs digital; design vs representation; multiple media; architecture and representation,https://ocw.mit.edu/courses/architecture/4-107-march-portfolio-seminar-fall-2003 +4.111,Introduction to Architecture & Environmental Design,Spring,2014,"architecture, scale, drawing, measurement, modeling, environment, space, representation, design, studio, landscape, cube, projection",https://ocw.mit.edu/courses/architecture/4-111-introduction-to-architecture-environmental-design-spring-2014 +4.112,Architecture Design Fundamentals I: Nano-Machines,Fall,2012,"architecture, architectural design, nano-machine, programmable matter, drawing, scripting, casting, modeling, self-assembly, self-replication, Processing, generation, machine, space, scale, void, bounding box, system, habitation, architectural space",https://ocw.mit.edu/courses/architecture/4-112-architecture-design-fundamentals-i-nano-machines-fall-2012 +4.123,"Architectural Design, Level I: Perceptions and Processes: Land Form Process Center",Fall,2003,in-between; relationships; intervention and perception; representation and notation; fixed and temporal; Borges; mapping; territory; Baudrillard; the 'other'; reality and representation; collective desire and territorial surface; filter; create; frame; scale; orient; project; agency; landscape; architecture; urbanism; representation versus real; design,https://ocw.mit.edu/courses/architecture/4-123-architectural-design-level-i-perceptions-and-processes-fall-2003 +4.125,Architecture Studio: Building in Landscapes,Fall,2002,"landscape, design, studio, quarry, video, clips, natural world, nature",https://ocw.mit.edu/courses/architecture/4-125-architecture-studio-building-in-landscapes-fall-2002 +4.131,"Architectural Design, Level II: Material Essence: The Glass House",Fall,2003,"architecture; tectonics; materials; relationships; interventions; physics; place and space; wellesley campus; thomson island; glass; structures; advanced design; rapid prototyping; environmental control; ""art of technology""; fabrication; design from detailing",https://ocw.mit.edu/courses/architecture/4-131-architectural-design-level-ii-material-essence-the-glass-house-fall-2003 +4.143,Immaterial Limits: Process and Duration,Fall,2002,"urbanism, studio, tectonics, material process, +indeterminacy and mutability inherent in material, notions of duration as a design strategy, architecture",https://ocw.mit.edu/courses/architecture/4-143-immaterial-limits-process-and-duration-fall-2002 +4.144,"Architectural Design, Level II: New Orleans Studio",Spring,2006,architecture; tectonics; place making; space; Space Between; urban design; urban redesign; village; neighborhood; mixed-use public space; light and space; affordable design; green design; LEED; cultural understanding; path; place; space as activator;,https://ocw.mit.edu/courses/architecture/4-144-architectural-design-level-ii-new-orleans-studio-spring-2006 +4.170,Ecuador Workshop,Fall,2006,Ecuador; Pascuales; Guayaquil; charity; orphanage; community center; poverty; wealth; giving; public space; architecture; tectonics; place making; space; Space Between; urban design; urban redesign; village; neighborhood; mixed-use public space; light and space; affordable design; green design; LEED; cultural understanding; path; place; space as activator;,https://ocw.mit.edu/courses/architecture/4-170-ecuador-workshop-fall-2006 +4.171,The Space Between Workshop,Fall,2004,architecture; tectonics; place making; space; Space Between; urban design; urban redesign; village; neighborhood; mixed-use public space; light and space; affordable design; green design; LEED; cultural understanding; path; place; space as activator;,https://ocw.mit.edu/courses/architecture/4-171-the-space-between-workshop-fall-2004 +4.175,Case Studies in City Form,Fall,2005,"Ishfahan; Alexandria; Washington, DC; Amsterdam; street network; city form; urban; design; block types; housing; density; social form; building types; edges; fields; streets; squares; monuments; civic structure; map-making; urban history",https://ocw.mit.edu/courses/architecture/4-175-case-studies-in-city-form-fall-2005 +4.183,Sustainable Design and Technology Research Workshop,Spring,2004,sustainable design; built environment; green design and technology; urbanism; tectonics; materials; sustainability; ecology; energy; solar gain; fossil fuels; natural resources; renewable energy; modern design,https://ocw.mit.edu/courses/architecture/4-183-sustainable-design-and-technology-research-workshop-spring-2004 +4.184,Architectural Design Workshops: Computational Design for Housing,Spring,2002,"workshop, design inquiry, problem, research, studio, Remote Collaboration, Design Computation, shape, buildings, virtual, workspace",https://ocw.mit.edu/courses/architecture/4-184-architectural-design-workshops-computational-design-for-housing-spring-2002 +4.184,Architectural Design Workshop: Collage - Method and Form,Spring,2004,collage; modern art; painting; art theory; deconstructivism; semantics; syntactics; art history; id; ego; superego; psychology of art; meaning and representation,https://ocw.mit.edu/courses/architecture/4-184-architectural-design-workshop-collage-method-and-form-spring-2004 +4.191,Introduction to Integrated Design,Fall,2006,sustainability; engineering; built environment; life-cycle assessment; LCA; product impact; product life cycle; infrastructure; computational methods; water; wastewater; energy; materials; construction; introductory design; studio; drawing; modeling; 3D models; architecture; architectural design,https://ocw.mit.edu/courses/architecture/4-191-introduction-to-integrated-design-fall-2006 +4.195,Special Problems in Architectural Design,Spring,2005,representation; digital media; digital design; images; mapping; material studies; architecture; CAD; design; rendering; modeling; ,https://ocw.mit.edu/courses/architecture/4-195-special-problems-in-architectural-design-spring-2005 +4.196,"Architecture Studio, Level II: Cuba Studio",Spring,2004,architecture; tectonics; place making; urban design; Cuba; urban redesign; Havana; village; neighborhood; mixed-use public space; light and space; affordable design; green design; LEED; cultural understanding;,https://ocw.mit.edu/courses/architecture/4-196-architecture-design-level-ii-cuba-studio-spring-2004 +4.205,Analysis of Contemporary Architecture,Fall,2009,Le Corbusier; de Stijl; Bauhaus; International style architecture; deconstructivist architecture; post-modernist architecture; ,https://ocw.mit.edu/courses/architecture/4-205-analysis-of-contemporary-architecture-fall-2009 +4.210,Precedents in Critical Practice,Fall,2012,architectural criticism; manifesto; contemporary architecture; architectural practice; city; global economy; urban plan; map; drawing; scripting; utopia; program; performance; history;,https://ocw.mit.edu/courses/architecture/4-210-precedents-in-critical-practice-fall-2012 +4.220,"Urban Housing: Paris, London, New York",Fall,2004,housing; urban planning; city development; urban history; seventeenth century to the present; New York City; London; Paris; tenements; slums; row houses; court and garden; country estate; urban development; modernism; city planning,https://ocw.mit.edu/courses/architecture/4-220-urban-housing-paris-london-new-york-fall-2004 +4.273,Introduction to Design Inquiry,Fall,2001,"design process, human interaction, representaion, intermediary objects, expressive objects, shape grammars, design generatives, object design",https://ocw.mit.edu/courses/architecture/4-273-introduction-to-design-inquiry-fall-2001 +4.273,Introduction to Design Inquiry,Fall,2004,design process; human interaction; representaion; intermediary objects; expressive objects; shape grammars; design generatives; object design; design; computation; generative algorithms; digital computing; design software;,https://ocw.mit.edu/courses/architecture/4-273-introduction-to-design-inquiry-fall-2004 +4.285,Research Topics in Architecture Studies: Citizen-Centered Design of Open Governance Systems,Fall,2002,"networked computers, digital environment, online spaces as part of an interdependent human environment, physical architectures, mapped work processes, social/political dimensions",https://ocw.mit.edu/courses/architecture/4-285-research-topics-in-architecture-citizen-centered-design-of-open-governance-systems-fall-2002 +4.296,Furniture Making,Spring,2005,construction; design; furniture; arts and crafts; bauhaus; japanese design; chinese design; quakers; shakers; american construction; stick style; structures; woodworking; wood properties; ,https://ocw.mit.edu/courses/architecture/4-296-furniture-making-spring-2005 +4.297,Special Problems in Architecture Studies,Fall,2000,"XML, e-Learning, e-Learning systems, business, policy, technical, legal, design, connection between information architectures and the physical workplace, Unified Modeling Language",https://ocw.mit.edu/courses/architecture/4-297-special-problems-in-architecture-studies-fall-2000 +4.301,Introduction to the Visual Arts,Spring,2007,visual art practice; critical analysis; long-range artistic development; two-dimensional; three-dimensional; time-based media; installations; performance and video; visiting artist presentations; field trips; studio practice; aesthetic analyses; modern art; art history; body; phenomenology; personal space; installation,https://ocw.mit.edu/courses/architecture/4-301-introduction-to-the-visual-arts-spring-2007 +4.302,BSAD Foundations in the Visual Arts,Fall,2003,visual art practice; critical analysis; long-range artistic development; two-dimensional; three-dimensional; time-based media; installations; performance and video; visiting artist presentations; field trips; studio practice,https://ocw.mit.edu/courses/architecture/4-302-bsad-foundations-in-the-visual-arts-fall-2003 +4.303,"Dialogue in Art, Architecture, and Urbanism",Fall,2003,cities; urbanism; artists; architects; collaboration; translation; revitalization; urban space; redistricting; planned cities; development; ground zero; blank slate; interventions;,https://ocw.mit.edu/courses/architecture/4-303-dialogue-in-art-architecture-and-urbanism-fall-2003 +4.303,"The Production of Space: Art, Architecture and Urbanism in Dialogue",Fall,2006,architecture; urbanism; gender; space; visual art practice; critical analysis; long-range artistic development; two-dimensional; three-dimensional; time-based media; installations; performance and video; visiting artist presentations; field trips; studio practice; aesthetic analyses; modern art; art history; body; phenomenology; personal space; installation,https://ocw.mit.edu/courses/architecture/4-303-the-production-of-space-art-architecture-and-urbanism-in-dialogue-fall-2006 +4.313,Advanced Studio on the Production of Space,Fall,2016,"models, representation, scale, objects, space, spatial relation, art, design, artifacts, morphology, architecture, urbanism, infrastructure, environment",https://ocw.mit.edu/courses/architecture/4-313-advanced-studio-on-the-production-of-space-fall-2016 +4.322,Introduction to Sculpture,Fall,2003,fundamental sculpture issues; site; context; process; psychology and aesthetics of the object; the object's relation to the body; fabric; latex; found objects; rubber; wood; metal; plaster,https://ocw.mit.edu/courses/architecture/4-322-introduction-to-sculpture-fall-2003 +4.341,Introduction to Photography,Fall,2002,"practical instruction, field trips, group discussions, individual reviews, images in our culture, photography, visual arts program",https://ocw.mit.edu/courses/architecture/4-341-introduction-to-photography-fall-2002 +4.341,Introduction to Photography and Related Media,Fall,2007,photography; digital photography; SLR camera; medium format camera; large format camera; black and white photography; digital imaging; brain and cognitive sciences; experimental photographic techniques; studio exhibition; artistic exploration; vision;,https://ocw.mit.edu/courses/architecture/4-341-introduction-to-photography-and-related-media-fall-2007 +4.343,Photography and Related Media (Revised Content),Fall,2002,"visual, arts, visual arts program, VAP, basic black and white techniques, digital imaging, fundamentals of camera operation, lighting, film exposure, development, printing",https://ocw.mit.edu/courses/architecture/4-343-photography-and-related-media-fall-2002 +4.351,Introduction to Video,Spring,2004,movies; filmmaking; digital video; storytelling; modern art; media; computerized editing; personal story; emotional art; Fluxus; Bill Viola; digital representation;,https://ocw.mit.edu/courses/architecture/4-351-introduction-to-video-spring-2004 +4.366,Advanced Projects in the Visual Arts: Personal Narrative,Spring,2004,movies; filmmaking; digital video; storytelling; modern art; media; computerized editing; personal story; emotional art; Fluxus; Bill Viola; digital representation;,https://ocw.mit.edu/courses/architecture/4-366-advanced-projects-in-the-visual-arts-personal-narrative-spring-2004 +4.367,Studio Seminar in Public Art,Spring,2006,cities; urbanism; artists; architects; collaboration; translation; revitalization; urban space; redistricting; planned cities; development; ground zero; blank slate; interventions; visual art practice; critical analysis; long-range artistic development; two-dimensional; three-dimensional; time-based media; installations; performance and video; visiting artist presentations; field trips; studio practice; aesthetic analyses; modern art; art history; body; phenomenology; personal space; installation,https://ocw.mit.edu/courses/architecture/4-367-studio-seminar-in-public-art-spring-2006 +4.370,Interrogative Design Workshop,Fall,2005,visual art practice; critical analysis; long-range artistic development; two-dimensional; three-dimensional; time-based media; installations; performance and video; visiting artist presentations; field trips; studio practice; aesthetic analyses; modern art; art history; body; phenomenology; personal space; installation,https://ocw.mit.edu/courses/architecture/4-370-interrogative-design-workshop-fall-2005 +4.401,Introduction to Building Technology,Spring,2006,building technology; envelope; interior; equipment; technological constraints; architectural design; climate; construction methods and issues; heat and air flow; thermal comfort and insulation; passive and active heating and cooling; natural and electric lighting; visual comfort; acoustics;,https://ocw.mit.edu/courses/architecture/4-401-introduction-to-building-technology-spring-2006 +4.401,Environmental Technologies in Buildings,Fall,2018,"heating +cooling +ventilation +thermal comfort +lighting +daylighting +thermal mass +insulation +shading +solar +energy efficiency +HVAC",https://ocw.mit.edu/courses/architecture/4-401-environmental-technologies-in-buildings-fall-2018 +4.406,Ecologies of Construction,Spring,2007,ecologies of construction; material and energy networks; natural world; built environments; architectural artifact; spatial and temporal scales and boundaries,https://ocw.mit.edu/courses/architecture/4-406-ecologies-of-construction-spring-2007 +4.411,Building Technology Laboratory,Spring,2004,lighting; heating; ventilation; thermodynamics; bernoulli; construction; insulation; R value; glare; human comfort; enthaply; psycrometrics; weather; temperature; sunlight; daylight; radiation; LEED; green building,https://ocw.mit.edu/courses/architecture/4-411-building-technology-laboratory-spring-2004 +4.430,Daylighting,Spring,2012,daylighting; Rhino; DIVA; sunlight; photometry; heliodon; solar gains; glare; HDR photography; materiality; modeling,https://ocw.mit.edu/courses/architecture/4-430-daylighting-spring-2012 +4.440,Basic Structural Design,Spring,2009,structural analysis; structural design; historical structures; environment; sustainable construction; graphical analysis; environmental assessment; beam; column; truss; frame; arch; structural systems; model building; design exercises; compression; tension; axial forces; structural failures; timber; steel; concrete; sustainable structures,https://ocw.mit.edu/courses/architecture/4-440-basic-structural-design-spring-2009 +4.448,Analysis of Historic Structures,Fall,2004,structures; architecture; design; construction; materials; structural analysis; statics; masonry; timber; concrete; steel; structural types; structural systems; medieval; renaissance; modern;,https://ocw.mit.edu/courses/architecture/4-448-analysis-of-historic-structures-fall-2004 +4.461,Building Technology I: Materials and Construction,Fall,2004,structures; building technology; construction; static behavior of structures and strength of materials; reactions; truss analysis; stability of structures; stress and strain at a point; shear and bending moment diagrams; stresses in beams; Mohr's Circle; column buckling; deflection of beams; materials; wood; steel; concrete;,https://ocw.mit.edu/courses/architecture/4-461-building-technology-i-materials-and-construction-fall-2004 +4.463,Building Technologies III: Building Structural Systems II,Fall,2002,"structures, building technology, construction, static behavior of structures and strength of materials, reactions, truss analysis, stability of structures, stress and strain at a point, shear and bending moment diagrams, stresses in beams, Mohr's Circle, column buckling, and deflection of beams",https://ocw.mit.edu/courses/architecture/4-463-building-technologies-iii-building-structural-systems-ii-fall-2002 +4.463,Building Technology III: Building Structural Systems,Fall,2004,structures; building technology; construction; static behavior of structures and strength of materials; reactions; truss analysis; stability of structures; stress and strain at a point; shear and bending moment diagrams; stresses in beams; Mohr's Circle; column buckling; deflection of beams; materials; wood; steel; concrete;,https://ocw.mit.edu/courses/architecture/4-463-building-technology-iii-building-structural-systems-fall-2004 +4.491,Form-Finding and Structural Optimization: Gaudi Workshop,Fall,2004,structures; statics; architecture; Gaudi; Barcelona; computer science; structural systems; computer modeling; advanced dynamics; form-finding; shaping structures;mesh generation; procedural methods for creating structural elements; physical simulation procedures; interactive design tools; structural analysis; computer graphics; mathematics of nodal systems;,https://ocw.mit.edu/courses/architecture/4-491-form-finding-and-structural-optimization-gaudi-workshop-fall-2004 +4.493,Emergent Materials II,Spring,2005,emergent materials; molecular bonds; metals; ceramics; concrete; structures; materials science; mettalurgy; construction; architecture; design; application; novel processes; new applications,https://ocw.mit.edu/courses/architecture/4-493-emergent-materials-ii-spring-2005 +4.493,Natural Light in Design,IAP,2006,daylighting; natural light; light calculations; software; electric light; spectra; spectrum; luminance; chrominence; comfort; design; sun; solar gain; diffusion; glazing; fenestration;,https://ocw.mit.edu/courses/architecture/4-493-natural-light-in-design-january-iap-2006 +4.500,Introduction to Design Computing,Fall,2008,architectural design and computation; computer modeling; rendering; digital fabrication; exploration of space; place making; computer rendering; design construction; CAD CAM fabrication; computer models; computer aided drawings; rapid prototyped models; architecture; design; computation;,https://ocw.mit.edu/courses/architecture/4-500-introduction-to-design-computing-fall-2008 +4.501,Architectural Construction and Computation,Fall,2005,architecture; digital fabrication; CAD / CAM; machining; computer aided design; digital prototype; fabrication; Gehry; TriPyramid; Stata Center; Disney Concert Hall; digital architecture; 3D modelling; 3D printing; Palladio; design and manufacture; construction; assembly; tectonics; construction; building; building materials; joints; connections; ,https://ocw.mit.edu/courses/architecture/4-501-architectural-construction-and-computation-fall-2005 +4.510,Digital Design Fabrication,Fall,2008,digital fabrication; design; cad; cam; digital manufacturing; assembly; design geometry; fabrication; drafting; modeling; printing; waterjet cutting; cnc manufacturing; generative fabrication; construction grammars; prototyping; boston water taxi; ,https://ocw.mit.edu/courses/architecture/4-510-digital-design-fabrication-fall-2008 +4.511,Digital Mock-Up Workshop,Spring,2006,architecture; digital fabrication; CAD / CAM; machining; computer aided design; digital prototype; fabrication; Gehry; TriPyramid; Stata Center; Disney Concert Hall; digital architecture; 3D modelling; 3D printing; Palladio; design and manufacture; construction; assembly; tectonics,https://ocw.mit.edu/courses/architecture/4-511-digital-mock-up-workshop-spring-2006 +4.520,Computational Design I: Theory and Applications,Fall,2005,design process; human interaction; representaion; intermediary objects; expressive objects; shape grammars; design generatives; object design; design; computation; generative algorithms; digital computing; design software; generative design,https://ocw.mit.edu/courses/architecture/4-520-computational-design-i-theory-and-applications-fall-2005 +4.540,Introduction to Shape Grammars I,Fall,2018,"shape grammars +visual calculation +ice rays +schemas +embedding +recursion +patterns +styles +Palladian +maximal elements +identity +compositionality +",https://ocw.mit.edu/courses/architecture/4-540-introduction-to-shape-grammars-i-fall-2018 +4.580,Inquiry into Computation and Design,Fall,2006,design process; human interaction; representaion; intermediary objects; expressive objects; shape grammars; design generatives; object design; design; computation; generative algorithms; digital computing; design software;,https://ocw.mit.edu/courses/architecture/4-580-inquiry-into-computation-and-design-fall-2006 +4.601,Introduction to Art History,Fall,2018,"art +painting +sculpture +medieval +Renaissance +Neoclassicism +Romanticism +Orientalism +Impressionism +Modernism +abstract expressionism",https://ocw.mit.edu/courses/architecture/4-601-introduction-to-art-history-fall-2018 +4.602,Modern Art and Mass Culture,Spring,2012,modern art; high art; mass culture; modernist aesthetic; modernism; 19th Century Art; 20th Century Art; modernization; urbanization; globalization; photography; cinema; painting; sculpture; postmodernism; visual arts; multimedia; pop art; popular culture,https://ocw.mit.edu/courses/architecture/4-602-modern-art-and-mass-culture-spring-2012 +4.605,Introduction to the History and Theory of Architecture,Spring,2012,vernacular architecture; ancient civilizations; urbanism; cities; buildings; design principles; architecture analysis; classical civilizations; Greece; Rome; Asia; Islam; cathedrals; ,https://ocw.mit.edu/courses/architecture/4-605-introduction-to-the-history-and-theory-of-architecture-spring-2012 +4.607,Thinking About Architecture: In History and at Present,Fall,2009,modernity; metaphysics and anti-metaphysics; social contract; defining the architect; avant-garde; psychology; phenomenology; Husserl; Heidegger,https://ocw.mit.edu/courses/architecture/4-607-thinking-about-architecture-in-history-and-at-present-fall-2009 +4.609,"The Art Museum: History, Theory, Controversy",Spring,2014,"art museum, art history, museums, repatriation, history of architecture, gallery, cultural appropriation",https://ocw.mit.edu/courses/architecture/4-609-the-art-museum-history-theory-controversy-spring-2014 +4.614,Religious Architecture and Islamic Cultures,Fall,2002,,https://ocw.mit.edu/courses/architecture/4-614-religious-architecture-and-islamic-cultures-fall-2002 +4.615,The Architecture of Cairo,Spring,2002,religious architecture; islamic architecture; cairo; urban planning; muslim architecture; egyption architecture; arab architecture; north africa; mediterannean; nile river;,https://ocw.mit.edu/courses/architecture/4-615-the-architecture-of-cairo-spring-2002 +4.619,Historiography of Islamic Architecture,Fall,2014,"architecture, Islamic, Islam, museum, history, design, art, historiography",https://ocw.mit.edu/courses/architecture/4-619-historiography-of-islamic-architecture-fall-2014 +4.638,Drawings & Numbers: Five Centuries of Digital Design,Fall,2002,drawing; design; computation; mathematics; geometry; Alberti; Serlio; Brunelleschi; Renaissance; modern; art; architecture; numeric control; construction; historical design; digital design; Gehry; automation; numeracy,https://ocw.mit.edu/courses/architecture/4-638-drawings-numbers-five-centuries-of-digital-design-fall-2002 +4.645,Selected Topics in Architecture: Architecture from 1750 to the Present,Fall,2004,architecture; theory; practice; globalization; historiography; phenomenology; nationalism; color; drawing; ornament; structure; construction; material; inhabitation; gender; class; race; design; modernism; classicism; philosophy,https://ocw.mit.edu/courses/architecture/4-645-selected-topics-in-architecture-architecture-from-1750-to-the-present-fall-2004 +4.647,"Technopolitics, Culture, Intervention",Fall,2014,"architecture, technology, urbanism, society, culture, art, humanization, territory, government, politics, environment",https://ocw.mit.edu/courses/architecture/4-647-technopolitics-culture-intervention-fall-2014 +4.651,Art Since 1940,Fall,2010,contemporary art; modernism; minimalist art; Warhol's factory; Jackson Pollock; painting; expression; art and politics; fluxus;,https://ocw.mit.edu/courses/architecture/4-651-art-since-1940-fall-2010 +4.661,Theory and Method in the Study of Architecture and Art,Fall,2015,"Theory, Method, Architecture, art history, demise of formalism, formalism, connoisseurial appreciation, art historical prose, writing, intensive, writing-intensive, revisionism, social history, visual studies, anthropology, globalism",https://ocw.mit.edu/courses/architecture/4-661-theory-and-method-in-the-study-of-architecture-and-art-fall-2015 +4.663,History of Urban Form: Locating Capitalism: Producing Early Modern Cities and Objects,Spring,2014,"capital, production, guild, coin, numismatic, palace, Florence, bank, economy, Renaissance, modern, medieval, commodification, production, consumption, mercantile, chapel, print, painting, buy, sell, labor, patron, sponsor, globalization, corporate",https://ocw.mit.edu/courses/architecture/4-663-history-of-urban-form-locating-capitalism-producing-early-modern-cities-and-objects-spring-2014 +4.665,Contemporary Architecture and Critical Debate,Spring,2002,architecture; theory; practice; globalization; historiography; phenomenology; nationalism; color; drawing; ornament; structure; construction; material; inhabitation; gender; class; race; design; modernism; classicism; philosophy; works; polemics,https://ocw.mit.edu/courses/architecture/4-665-contemporary-architecture-and-critical-debate-spring-2002 +4.671,"Nationalism, Internationalism, and Globalism in Modern Art",Spring,2016,"modern art, architecture, nationalism, imperial expansion, contemporary art, transnational, globalism, modernism, global capitalism",https://ocw.mit.edu/courses/architecture/4-671-nationalism-internationalism-and-globalism-in-modern-art-spring-2016 +4.696,A Global History of Architecture Writing Seminar,Spring,2008,global architectures; survey course; the global; comparative analysis; researching history; global perspective; architectural history; comparative globality; art history; eurocentrism; ethnocentrism; mark kurlansky; salt a world history; jared diamond; collapse; how societies choose to fail or succeed,https://ocw.mit.edu/courses/architecture/4-696-a-global-history-of-architecture-writing-seminar-spring-2008 +5.05,Principles of Inorganic Chemistry III,Spring,2005,"inorganic chemistry, main group element chemistry, chemical synthesis, chemical structure, bonding, reaction mechanisms, aluminum chemistry, s block, p block, interatomic distance, lewis structure, partitions space, Density Functional Theory, NMR spectroscopy, spin-orbit coupling, spin-spin coupling, relativistic effects, spin-orbin effects, noble gas chemistry, chemical reaction products",https://ocw.mit.edu/courses/chemistry/5-05-principles-of-inorganic-chemistry-iii-spring-2005 +5.067,Crystal Structure Refinement,Fall,2009,chemistry; crystal structure refinement; practical aspects; crystal structure determination; data collection; strategies; data reduction; refinement problems; organic; inorganic; molecules; SHELXL; hydrogen atoms; disorder; pseudo symmetry; merohedral twins; pseudo-merohedral twins; twinning; non-merohedral twins; PLATON,https://ocw.mit.edu/courses/chemistry/5-067-crystal-structure-refinement-fall-2009 +5.069,Crystal Structure Analysis,Spring,2010,"crystallography, inorganic chemistry, physical methods, crystal structure determination, 3D structure, x-ray crystallagraphy, diffraction, x-rays, symmetry, phasing, crystal structure, symmetry operations, crystal lattice, structure refinement, electron density maps, space group determination, phasing, anomalous scattering",https://ocw.mit.edu/courses/chemistry/5-069-crystal-structure-analysis-spring-2010 +5.111,Principles of Chemical Science,Fall,2008,"introductory chemistry, atomic structure, molecular electronic structure, thermodynamics, acid-base equillibrium, titration, redox, chemical kinetics, catalysis, lewis structures, VSEPR theory, wave-particle duality, biochemistry, orbitals, periodic trends, general chemistry, valence bond theory, hybridization, free energy, reaction mechanism, Rutherford backscattering,",https://ocw.mit.edu/courses/chemistry/5-111-principles-of-chemical-science-fall-2008 +5.112,Principles of Chemical Science,Fall,2005,"introductory chemistry, atomic structure, molecular electronic structure, thermodynamics, acid-base equillibrium, redox, chemical kinetics, catalysis, lewis structures, VSEPR theory",https://ocw.mit.edu/courses/chemistry/5-112-principles-of-chemical-science-fall-2005 +5.12,Organic Chemistry I,Spring,2003,"organic chemistry, structure, reactivity, organic molecules, substitution, elimination, carbonyl group",https://ocw.mit.edu/courses/chemistry/5-12-organic-chemistry-i-spring-2003 +5.12,Organic Chemistry I,Spring,2005,"organic chemistry, molecular structure, reactivity, organic molecules, substitution reactions, elimination reactions, carbonyl group, aromatic compounds",https://ocw.mit.edu/courses/chemistry/5-12-organic-chemistry-i-spring-2005 +5.13,Organic Chemistry II,Fall,2003,"intermediate organic chemistry, organic +molecules, stereochemistry, reaction +mechanisms, synthesis of organic compounds, synthesis, structure determination, mechanism, reactivity, functional groups, NMR, spectroscopy, spectrometry, structure elucidation, infrared spectroscopy, nuclear magnetic resonance spectroscopy, reactive intermediates, carbocations, radicals, aromaticity, conjugated systems, molecular orbital theory, pericyclic reactions",https://ocw.mit.edu/courses/chemistry/5-13-organic-chemistry-ii-fall-2003 +5.13,Organic Chemistry II,Fall,2006,"intermediate organic chemistry, organic +molecules, stereochemistry, reaction +mechanisms, synthesis of organic compounds, synthesis, structure determination, mechanism, reactivity, functional groups, NMR, spectroscopy, spectrometry, structure elucidation, infrared spectroscopy, nuclear magnetic resonance spectroscopy, reactive intermediates, carbocations, radicals, aromaticity, conjugated systems, molecular orbital theory, pericyclic reactions",https://ocw.mit.edu/courses/chemistry/5-13-organic-chemistry-ii-fall-2006 +5.301,Chemistry Laboratory Techniques,IAP,2012,"chemistry, experiment, laboratory techniques, purification, transfer and extraction, column chromatography, protein assays, error analysis, NMR, IR, gas chromatography, spectroscopy, UV-Vis",https://ocw.mit.edu/courses/chemistry/5-301-chemistry-laboratory-techniques-january-iap-2012 +5.310,Laboratory Chemistry,Fall,2019,,https://ocw.mit.edu/courses/chemistry/5-310-laboratory-chemistry-fall-2019 +5.35,Introduction to Experimental Chemistry,Fall,2012,"Chemistry, experimental chemistry, spectroscopy, synthesis of coordination compounds and kinetics, IR Spectroscopy, IR Spectroscopy of Proteins, 15 MHz NMR, 300 MHz, Lambert-Beer, Kinetics Measuremts , ",https://ocw.mit.edu/courses/chemistry/5-35-introduction-to-experimental-chemistry-fall-2012 +5.36,Biochemistry Laboratory,Spring,2009,URIECA; laboratory; kinase; cancer cells; laboratory techniques; DNA; cultures; UV-Vis; agarose gel; Abl-gleevec; affinity tags; lyse; digest; mutants; resistance; gel electrophoresis; recombinant; nickel affinity; inhibitors; biochemistry; kinetics; enzyme; inhibition; purification; expression,https://ocw.mit.edu/courses/chemistry/5-36-biochemistry-laboratory-spring-2009 +5.37,Introduction to Organic Synthesis Laboratory,Spring,2009,experiment; laboratory; organic; synthesis; chemistry; diels-alder; catalysis; asymmetric; cycloaddition; enantioselectivity; diastereoselectivity; chirality; chiral gas chromatography; stereochemistry; convergent strategies; retrosynthetic analysis; ,https://ocw.mit.edu/courses/chemistry/5-37-introduction-to-organic-synthesis-laboratory-spring-2009 +5.43,Advanced Organic Chemistry,Spring,2007,organic reaction mechanism; organic; stereochemistry; conformation; stereoelectronic effects; reaction dynamics; isotope effects; molecular orbital theory; pericyclic;photochemical; carbenes; carbanions; free radical; organometallic; heterocyclic,https://ocw.mit.edu/courses/chemistry/5-43-advanced-organic-chemistry-spring-2007 +5.512,Synthetic Organic Chemistry II,Spring,2005,"synthetic organic chemistry, synthesis, complex organic molecules, stereoselective synthesis, acyclic compounds, stereocontrolled synthesis, stereocontrolled alkylation, stereocontrolled conjugate addition, carbonyls, aldol reactions, carbonyl reduction, alkene reduction, hydroboration, dihydroxylation, epoxidation ",https://ocw.mit.edu/courses/chemistry/5-512-synthetic-organic-chemistry-ii-spring-2005 +5.60,Thermodynamics & Kinetics,Spring,2008,"thermodynamics, kinetics, equilibrium, macroscopic systems, state variables, law of thermodynamics, entropy, Gibbs function, reaction rates, clapeyron, enthalpy, clausius, adiabatic, Hemholtz, catalysis, oscillators, autocatalysis, carnot cycle, +joule, joule-thomson, 0th law, steady state",https://ocw.mit.edu/courses/chemistry/5-60-thermodynamics-kinetics-spring-2008 +5.61,Physical Chemistry,Fall,2007,"physical chemistry, quantum mechanics, quantum chemistry, particles and waves; wave mechanics, atomic structure, valence orbital, molecular orbital theory, molecular structure, photochemistry, tunneling, spherical harmonics, rigid rotor, perturbation theory, oscillators, hartree-fock, LCAO",https://ocw.mit.edu/courses/chemistry/5-61-physical-chemistry-fall-2007 +5.61,Physical Chemistry,Fall,2017,"quantum mechanics, quantum chemistry, particles and waves; wave mechanics, atomic structure, valence orbital, molecular orbital theory, molecular structure, photochemistry, tunneling, spherical harmonics, rigid rotor, perturbation theory, oscillators, spectroscopy, NMR, hartree-fock, LCAO",https://ocw.mit.edu/courses/chemistry/5-61-physical-chemistry-fall-2017 +5.62,Physical Chemistry II,Spring,2008,"physical chemistry, partition functions, atomic degrees of freedom, molecular degrees of freedom, chemical equilibrium, thermodynamics, intermolecular potentials, equations of state, solid state chemistry, einstein and debye solids, kinetic theory, rate theory, chemical kinetics, transition state theory, RRKM theory, collision theory, equipartition, fermi-dirac statistics, boltzmann statistics, bose-einstein statistics, statistical mechanics",https://ocw.mit.edu/courses/chemistry/5-62-physical-chemistry-ii-spring-2008 +5.72,Statistical Mechanics,Spring,2012,statistical mechanics; quantum; statistics; atoms; materials; master equations; random walk; langevin; fokker; planck; probability theory; bloch-redfield; navier-stokes; hydrodynamic; scattering; projection operator; thermodynamics; ,https://ocw.mit.edu/courses/chemistry/5-72-statistical-mechanics-spring-2012 +5.73,Introductory Quantum Mechanics I,Fall,2005,"quantum mechanics, NMR, kinetic isotope effects, hilbert space, eigenvalues, particle in a box, harmonic oscillator, perturbation theory, angular momentum, Wigner-Eckart theorem, hydrogen atom, spin-orbit interaction, Born Oppenheimer approximation, Hartree-Fock, Slater-Condon rules",https://ocw.mit.edu/courses/chemistry/5-73-introductory-quantum-mechanics-i-fall-2005 +5.73,Quantum Mechanics I ,Fall,2018,"quantum mechanics +scalar operators +vector operators +spherical tensor operators +Wigner-Eckart theorem +Clebsch-Gordan coefficients +many-body systems +anharmonically coupled oscillators +Intramolecular Vibrational Redistribution (IVR) +periodic solids",https://ocw.mit.edu/courses/chemistry/5-73-quantum-mechanics-i-fall-2018 +5.74,Introductory Quantum Mechanics II,Spring,2004,"introductory quantum mechanics, time-dependent quantum mechanics, spectroscopy, perturbation theory, two-level systems, light-matter interactions, correlation functions, linear response theory, nonlinear spectroscopy",https://ocw.mit.edu/courses/chemistry/5-74-introductory-quantum-mechanics-ii-spring-2004 +5.74,Introductory Quantum Mechanics II,Spring,2009,"introductory quantum mechanics, time-dependent quantum mechanics, spectroscopy, perturbation theory, two-level systems, light-matter interactions, correlation functions, linear response theory, nonlinear spectroscopy",https://ocw.mit.edu/courses/chemistry/5-74-introductory-quantum-mechanics-ii-spring-2009 +5.80,Small-Molecule Spectroscopy and Dynamics,Fall,2008,spectroscopy; harmonic oscillators; matrix; hamiltonian; heisenberg; vibrating rotor; Born-Oppenheimer; diatomics; laser schemes; angular momentum; hund's cases; energy levels; second-order effects; perturbations; Wigner-Eckart; Rydberg-Klein-Rees; rigid rotor; asymmetric rotor; vibronic coupling; wavepackets,https://ocw.mit.edu/courses/chemistry/5-80-small-molecule-spectroscopy-and-dynamics-fall-2008 +6.0001,Introduction to Computer Science and Programming in Python,Fall,2016,"Computation, Branching,Iteration, Strings, Guess and check, Approximations, Bisection, Decomposition, Abstractions, Functions,Tuples, Lists, Aliasing, Mutability, Recursion, Dictionaries, Testing, Debugging, Exceptions, Assertions, Object Oriented Programming, Python Classes, Inheritance, Program Efficiency, Searching, Sorting",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016 +6.0002,Introduction to Computational Thinking and Data Science,Fall,2016,"Python 3.5, Python, machine learning, knapsack problem, greedy algorithm, optimization, weights, models, computational thinking, data science, dynamic programming, recursion, knapsack problem, exponential time, stochastic, random, probability, independent variables, dependent variables, monte carlo simulation, simulation, population sampling, law of large numbers, variance, confidence interval, empirical rule, standard deviation, central limit theorem, empirical rule, standard deviation, bias, error distribution, sampling, confidence interval, error bars, numpy, scipy, matplotlib, pylab, python, plotting, graphing, machine learning, supervised learning, computer modelling, signal-to-noise, feature vectors, classification model, regression model, classification, classifier, nearest neighbors, feature scaling, decision trees, entropy, supervised learning, trainig data, clustering, cluster analysis, unsupervised learning, objective function, dendogram, statistical fallacy, systematic errors, correlation and causation, misleading statistics, GIGO, axis truncating,statistical fallacy, extrapolation, data enhancement, Texas Sharpshooter Falacy",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-0002-introduction-to-computational-thinking-and-data-science-fall-2016 +6.001,Structure and Interpretation of Computer Programs,Spring,2005,"programming, Scheme, abstraction, recursion, iteration, object oriented, structure, interpretation,computer programs, languages, procedures",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005 +6.002,Circuits and Electronics,Spring,2007,Fundamentals of the lumped circuit abstraction. Resistive elements and networks; independent and dependent sources; switches and MOS devices; digital abstraction; amplifiers; and energy storage elements. Dynamics of first- and second-order networks; design in the time and frequency domains; analog and digital circuits and applications,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-002-circuits-and-electronics-spring-2007 +6.003,Signals and Systems,Fall,2011,,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-003-signals-and-systems-fall-2011 +6.004,Computation Structures,Spring,2009,"computation, computation structure, primitives, gates, instructions, procedures, processes, concurrency, instruction set design, software structure, digital system, MOS transistor, logic gate, combinational circuit, sequential circuit, finite-state machines, computer architecture, programming, RISC processor",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-004-computation-structures-spring-2009 +6.004,Computation Structures,Spring,2017,"computation, computation structure, primitives, gates, instructions, procedures, processes, concurrency, instruction set design, software structure, digital system, MOS transistor, logic gate, combinational circuit, sequential circuit, finite-state machines, computer architecture, programming, RISC processor",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-004-computation-structures-spring-2017 +6.005,Elements of Software Construction,Fall,2008,software development; java programming; java; invariants; decoupling; data abstraction; state machine; module dependency; object model; model view controller; mvc; client server; eclipse; junit; subversion; swing; design; implement; midi player; sat solver; photo organizer; testing; coverage; event based programming; concurrency,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-005-elements-of-software-construction-fall-2008 +6.005,Software Construction,Spring,2016,"Software Construction, Software Engineering, Static Checking, Basic Java, Testing, Code Review, Version Control, Specifications, Debugging, Mutability, Immutability, Recursion, Abstract Data Types, ADTs, Interfaces, Data Types, Regular Expressions and Grammars, Parser, Generator, Concurrency, Thread Safety, Networking, Queues, Locks, Synchronization, GUI, Graphical User Interfaces, Map filter reduce, Team version control",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-005-software-construction-spring-2016 +6.006,Introduction to Algorithms,Spring,2008,algorithms; python; python cost model; binary search trees; hashing; sorting; searching; shortest paths; dynamic programming; numerics; document distance; longest common substring; dijkstra; fibonacci; image resizing; chaining; hash functions; priority queues; breadth first search; depth first search; memoization; dynamic programming; divide and conquer,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-spring-2008 +6.006,Introduction to Algorithms,Fall,2011,algorithms; data structures; algorithm performance; algorithm analysis; sorting; trees; hashing; numerics; graphs; shortest paths; dynamic programming; Python,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-fall-2011 +6.006,Introduction to Algorithms,Spring,2020,"data structure +sorting +hashing +binary trees +breadth-first search +depth-first search +weighted shortest path +Bellman-Ford +Dijkstra +dynamic programming +recursion +complexity +algorithms +computational programs +analysis +proofs",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-spring-2020 +6.007,Electromagnetic Energy: From Motors to Lasers,Spring,2011,electromagnetics; quantum mechanics; energy conversion; power flow; electric motors; circuits; quantum tunneling; optoelectronic devices; electromagnetic waves; EM waves; semiconductors; lasers,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-007-electromagnetic-energy-from-motors-to-lasers-spring-2011 +6.011,"Introduction to Communication, Control, and Signal Processing",Spring,2010,signals and systems; transform representation; state-space models; state observers; state feedback; probabilistic models; random processes; power spectral density; hypothesis testing; signal detection,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-011-introduction-to-communication-control-and-signal-processing-spring-2010 +6.011,"Signals, Systems and Inference",Spring,2018,"signals and systems +transform representation +state-space models +state observers +state feedback +probabilistic models +random processes +power spectral density +hypothesis testing +signal detection",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-011-signals-systems-and-inference-spring-2018 +6.012,Microelectronic Devices and Circuits,Fall,2005,"microelectronic device, circuit, design, physical electronics, semiconductor junction, MOS device, electrical behavior, incremental technique, large-signal technique, bipolar transistor, field effect transistor, digital circuit, single-ended amplifier, differential linear amplifier, integrated circuit",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-012-microelectronic-devices-and-circuits-fall-2005 +6.012,Microelectronic Devices and Circuits,Fall,2009,semiconductor; integrated circuit; p-n junction; mos; mosfet; digital logic; nmos; cmos; bipolar junction transistor; single stage amplifier; frequency domain analysis; common emitter; multistage amplifier; intrinsic semiconductors; electrons; holes; carrier transport; 60mV rule,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-012-microelectronic-devices-and-circuits-fall-2009 +6.012,Microelectronic Devices and Circuits,Spring,2009,microelectronic device models; microelectronic circuit analysis and design; semiconductor junctions; MOS devices; electrical behavior; internal physical processes; circuit models; ,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-012-microelectronic-devices-and-circuits-spring-2009 +6.013,Electromagnetics and Applications,Fall,2005,"electromagnetics, applications, wireless communications, circuits, computer interconnects, peripherals, optical fiber links, microwave communications, radar, antennas, sensors, micro-electromechanical systems, power generation, power transmission, quasistatic solutions, dynamic solutions, Maxwell, Maxwell's equations, waves, radiation, diffraction, guided waves, unguided waves, resonance, forces, power, energy",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-013-electromagnetics-and-applications-fall-2005 +6.013,Electromagnetics and Applications,Spring,2009,electromagnetics; electromagnetic fields; electrodynamics; devices and circuits; static and quasistatic fields; electromagnetic forces; actuators; sensors; TEM lines; electromagnetic waves; antennas; radiation; optical communications; acoustics,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-013-electromagnetics-and-applications-spring-2009 +6.02,Introduction to EECS II: Digital Communication Systems,Fall,2012,digital communication; communication systems; information; entropy; compression; error correction; Fourier analysis; filtering; signals; media access protocols; networks; packets; data transport; internet,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-02-introduction-to-eecs-ii-digital-communication-systems-fall-2012 +6.033,Computer System Engineering,Spring,2018,"computer systems +systems design +client server +operating system +networks +routing +atomicity +network security +fault tolerance authentication +cryptography +UNIX +mapreduce +databases +distributed transactions +DNS, +virtual machines +DARPA +traceroute +RON +DCTP +PDP +CDN +BitTorrent +Bitcoin +VoIP +LDF +WAL +DNSSEC +DDoS +Botnets +Tor ",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-033-computer-system-engineering-spring-2018 +6.034,Artificial Intelligence,Spring,2005,"Introduces representations, techniques, and architectures used to build applied systems;computational intelligence; rule chaining; heuristic search; constraint propagation; constrained search; inheritance;problem-solving paradigms; identification trees; neural nets; genetic algorithms; learning paradigms; Speculations on the contributions of human vision and language systems to human intelligence. Meets with HST.947 spring only. 4 Engineering Design Points. ",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-034-artificial-intelligence-spring-2005 +6.034,Artificial Intelligence,Fall,2010,,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-034-artificial-intelligence-fall-2010 +6.035,Computer Language Engineering,Fall,2005,"computer language, computer language engineering, high-level programming, compilers, program optimization, software, Java, MIPS, machine code",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-035-computer-language-engineering-sma-5502-fall-2005 +6.035,Computer Language Engineering,Spring,2010,compilers; compiler design; compiler implementation; scanner; parser; semantic checker; code generation; dataflow optimizations; optimizer,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-035-computer-language-engineering-spring-2010 +6.036,Introduction to Machine Learning,Fall,2020,"machine learning +algorithms +modeling +prediction +supervised learning +reinforcement learning +artificial intelligence +AI +computer science",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-036-introduction-to-machine-learning-fall-2020 +6.041,Probabilistic Systems Analysis and Applied Probability,Spring,2006,"probabilistic systems, probabilistic systems analysis, applied probability, uncertainty, uncertainty modeling, uncertainty quantification, analysis of uncertainty, uncertainty analysis, sample space, random variables, transform techniques, simple random processes, probability distribution, Markov process, limit theorem, statistical inference",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-041-probabilistic-systems-analysis-and-applied-probability-spring-2006 +6.041,Probabilistic Systems Analysis and Applied Probability,Fall,2010,probability; probability models; bayes rule; discrete random variables; continuous random variables; bernoulli process; poisson process; markov chains; central limit theorem; statistical inference,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-041-probabilistic-systems-analysis-and-applied-probability-fall-2010 +6.047,Computational Biology,Fall,2015,"Genomes; Networks; Evolution; computational biology; genomics; comparative genomics; epigenomics; functional genomics, motifs; phylogenomics; personal genomics; algorithms; machine learning; biology; biological datasets; proteomics; sequence analysis; sequence alignment; genome assembly; network motifs; network evolution; graph algorithms; phylogenetics; python; probability; statistics; entropy; information",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-047-computational-biology-fall-2015 +6.057,Introduction to MATLAB,IAP,2019,"matlab +simulink +visualization +mathworks +programming +curve fitting +functions +numerical techniques +graphing +equations +plotting +image plots +surface plots +debugging +symbolic toolbox +image processing",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-057-introduction-to-matlab-january-iap-2019 +6.061,Introduction to Electric Power Systems,Spring,2011,electric power systems; energy conversion; electrical energy; mechanical energy; electric transportation; alternative energy; electric circuits; magnetic field devices; lumped parameter electromechanics,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-061-introduction-to-electric-power-systems-spring-2011 +6.079,Introduction to Convex Optimization,Fall,2009,"convex sets; convex functions; optimization problems; least-squares, linear and quadratic programs; semidefinite programming; optimality conditions; duality theory",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-079-introduction-to-convex-optimization-fall-2009 +6.080,Great Ideas in Theoretical Computer Science,Spring,2008,computer science; theoretical computer science; logic; turing machines; computability; finite automata; godel; complexity; polynomial time; efficient algorithms; reducibility; p and np; np completeness; private key cryptography; public key cryptography; pac learning; quantum computing; quantum algorithms; ,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-080-great-ideas-in-theoretical-computer-science-spring-2008 +6.087,Practical Programming in C,IAP,2010,writing C programs; compiling C programs; variables and datatypes; control flow; input and output; pointers and memory addressing; arrays and pointer arithmetic; memory allocation; stacks and queues; hash tables; C standard library; dynamic memory allocation; multithreading; concurrency; asynchronous input/output,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-087-practical-programming-in-c-january-iap-2010 +6.088,Introduction to C Memory Management and C++ Object-Oriented Programming,IAP,2010,C; C++; programming languages; abstraction; memory management; speed; pointers; structs; memory manipulation; object oriented programming; oop; objects; encapsulation; classes; input; output; inheritance; polymorphism; templates; standard library; binary search tree; arithmetic expression; eval; print,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-088-introduction-to-c-memory-management-and-c-object-oriented-programming-january-iap-2010 +6.090,Building Programming Experience: A Lead-In to 6.001,IAP,2005,instruction in programming fundamentals; practice problems; programming; collaboration; laboratory; computational terms,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-090-building-programming-experience-a-lead-in-to-6-001-january-iap-2005 +6.091,Hands-On Introduction to Electrical Engineering Lab Skills,IAP,2008,electronic components; passive electronic components; active electronic components; analog; digital; soldering; op-amps; timers; digital circuits; function generators; multimeters; oscilloscopes; logic analyzers; introduction to electronics; debugging; integrated circuits; digital design; analog to digital; digital to analog,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-091-hands-on-introduction-to-electrical-engineering-lab-skills-january-iap-2008 +6.092,Bioinformatics & Proteomics,IAP,2005,bioinformatics; proteomics; sequence analysis; microarray expression analysis; Bayesian methods; control theory; scale-free networks; biotechnology applications; real-world examples; actual implementations; engineering design issues; signal processing; network theory; machine learning; robotics,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-092-bioinformatics-and-proteomics-january-iap-2005 +6.092,Java Preparation for 6.170,IAP,2006,"Object oriented programming; Java program structure;class file, main, methods, fields; Primitives; Control flow, method calls, if/then, for loop, while loop; Arrays; Objects, declaration, assignment, mutation, scope; Classes vs Objects/Instances; Method Overloading; Inheritence; Abstract superclasses; Interfaces; Polymorphism; Method Overriding; Hashing; Data structures; Collections; Advanced control flow; Writing interfaces, abstract classes; True subtyping, composite; Throwing and catching exceptions; Nested classes; Floating point precision; Defensive programming; Depth First Search alogithm",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-092-java-preparation-for-6-170-january-iap-2006 +6.092,Introduction to Programming in Java,IAP,2010,software engineering; Java fundamentals; methods; conditionals; loops; arrays; objects; classes; object oriented programming; access control; class scope; design; debugging; interfaces; inheritance; exceptions; input/output,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-092-introduction-to-programming-in-java-january-iap-2010 +6.096,Algorithms for Computational Biology,Spring,2005,biological sequence analysis; gene finding; motif discovery; RNA folding; global and local sequence alignment; genome assembly; comparative genomics; genome duplication; genome rearrangements; evolutionary theory; gene expression; clustering algorithms; scale-free networks; machine learning applications,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-096-algorithms-for-computational-biology-spring-2005 +6.096,Introduction to C++,IAP,2011,C++ programming; control flow; functions; arrays; strings; pointers; classes; object oriented programming; memory management,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-096-introduction-to-c-january-iap-2011 +6.101,Introductory Analog Electronics Laboratory,Spring,2007,analog electronic circuits; diode characteristics; transistors; JFETs; op-amps; audio amplifier; preamplifier; audio and radio frequency circuits; electronic test equipment; digital multimeter; oscilloscope; function generator; curve tracer,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-101-introductory-analog-electronics-laboratory-spring-2007 +6.111,Introductory Digital Systems Laboratory,Fall,2002,"digital systems laboratory, laboratory, digital logic, Boolean algebra, flip-flops, finite-state machines, FSM, microprogrammed systems, digital abstractions, digital paradigm, digital oscilloscopes, PAL, PROM, VHDL, digital circuit design",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-111-introductory-digital-systems-laboratory-fall-2002 +6.111,Introductory Digital Systems Laboratory,Spring,2006,"digital systems laboratory, laboratory, digital logic, Boolean algebra, flip-flops, finite-state machines, FSM, microprogrammed systems, digital abstractions, digital paradigm, digital oscilloscopes, PAL, PROM, VHDL, digital circuit design, FPGA, counters, timing, synchronization, digital filters, wireless communications, verilog",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-111-introductory-digital-systems-laboratory-spring-2006 +6.161,Modern Optics Project Laboratory,Fall,2005,"modern optics lab, modern optics, laboratory, polarization, light, reflection, refraction, coherence, interference, Fraunhofer diffraction, Fresnel diffraction, imaging, transforming, lenses, spatial filtering, coherent optical processors, holography, optical properties of materials, lasers, nonlinear optics, electro-optic, acousto-optic, optical detectors, fiber optics, optical communication",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-161-modern-optics-project-laboratory-fall-2005 +6.163,Strobe Project Laboratory,Fall,2005,"strobe; edgerton; electronic imaging; light measurement; strobe laboratory; electronic flash sources; measurement;fundamentals of photography; experiments on application of electronic flash to photography, stroboscopy, motion analysis, and high-speed videography; independent projects",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-163-strobe-project-laboratory-fall-2005 +6.170,Laboratory in Software Engineering,Fall,2005,software engineering; modularity; specification; data abstraction; object modeling; design patterns; testing; Java programming,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-170-laboratory-in-software-engineering-fall-2005 +6.170,Software Studio,Spring,2013,"software, web, web application, programming, code, Ruby on Rails, REST, relational data, Ajax, JavaScript, HTML, CSS, object, object modeling, security, development process, dependency",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-170-software-studio-spring-2013 +6.171,Software Engineering for Web Applications,Fall,2003,"software engineering, Web, Internet, concurrency, load, security risks, wide-area distributed computing, Web services, user experience, usability, development schedules, multi-modal interface, WAP, online learning community",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-171-software-engineering-for-web-applications-fall-2003 +6.172,Performance Engineering of Software Systems,Fall,2018,"performance analysis +algorithmic techniques +high performance +instruction level optimization +cache optimization +memory optimization +parallel programming +scalable distributed systems +software engineering",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-172-performance-engineering-of-software-systems-fall-2018 +6.186,Mobile Autonomous Systems Laboratory,IAP,2005,6.186; MASLab; mobile; autonomous systems; laboratory; robotics; competition; artificial intelligence; computer vision; camera; IAP; odometry; mechanical; sensor; microcontroller; computer; Edwin Olson; map; mapping; Java; ORC;,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-186-mobile-autonomous-systems-laboratory-january-iap-2005 +6.189,Multicore Programming Primer,IAP,2007,multicore architectures; parallel programming patterns; Sony PlayStation 3; competition,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-189-multicore-programming-primer-january-iap-2007 +6.189,A Gentle Introduction to Programming Using Python,IAP,2008,python; introduction to programming; how to think like a computer scientist; control flow; lists; strings; tuples; objects; mutability; scope; dictionaries; web search; recursion; branching and repetition; structuring programs; debugging programs; data structures; teamwork; modularity; incremental programming,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-189-a-gentle-introduction-to-programming-using-python-january-iap-2008 +6.189,A Gentle Introduction to Programming Using Python,IAP,2011,Python; conditionals; loops; defining functions; strings; lists; list comprehensions; recursion; tuples; dictionaries; classes; inheritance; scoping,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-189-a-gentle-introduction-to-programming-using-python-january-iap-2011 +6.231,Dynamic Programming and Stochastic Control,Fall,2015,dynamic programming; stochastic control; algorithms; finite-state; continuous-time; imperfect state information; suboptimal control; finite horizon; infinite horizon; discounted problems; stochastic shortest path; approximate dynamic programming,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-231-dynamic-programming-and-stochastic-control-fall-2015 +6.245,Multivariable Control Systems,Spring,2004,multivariable control systems; computer-aided design; MATLAB; multivariable feedback control systems; model-based compensators; Q-parameterization; optimization; dynamic augmentation; linear-quadratic optimization; H-infinity controller design; Mu-synthesis; nonlinear systems; engineering design,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-245-multivariable-control-systems-spring-2004 +6.253,Convex Analysis and Optimization,Spring,2012,convex analysis; convex optimization; hyperplanes; conjugacy; polyhedral convexity; geometric duality; duality theory; subgradients; optimality conditions; convex optimization algorithms,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-253-convex-analysis-and-optimization-spring-2012 +6.254,Game Theory with Engineering Applications,Spring,2010,"game theory; strategic form games; learning, evolution, and computation; extensive games with perfect information; repeated games; games with incomplete information; mechanism design; network effects; games over networks",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-254-game-theory-with-engineering-applications-spring-2010 +6.262,Discrete Stochastic Processes,Spring,2011,probability; Poisson processes; finite-state Markov chains; renewal processes; countable-state Markov chains; Markov processes; countable state spaces; random walks; large deviations; martingales,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-262-discrete-stochastic-processes-spring-2011 +6.270,Autonomous Robot Design Competition,IAP,2005,"lego, robot, soldering, contest, gearboxes, motors, sensors, c code, IR LEDs, shaft encoding, handy board,",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-270-autonomous-robot-design-competition-january-iap-2005 +6.301,Solid-State Circuits,Fall,2010,analog circuits; circuit analysis; circuit design; transistor circuits; bipolar junction transistor; op amps; charge control; open circuit time constants,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-301-solid-state-circuits-fall-2010 +6.302,Feedback Systems,Spring,2007,"feedback system, time-domain performance, frequency-domain performance. stability, root locus method, Nyquist criterion, frequency-domain design, compensation techniques, internal compensation, external compensation, operational amplifiers, power coverter systems, phase lock loops",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-302-feedback-systems-spring-2007 +6.331,Advanced Circuit Techniques,Spring,2002,"circuit, advanced circuit techniques, multiplexers, sample-and-holds, gain-controlled amplifiers, analog multipliers, digital-to-analog, analog-to-digital, power amplifiers, modern analog",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-331-advanced-circuit-techniques-spring-2002 +6.334,Power Electronics,Spring,2007,"power electronics; energy conversion and control; modeling, analysis, control techniques; power circuit design; inverters; rectifiers; dc-dc converters; magnetic components;filters; power semiconductor devices; motion control systems; power supplies; radio-frequency power amplifiers",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-334-power-electronics-spring-2007 +6.341,Discrete-Time Signal Processing,Fall,2005,discrete time signals and systems; discrete-time processing of continuous-time signals; decimation; interpolation; sampling rate conversion; Flowgraph structures; time- and frequency-domain design techniques for recursive (IIR) and non-recursive (FIR) filters; linear prediction; Discrete Fourier transform; FFT algorithm; Short-time Fourier analysis and filter banks; Multirate techniques; Hilbert transforms; Cepstral analysis,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-341-discrete-time-signal-processing-fall-2005 +6.345,Automatic Speech Recognition,Spring,2003,"speech recognition, automatic speech recognition, acoustic theory, speech production, acoustic-phonetics, signal representation, pattern classification, search algorithms, stochastic modelling, language modelling, speaker adaptation, paralinguistic information, speech understanding, multimodal processing",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-345-automatic-speech-recognition-spring-2003 +6.370,Robocraft Programming Competition,IAP,2005,Robocraft programming competition; battle strategy; software engineering; best player program; best program; computer game Robocraft,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-370-robocraft-programming-competition-january-iap-2005 +6.370,The Battlecode Programming Competition,IAP,2013,"Battlecode, programming, artificial intelligence, distributed algorithm, network communication, robot, team, code, build, strategy, player, game, pathing, search, navigation, computation, data, structure, debugging, bytecode, method, cost, Git, repository, swarm, spawn time, heuristics",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-370-the-battlecode-programming-competition-january-iap-2013 +6.374,Analysis and Design of Digital Integrated Circuits,Fall,2003,digital integrated circuit; device; circuit; digital; MOS; Deep Sub-Micron effects; circuit design; logic; interconnect models; parasitics; device sizing; timing; clock skew; jitter; clock distribution techniques; memory architectures; circuits; sense amplifiers; SPICE; HSPICE; Magic; Nanosim; Avanwaves,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-374-analysis-and-design-of-digital-integrated-circuits-fall-2003 +6.4210,Robotic Manipulation,Fall,2022,, +6.432,"Stochastic Processes, Detection, and Estimation",Spring,2004,stochastic process; detection; estimation; signal processing; communications; control; vector spaces; Bayesian; Neyman-Pearson; minimum-variance unbiased estimator; Cramer-Rao bounds; shaping filter; whitening filter; Karhunen-Loeve expansion; waveform observation; linear prediction; spectral estimation; Wiener filter; Kalman filter,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-432-stochastic-processes-detection-and-estimation-spring-2004 +6.435,System Identification,Spring,2005,mathematical models; time series; state-space; input-output models; model structures; parametrization; identifiability; non-parametric methods; prediction error; parameter estimation; convergence; consistency; andasymptotic distribution; maximum likelihood estimation; recursive estimation; Kalman filters; structure determination; order estimation; Akaike criterion; bounded noise models; robustness;,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-435-system-identification-spring-2005 +6.438,Algorithms for Inference,Fall,2014,"inference, algorithm, graphical model, factor graph, markov chain, Gaussian model, loopy belief propagation, EM algorithm, statistical inference, probabilistic graphical model, Hidden Markov model, linear dynamical systems, Sum-product algorithm, junction tree algorithm, Forward-backward algorithm, Kalman filtering, smoothing, Variational method, mean-field theory, Min-sum algorithm, Viterbi algorithm, parameter estimation, learning structure",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-438-algorithms-for-inference-fall-2014 +6.441,Information Theory,Spring,2010,properties of information; source coding theorem; lossless compression; noisy communication; channel coding theorem; source channel separation theorem; multiple access channels; broadcast channels; Gaussian noise; time-varying channels,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-441-information-theory-spring-2010 +6.441,Information Theory,Spring,2016,properties of information; entropy; divergence; information measures; mutual information; sufficient statistic; mutual information; probability of error; entropy rate; lossless data compression; fixed-length compression; ergodic sources; universal compression; binary hypothesis testing; information projection; channel coding; achievability bounds; linear codes; gaussian channels; input constraints; lattice codes; channel coding; energy-per-bit; source-channel separation; feedback; forney concatenation; lossy compression; distortion; multiple-access channel; random number generator; source coding theorem; noisy communication; channel coding theorem; source channel separation theorem; broadcast channels; Gaussian noise; time-varying channels,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-441-information-theory-spring-2016 +6.450,Principles of Digital Communications I,Fall,2006,"digital communication, data compression, Lempel-Ziv algorithm, scalar quantization, vector quantization, sampling, aliasing, Nyquist criterion, PAM modulation, QAM modulation, signal constellations, finite-energy waveform spaces, detection, communication system design, wireless",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-450-principles-of-digital-communications-i-fall-2006 +6.450,Principles of Digital Communication I,Fall,2009,"digital communication, data compression, Lempel-Ziv algorithm, scalar quantization, vector quantization, sampling, aliasing, Nyquist criterion, PAM modulation, QAM modulation, signal constellations, finite-energy waveform spaces, detection, communication system design, wireless, discrete source encoding, memory-less sources, entropy, asymptotic equipartition property, Fourier series, Fourier transforms, sampling theorem, orthonormal expansions, random processes, linear functionals, theorem of irrelevance, Doppler spread, time spread, coherence time, coherence frequency, Rayleigh fading, Rake receivers, CDMA, code division multiple access",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-450-principles-of-digital-communication-i-fall-2009 +6.451,Principles of Digital Communication II,Spring,2005,coding techniques; the Shannon limit of additive white Gaussian noise channels; performance analysis; Small signal constellations; performance analysis; coding gain; Hard-decision and soft-decision decoding; Introduction to binary linear block codes; Reed-Muller codes; finite fields; Reed-Solomon and BCH codes; binary linear convolutional codes; Viterbi and BCJR algorithms; Trellis representations of binary linear block codes; trellis-based ML decoding; Codes on graphs; sum-product; max-product; decoding algorithms; Turbo codes; LDPC codes and RA codes; Coding for the bandwidth-limited regime; Lattice codes.;Trellis-coded modulation; Multilevel coding; Shaping,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-451-principles-of-digital-communication-ii-spring-2005 +6.452,Principles of Wireless Communications,Spring,2006,"Introduction to design, analysis, and fundamental limits of wireless transmission systems. Wireless channel and system models; fading and diversity; resouce management and power control; multiple-antenna and MIMO systems; space-time codes and decoding algorithms; multiple-access techniques and multiuser detection; broadcast codes and precoding; cellular and ad-hoc network topologies; OFDM and ultrawideband systems; architectural issues.",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-452-principles-of-wireless-communications-spring-2006 +6.453,Quantum Optical Communication,Fall,2016,"Quantum optics: Dirac notation quantum mechanics; harmonic oscillator quantization; number states, coherent states, and squeezed states; radiation field quantization and quantum field propagation; P-representation and classical fields. Linear loss and linear amplification: commutator preservation and the Uncertainty Principle; beam splitters; phase-insensitive and phase-sensitive amplifiers. Quantum photodetection: direct detection, heterodyne detection, and homodyne detection. Second-order nonlinear optics: phasematched interactions; optical parametric amplifiers; generation of squeezed states, photon-twin beams, non-classical fourth-order interference, and polarization entanglement. Quantum systems theory: optimum binary detection; quantum precision measurements; quantum cryptography; and quantum teleportation.",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-453-quantum-optical-communication-fall-2016 +6.5060,Algorithm Engineering,Spring,2023,, +6.5830,Database Systems,Fall,2023,, +6.630,Electromagnetics,Fall,2006,"electromagnetics, Maxwell, polarization, dipole antennas, wireless communications, forces, energy, phase matching, dielectric waveguides, optical fibers, transmission line theory, circuit, antennas, equivalent principle, electrodynamics, propagation, guidance, radiation, electromagnetic waves",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-630-electromagnetics-fall-2006 +6.632,Electromagnetic Wave Theory,Spring,2003,"electromagnetic wave theory, waves in media, equivalence principle, duality, complementarity, Huygens' principle, Fresnel diffraction, Fraunhofer diffraction, dyadic Green's functions, Lorentz transformation, Maxwell-Minkowski theory, Maxwell, diffraction, scattering",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-632-electromagnetic-wave-theory-spring-2003 +6.635,Advanced Electromagnetism,Spring,2003,"electromagnetism, special relativity, electrodynamics, waves, dispersive media, microstrip integrated circuits, quantum optics, remote sensing, radiative transfer theory, scattering, effective permittivities, random media, Green's functions, planarly layered media, integral equations, method of moments, time domain method of moments, EM waves, periodic structures, photonic crystals, negative refraction",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-635-advanced-electromagnetism-spring-2003 +6.637,"Optical Signals, Devices, and Systems",Spring,2003,"optical, optical signals, optical devices, transmission, detection, storage, processing, display, electromagnetic waves, diffraction, holography, lasers, LEDs, spatial light modulation, display technologies, optical waveguides, fiberoptic communication, thermal photodetector, quantum photodetector, optical storage media, disks, 3-D holographic material, coherent optical processor, incoherent optical processor, Fourier optics, acousto-optics, optoelectronic neural networks, optical interconnection device technologies, image processing, pattern recognition, radar systems, adaptive optical systems",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-637-optical-signals-devices-and-systems-spring-2003 +6.641,"Electromagnetic Fields, Forces, and Motion",Spring,2009,"electromagnetic, electromagnetic field, forces, motion, electric, magnetic, quasistatic , Maxwell's equations, dielectric, conduction, magnetization, boundary value problems, force densities, stress tensors, polarization, thermodynamics, equations of motion, energy conservation, synchronous, induction, commutator machines, sensors, transducers, microelectromechanical systems, electromechanical waves, charge transport phenomena",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-641-electromagnetic-fields-forces-and-motion-spring-2009 +6.641,"Electromagnetic Fields, Forces, and Motion",Spring,2005,"electromagnetic, electromagnetic field, forces, motion, electric, magnetic, quasistatic , Maxwell's equations, dielectric, conduction, magnetization, boundary value problems, force densities, stress tensors, polarization, thermodynamics, equations of motion, energy conservation, synchronous, induction, commutator machines, sensors, transducers, microelectromechanical systems, electromechanical waves, charge transport phenomena",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-641-electromagnetic-fields-forces-and-motion-spring-2005 +6.642,Continuum Electromechanics,Fall,2008,continuum mechanics; electromechanics; mechanical and electromechanical transfer relations; statics; dynamics; electromechanical systems; static equililbrium; electromechanical flows; field coupling; thermal and molecular diffusion; electrokinetics; streaming interactions; materials processing; magnetohydrodynamic and electrohydrodynamic pumps and generators; ferrohydrodynamics; physiochemical systems; heat transfer; continuum feedback control; electron beam devices; plasma dynamics,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-642-continuum-electromechanics-fall-2008 +6.661,"Receivers, Antennas, and Signals",Spring,2003,receiver; antenna; signal; radio; optical; detection; communications; astronomy; remote sensing; instrumentation; radar; statistics; signal processing; radiometer; spectrometer; interferometer; digital correlation; matched filter; ambiguity function; channel performance; electromagnetic; angular filtering; aperture synthesis; radiative transfer; parameter estimation,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-661-receivers-antennas-and-signals-spring-2003 +6.685,Electric Machines,Fall,2013,electric; machine; transformers; electromechanical; transducers; rotating; linear electric machines; lumped parameter; dc; induction; synchronous; energy conversion; electromechanics; Mechatronics,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-685-electric-machines-fall-2013 +6.691,Seminar in Electric Power Systems,Spring,2006,"Planning and operation of modern electric power systems; engineering aspects; power system structure and operation; representation of components, transmission lines, transformers, generating plants, loads; power flow analysis, dynamics and control of multimachine systems, steady-state and transient stability, system protection; economic dispatch; mobil and isolated power systems; computation and simulation",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-691-seminar-in-electric-power-systems-spring-2006 +6.701,Introduction to Nanoelectronics,Spring,2010,nanoelectronics; quantum mechanics; wave-particle duality; Schrodinger's equation; electronic properties of molecules; energy band formation; electron conduction; ballistic transport; Ohm's law; fundamental limits to computation,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-701-introduction-to-nanoelectronics-spring-2010 +6.728,Applied Quantum and Statistical Physics,Fall,2006,"applied quantum physics, quantum physics, statistical physics, quantum mechanics, Schrodinger, tunneling, harmonic oscillator, hydrogen atom, variational methods, Fermi-Dirac, Bose-Einstein, Boltzmann, distribution function, electron microscope, scanning tunneling microscope, thermonic emitter, atomic force microscope",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-728-applied-quantum-and-statistical-physics-fall-2006 +6.730,Physics for Solid-State Applications,Spring,2003,"physics, solid state application, quantum model, electron. lattice vibration, elastic properties, electronic transport, heat capacity, cystal lattice, electronic energy band, phonon dispersion relatons, effective mass theorem, motion equation, impurity state, semiconductor, band structure, transport properties, quantum theory of solids, quasifermi, Boltzmann transport, device modeling",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-730-physics-for-solid-state-applications-spring-2003 +6.763,Applied Superconductivity,Fall,2005,superconductivity; superconducting electronics; London's model; flux quantization; Josephson junctions; and superconducting quantum devices; superconducting quantum detectors; quantized circuits; quantum computing; type-II superconductors; critical magnetic fields; pinning; microscopic theory of superconductivity;,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-763-applied-superconductivity-fall-2005 +6.772,Compound Semiconductor Devices,Spring,2003,"physics; modeling; application; technology of compound semiconductors; electronic; optoelectronic; photonic devices; integrated circuits; properties; heterojunctions, quantum structures; pseudomorphic strained layers; metal-semiconductor field effect transistors (MESFETs); heterojunction field effect transistors (HFETs); bipolar transistors (HBTs); photodiodes; laser diodes; optoelectronic devices;",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-772-compound-semiconductor-devices-spring-2003 +6.774,Physics of Microfabrication: Front End Processing,Fall,2004,fabrication processes; silicon; integrated circuits; monolithic integrated circuits; physical models; bulk crystal growth; thermal oxidation; solid-state diffusion; ion implantation; epitaxial deposition; chemical vapor deposition; physical vapor deposition; refractory metal silicides; plasma and reactive ion etching; rapid thermal processing; process modeling; process simulation; technological limitations; integrated circuit design; integrated circuit fabrication; device operation; sige materials; processing,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-774-physics-of-microfabrication-front-end-processing-fall-2004 +6.776,High Speed Communication Circuits,Spring,2005,integrated circuit design; communication systems; wireless; broadband; data links; circuit blocks; communication transceivers; phase-locked loops; PLL; narrowband; low-noise; amplifiers; mixers; voltage-controlled oscillators; power amplifiers; high speed frequency dividers; passive component design; on-chip inductors; capacitors; transmission line modeling; S-parameters; Smith Chart ,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-776-high-speed-communication-circuits-spring-2005 +6.780,Semiconductor Manufacturing,Spring,2003,Semiconductor manufacturing; statistics; distributions; estimation; hypothesis testing; statistical process control; control chart; control chart design; design of experiments; empirical equipment; process modeling; experimental design; yield models; spatial variation; spatial models; design for manufacturability; equipment monitoring; equipment diagnosis; equipment control; run by run; multistage process control; scheduling; planning; factory modeling; factory infrastructure; environmental; health and safety; computer integrated manufacturing,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-780-semiconductor-manufacturing-spring-2003 +6.801,Machine Vision,Fall,2004,"machine vision, image formation physics, image analysis, binary image processing, image filtering, recovering, shape, lightness, orientation, motion, photometric stereo, extended Gaussian, environment interaction, motion vision, shape from shading, photogrammetry, stereo, object representation alignment, analog VLSI, computational vision, robot vision",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-801-machine-vision-fall-2004 +6.801,Machine Vision,Fall,2020,"machine vision +optical flow +perspective +edge detection +binary image processing +image process +gaussian image +calibration +shape from shading +gnomonic projection +brightness +noise gain",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-801-machine-vision-fall-2020 +6.803,The Human Intelligence Enterprise,Spring,2019,"artificial intelligence +human intelligence +cognition +emotion +consciousness +communication +perception +computational models +learning +language +vision +reasoning +event representation +analogy",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-803-the-human-intelligence-enterprise-spring-2019 +6.805,Ethics and the Law on the Electronic Frontier,Fall,2005,"computer, communications, ethics, policy, technology, individual rights, societal needs, computer crime, intellectual property, software, encryption, privacy, national security, academic freedom, free speech, copyright, copyright control, copyright law",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-805-ethics-and-the-law-on-the-electronic-frontier-fall-2005 +6.811,Principles and Practice of Assistive Technology,Fall,2014,"assistive technology, disability, human-computer interface, cognitive impairment, screen reader, head tracker, eye tracker, user centered design, experimental ethics, accessibility",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-811-principles-and-practice-of-assistive-technology-fall-2014 +6.820,Fundamentals of Program Analysis,Fall,2015,"program analysis, Lambda Calculus, Semantics, λlet calculus, Hindley-Milner type inference, Monads, Axiomatic Semantics, Dataflow Analysis, Type Checking, Abstract Interpretation, Model Checking",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-820-fundamentals-of-program-analysis-fall-2015 +6.821,Programming Languages,Fall,2002,"Scheme, Scheme+, programming, programming language, functional programming language, imperative programming language, logic programming languages, meta-circular interpreters, operational semantics, denotational semantics, type systems, polymorphism, inference, abstract types, object oriented programming, modules, multiprocessing",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-821-programming-languages-fall-2002 +6.823,Computer System Architecture,Fall,2005,"computer architecture, computer system architecture, hardware, hardware design, software, software design, instruction set design, processor micro-architecture, +pipelining, cache memory, virtual memory, I/O, input/output, interrupts, superscalar architectures, VLIW machines, vector supercomputers, multithreaded architectures, +symmetric multiprocessors, parallel computers",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-823-computer-system-architecture-fall-2005 +6.824,Distributed Computer Systems Engineering,Spring,2006,"server design, network programming, naming, storage systems, security, and fault tolerance",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-824-distributed-computer-systems-engineering-spring-2006 +6.825,Techniques in Artificial Intelligence,Fall,2002,"artificial intelligence, representation, inference, first order logic, deterministic planning, decision-theoretic planning, supervised learning methods, Bayesian network inference, learning, Java",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-825-techniques-in-artificial-intelligence-sma-5504-fall-2002 +6.826,Principles of Computer Systems,Spring,2002,"computer system, concurrent system, distributed system, specification, verification, concurrent algorithms, synchronization, naming, networking, replication techniques, distributed cache management",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-826-principles-of-computer-systems-spring-2002 +6.827,Multithreaded Parallelism: Languages and Compilers,Fall,2002,"languages, compilers, multithreaded parallelism, implicit parallel programming, higher order functions, non-strictness, polymorphism, explicit parallel programming, nondeterminism, lambda calculus, term rewriting, symmetric multiprocessors, clusters, static analysis, compiler optimizations",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-827-multithreaded-parallelism-languages-and-compilers-fall-2002 +6.828,Operating System Engineering,Fall,2012,operating system; OS; UNIX; virtual memory; threads; context switches; kernels; interrupts; system calls; interprocess communication; C; x86 assembly; programming,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-828-operating-system-engineering-fall-2012 +6.829,Computer Networks,Fall,2002,"computer, network, internetworking, unicast, multicast, routing, congestion control, quality of service, mobile networking, router architectures, network-aware applications, content dissemination systems, network security",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-829-computer-networks-fall-2002 +6.830,Database Systems,Fall,2010,database systems; relational algebra; data model; query optimization; query processing; transactions; recovery; concurrency control; distributed transactions; parallel databases; scientific databases; streaming databases,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-830-database-systems-fall-2010 +6.831,User Interface Design and Implementation,Spring,2011,human-computer interaction; user interfaces; human capabilities; design principles; prototyping techniques; evaluation techniques,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-831-user-interface-design-and-implementation-spring-2011 +6.832,Underactuated Robotics,Spring,2009,"underactuated robotics, fully actuated systems, nonlinear dynamics, nonlinear control, simple pendulum, acrobot system, cart-pole system, walking robots, running robots, flying robots, model systems with stochasticity, optimal control, feasible motion planning, dynamic programming, Pontryagin's minimum principle, trajectory optimization, actor-critic methodds, model-free policy search, stochastic optimal control",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-832-underactuated-robotics-spring-2009 +6.832,Underactuated Robotics,Spring,2022,, +6.837,Computer Graphics,Fall,2012,"animation and color, modeling, transformations, Bezier curves and splines,representation and interpolation of rotations,computer animation, particle systems, collision detection, ray tracing and casting, rasterization and shading texture mapping, graphics pipeline, global illumination, antialiasing,sampling",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-837-computer-graphics-fall-2012 +6.838,Algorithms for Computer Animation,Fall,2002,"algorithms, computer animation, keyframing, inverse kinematics, physical simulation, optimization, optimal control, motion capture, data-driven methods",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-838-algorithms-for-computer-animation-fall-2002 +6.844,Computability Theory of and with Scheme,Spring,2003,Scheme; programming theory; logic of programming; computability; programming language; Scheme evaluation; algebraic manipulation; term rewriting theory; programming semantics; Halting Problem for Scheme; Incompleteness Theorems; Hilbert's Tenth Problem,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-844-computability-theory-of-and-with-scheme-spring-2003 +6.845,Quantum Complexity Theory,Fall,2010,quantum computational complexity theory; quantum computers; complexity classes; lower bounds; communication complexity; interactive proof systems; BQP; quantum algorithms; QMA; quantum Merlin Arthur,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-845-quantum-complexity-theory-fall-2010 +6.849,"Geometric Folding Algorithms: Linkages, Origami, Polyhedra",Fall,2012,origami; geometry; algorithm; folding; linkage; polyhedra; seam; crease pattern; universal molecule; box pleating; triangulation; vertex; edge; curved crease; rigidity; tensegrity; hinged dissection; unfolding; gluing; platonic solid; refolding; sculpture; paper; 3D chain; design,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-849-geometric-folding-algorithms-linkages-origami-polyhedra-fall-2012 +6.851,Advanced Data Structures,Spring,2012,"data, structures, data structures, computers, computer science, strings, dynamic graphs, integers, hash, hashing, hashish, hashtag, hash tag, hash tagger, memory, memory heirarchy, binary tree, binary search, binary search tree, time travel, back to the future, forward to the past, data, database, table, database table, cache, caching, mad cache money, logarithmic time, eurythmic time, operations, search, heaps",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-851-advanced-data-structures-spring-2012 +6.857,Network and Computer Security,Spring,2014,network; computer security; security; cryptography; secret-key; public-key; digital signature; authentication; Bitcoin; encryption; block ciphers; cryptographic hash functions;one-time pad; stream ciphers; block ciphers; encryption; web browser security; biometrics; Viruses; electronic voting,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-857-network-and-computer-security-spring-2014 +6.858,Computer Systems Security,Fall,2014,"computer system design,secure computer systems, threat model, computer systems security, operating system, operating system security, capabilities, information flow control, language security, network protocols, hardware security, web, web application security, secure web server, web application",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-858-computer-systems-security-fall-2014 +6.864,Advanced Natural Language Processing,Fall,2005,NLP; voice processing; voice response; speech recognition; linguistics; translation; machine learning; speech processing; parsing; syntax; language model; dialogue; comprehension; understanding; lexicon; lexical; text processing; speech generation; ,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-864-advanced-natural-language-processing-fall-2005 +6.867,Machine Learning,Fall,2006,machine learning algorithms; statistical inference; representation; generalization; model selection; linear/additive models; active learning; boosting; support vector machines; hidden Markov models; Bayesian networks; classification; linear regression; modern machine learning methods,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-867-machine-learning-fall-2006 +6.871,Knowledge-Based Applications Systems,Spring,2005,knowledge; artifical intelligence; artificial intelligence techniques; application domains; system development; building system; knowledge representation; knowledge acquisition; expert system,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-871-knowledge-based-applications-systems-spring-2005 +6.875,Cryptography and Cryptanalysis,Spring,2005,"6.875; modern cryptography;fundamental cryptographic primitives; public-key encryption; digital signatures; pseudo-random number generation; basic protocols; computational complexity; two-party protocols; zero-knowledge +",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-875-cryptography-and-cryptanalysis-spring-2005 +6.881,Representation and Modeling for Image Analysis,Spring,2005,"computer vision; image analysis; representation algorithm; modeling; estimation algorithm; +information; objects; modeling techniques; images; representations; contours; level sets; deformation fields; image information; +manifold fitting; markov random fields; expectation maximization; +clustering; mathematical foundations; medical and biological imaging;",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-881-representation-and-modeling-for-image-analysis-spring-2005 +6.881,Computational Personal Genomics: Making Sense of Complete Genomes,Spring,2016,"Genomes; Networks; Evolution; computational biology; genomics; comparative genomics; epigenomics; functional genomics, motifs; phylogenomics; personal genomics; algorithms; machine learning; biology; biological datasets; proteomics; sequence analysis; sequence alignment; genome assembly; network motifs; network evolution; graph algorithms; phylogenetics; python; probability; statistics; entropy; information",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-881-computational-personal-genomics-making-sense-of-complete-genomes-spring-2016 +6.883,Program Analysis ,Fall,2005,"program analysis, static analysis, abstract interpretation (dataflow), type systems, model checking, decision procedures (SAT, BDDs), theorem-proving. dynamic analysis, testing, fault isolation (debugging), model inference, and visualization ",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-883-program-analysis-fall-2005 +6.883,Pervasive Human Centric Computing,Spring,2006,"iPaq, Cell phones, Speech processing, Vision, Cricket location systems, GPS, Python, post-pc era of computing; programming exercises",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-883-pervasive-human-centric-computing-sma-5508-spring-2006 +6.884,Complex Digital Systems,Spring,2005,VLSI implementation; project-oriented; digital systems; multi-million-gate; CMOS; VLSI chips; ;high-level synthesis tools; standard commercial EDA tools; modular; robust; designs; reusable modules; construction; architectural exploration; area; timing; power; constraints; standard cell; FPGA; frameworks. ,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-884-complex-digital-systems-spring-2005 +6.890,Algorithmic Lower Bounds: Fun with Hardness Proofs,Fall,2014,"NP-completeness, 3SAT, 3-partition, Hamiltonicity, PSPACE, EXPTIME, EXPSPACE, games, puzzles, computation, Tetris, Nintendo, Super Mario Bros., The Legend of Zelda, Metroid, Pokémon, constraint logic, Sudoku, Nikoli, Chess, Go, Othello, board games, inapproximability, PCP theorem, OPT-preserving reduction, APX-hardness, vertex cover, Set-cover hardness, Group Steiner tree, k-dense subgraph, label cover, Unique Games Conjecture, independent set, fixed-parameter intractability, parameter-preserving reduction, W hierarchy, clique-hardness, 3SUM-hardness, exponential time hypothesis, counting problems, solution uniqueness, game theory, Existential theory of the reals, undecidability",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-890-algorithmic-lower-bounds-fun-with-hardness-proofs-fall-2014 +6.892,Computational Models of Discourse,Spring,2004,automatic discourse processing; natural language; speech processing; discourse structure; models of coherence and cohesion; plan recognition algorithms; text segmentation; symbolic learning; machine learning; discourse analysis; dialogue systems; automatic essay writing;,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-892-computational-models-of-discourse-spring-2004 +6.895,Theory of Parallel Systems,Fall,2003,parallel systems; parallel computing; algorithms; multithreading; synchronization; race detection; load balancing; memory consistency; routing networks; message-routing algorithms; VLSI layout theory; randomized algorithms; probabilistic analysis; high-probability arguments,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-895-theory-of-parallel-systems-sma-5509-fall-2003 +6.895,Essential Coding Theory,Fall,2004,error-correcting codes; theoretical computer scientists; Shannon; Hamming; theorems; techniques; asymptotic; algorithmic significance; limitations; combinatorial performance; decoding algorithms; applications; computer science;,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-895-essential-coding-theory-fall-2004 +6.896,Theory of Parallel Hardware,Spring,2004,parallel hardware; computer arithmetic; physical design; algorithms; arithmetic circuits; parallel prefix; systolic arrays; retiming; clocking methodologies; boolean logic; sorting networks; interconnection networks; hypercubic networks; P-completeness; VLSI layout theory; reconfigurable wiring; fat-trees; area-time complexity,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-896-theory-of-parallel-hardware-sma-5511-spring-2004 +6.897,Selected Topics in Cryptography,Spring,2004,cryptography; cryptanalysis; cryptographic protocols; general security definitions; composition theorems; protocols; commitments; key exchange; general multi-party computation; composable notions of security for PK encryption and signatures; theory of extractors; privacy amplification; special-purpose factoring devices; algorithms; concrete security arguments; differential cryptanalysis; public-key infrastructures; electronic voting,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-897-selected-topics-in-cryptography-spring-2004 +6.901,Inventions and Patents,Fall,2005,inventions; patents; patent law; court cases; engineering patents; copyright laws; private and public rights in scientific discoveries and applied engineering; software protection; procedures in protecting inventions in the Patent Office,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-901-inventions-and-patents-fall-2005 +6.911,Transcribing Prosodic Structure of Spoken Utterances with ToBI,IAP,2006,"Training in the ToBI system (for Tones and Break Indices) to transcribe the prosodic structure of spoken utterances in American English. ToBI tutorial presentation with extensive practice and discussion; opportunities to practice labelling outside of class. sample utterances;linguistics (phonology or phonetics), cognitive psychology (psycholinguistics), speech acoustics or music, prosody of speech, i.e. the intonation, rhythm, grouping and prominence patterns of spoken utterances, prosodic differences that signal meaning & phonetic implementation",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-911-transcribing-prosodic-structure-of-spoken-utterances-with-tobi-january-iap-2006 +6.912,Introduction to Copyright Law,IAP,2006,"copyright law; american law structure of federal law; legal research and citations; Lexis-Nexis; 1976 Copyright Act; copyright as applied to music, computers, broadcasting, and education; fair use; Napster, Grokster, and P2P file-sharing; Library Access to Music Project; The 1998 Digital Millennium Copyright Act; DVDs and encryption; Software licensing; The GNU General Public License; free software",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-912-introduction-to-copyright-law-january-iap-2006 +6.931,Development of Inventions and Creative Ideas,Spring,2008,"patents, inventions, United States, Alexander Graham Bell, telephone patent, innovation, inventors, rights, law, courts, modernization, ideas, creativity, original, American Telephone and Telegraph Company, Congress, Constitution, Patent Act, Thomas Edison",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-931-development-of-inventions-and-creative-ideas-spring-2008 +6.945,Adventures in Advanced Symbolic Programming,Spring,2009,scheme; symbolic programming; additive systems; generic operations; language layers; pattern-directed invocation; searching; amb; backtracking; propagation systems; constraints; truth maintenance; continuations; structure and interpretation of computer programs,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-945-adventures-in-advanced-symbolic-programming-spring-2009 +6.972,Algebraic Techniques and Semidefinite Optimization,Spring,2006,"algebraic and computational techniques; optimization problems; polynomial equations; inequalities; semidefinite optimization; convexity-based ideas, complexity results, efficient implementations",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-972-algebraic-techniques-and-semidefinite-optimization-spring-2006 +6.973,Organic Optoelectronics,Spring,2003,"organic optoelectronics, optical, electronic, polymers, organic thin films, organic LEDs, solar cells, photodetectors, transistors, chemical sensors, memory cells, electrochromic devices, xerography, organic non-linear optics, miniaturization limit, molecular electronics, nanoscale patterning, vacuum organic deposition, non-vacuum organic deposition",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-973-organic-optoelectronics-spring-2003 +6.973,Communication System Design,Spring,2006,"communication; coders and decoders, filters, multi-tone modulation, synchronization sub-systems",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-973-communication-system-design-spring-2006 +6.974,Fundamentals of Photonics: Quantum Electronics,Spring,2006,Maxwell’s electromagnetic waves; resonators and beams; classical ray optics and optical systems; quantum theory of light; matter and its interaction; classical and quantum noise; lasers and laser dynamics; continuous wave and short pulse generation; light modulation; integrated optics; semiconductor optoelectronics; and nonlinear optics,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-974-fundamentals-of-photonics-quantum-electronics-spring-2006 +6.976,High Speed Communication Circuits and Systems,Spring,2003,"high speed communication circuits, high speed communication systems, communication, circuit, wireless, broadband, data link, transistor level design, high speed amplifiers, mixers, VCO's, registers, gates, phase locked loops, transmission line effects, circuit design, narrowband, behavioral level simulation techniques",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-976-high-speed-communication-circuits-and-systems-spring-2003 +6.977,Semiconductor Optoelectronics: Theory and Design,Fall,2002,"semiconductor optoelectronics, photons, semiconductor, band theory of solids, rate equation formalism, laser threshold, population inversion, modulation response, Matrix methods, coupled mode theory, resonator structures, distributed feedback lasers, tunable lasers, microring devices, noise models, optoelectronics, fiber optic communications",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-977-semiconductor-optoelectronics-theory-and-design-fall-2002 +6.977,Ultrafast Optics,Spring,2005,"ultrafast optics; generation; propagation; ultrashort pulses; nanopulses; picopulses; femtopulses; attosecond pulses; linear; non-linear; effects; high precision;measurements; nonlinear optics; optical signal processing; optical +communications; x-ray generation. +",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-977-ultrafast-optics-spring-2005 +7.00,"COVID-19, SARS-CoV-2 and the Pandemic",Fall,2020,"COVID-19 +SARS-CoV-2 +pandemic +virology +immunology +epidemiology +vaccines +antibodies +therapeutics + + +",https://ocw.mit.edu/courses/biology/7-00-covid-19-sars-cov-2-and-the-pandemic-fall-2020 +7.00,"COVID-19, SARS-CoV-2, and the Pandemic",Fall,2021,"COVID-19 +SARS-CoV-2 +pandemic +virology +immunology +epidemiology +vaccines +antibodies +therapeutics",https://ocw.mit.edu/courses/biology/7-00-covid-19-sars-cov-2-and-the-pandemic-fall-2021 +7.012,Introduction to Biology,Fall,2004,"biology, biochemistry, genetics, molecular biology, recombinant DNA, cell cycle, cell signaling, cloning, stem cells, cancer, immunology, virology, genomics, molecular medicine, DNA, RNA, proteins, replication, transcription, mRNA, translation, ribosome, nervous system, amino acids, polypeptide chain, cell biology, neurobiology, gene regulation, protein structure, protein synthesis, gene structure, PCR, polymerase chain reaction, protein localization, endoplasmic reticulum",https://ocw.mit.edu/courses/biology/7-012-introduction-to-biology-fall-2004 +7.013,Introductory Biology,Spring,2013,"biology, biochemistry, genetics, molecular biology, recombinant DNA, cell cycle, cell signaling, cloning, stem cells, cancer, immunology, virology, genomics, molecular medicine, DNA, RNA, proteins, replication, transcription, mRNA, translation, ribosome, nervous system, amino acids, polypeptide chain, cell biology, neurobiology, gene regulation, protein structure, protein synthesis, gene structure, PCR, polymerase chain reaction, protein localization, endoplasmic reticulum, human biology, inherited diseases, developmental biology, evolution, human genetics, human diseases, infectious agents, infectious diseases ",https://ocw.mit.edu/courses/biology/7-013-introductory-biology-spring-2013 +7.013,Introductory Biology,Spring,2018,"biology +biochemistry +genetics +molecular biology +recombinant DNA +cell cycle +cell signaling +cloning +stem cells +cancer +immunology +virology +genomics +molecular medicine +DNA +RNA +proteins +replication +transcription +mRNA +translation +ribosome +nervous system +amino acids +polypeptide chain +cell biology +neurobiology +gene regulation +protein structure +protein synthesis +gene structure +PCR +polymerase chain reaction +protein localization +endoplasmic reticulum +human biology +inherited diseases +developmental biology +evolution +human genetics +human diseases +infectious agents +infectious diseases",https://ocw.mit.edu/courses/biology/7-013-introductory-biology-spring-2018 +7.014,Introductory Biology,Spring,2005,"microorganisms, geochemistry, geochemical agents, biosphere, bacterial genetics, carbon metabolism, energy metabolism, productivity, biogeochemical cycles, molecular evolution, population genetics, evolution, population growth, biology, biochemistry, genetics, molecular biology, recombinant DNA, cell cycle, cell signaling, cloning, stem cells, cancer, immunology, virology, genomics, molecular medicine, DNA, RNA, proteins, replication, transcription, mRNA, translation, ribosome, nervous system, amino acids, polypeptide chain, cell biology, neurobiology, gene regulation, protein structure, protein synthesis, gene structure, PCR, polymerase chain reaction, protein localization, endoplasmic reticulum, ecology, communities",https://ocw.mit.edu/courses/biology/7-014-introductory-biology-spring-2005 +7.016,Introductory Biology,Fall,2018,"biochemistry, molecular biology, genetics, human genetics, pedigrees,biochemical genetics, molecular biology, chemical biology, molecular genetics, recombinant DNA technology, cell biology, cancer, viruses, HIV, bacteria, antibiotics, human health, therapeutic intervention, cell signaling, cell biology, evolution, reproduction, infectious diseases, therapeutics ",https://ocw.mit.edu/courses/biology/7-016-introductory-biology-fall-2018 +7.03,Genetics,Fall,2004,"genetics, gene, DNA, RNA, mutation, genome, Watson and Crick, replication, transcription, DNA heliz, double helix, mRNA, messenger RNA, translation, ribosome, promoter, genetic analysis, alleles, mutation, genotype, wild type, phenotype, haploid, diploid, auxotrophic mutation, homozygous, heterozygous, recessive allele, dominant allele, complementation test, locus, incomplete dominance, incomplete penetrance, true-breeding, gametes, codominant, meiosis",https://ocw.mit.edu/courses/biology/7-03-genetics-fall-2004 +7.05,General Biochemistry ,Spring,2020,"biochemistry +organisms +tissues +cells +metabolism +nucleic acids +proteins +carbohydrates +enzymology +macromolecules +amino acids",https://ocw.mit.edu/courses/biology/7-05-general-biochemistry-spring-2020/ +7.13,Experimental Microbial Genetics,Fall,2008,"microbiology, genetics, pseudomonas, bacteria, genes, pathogen, mutagenesis, PCR, DNA sequencing, enzyme assays, gene expression, molecular genetics, plasmid manipulation, genetic complementation, laboratory, protocol, vector, mutant, cystic fibrosis,",https://ocw.mit.edu/courses/biology/7-13-experimental-microbial-genetics-fall-2008 +7.15,Experimental Molecular Genetics,Spring,2015,"molecular genetics, molecular biology, chemical genetics, Caenorhabditis elegans, experimental biology, bioinformatics, genetic linkage, SNP mapping, RNAi, Gibson assembly, cDNA, PCR, Primer design, RNA extraction, chemotaxis assay, Next Generation Sequencing",https://ocw.mit.edu/courses/biology/7-15-experimental-molecular-genetics-spring-2015 +7.16,Experimental Molecular Biology: Biotechnology II,Spring,2005,RNAi; RNA interference; programmed cell death; Drosophilia; PCD; mRNA; lab notebook; scientific writing; RT-PCR; S2 RNA; S2; cell culture; genetic transcription; dsRNA; bioinformatics,https://ocw.mit.edu/courses/biology/7-16-experimental-molecular-biology-biotechnology-ii-spring-2005 +7.18,Topics in Experimental Biology,Fall,2005,"experimental biology, journal club, primary literature, scientific research, oral presentations, communication, abstracts, materials and methods, discussion, IMRAD, research report, laboratory research, results section",https://ocw.mit.edu/courses/biology/7-18-topics-in-experimental-biology-fall-2005 +7.22,Developmental Biology,Fall,2005,"animal development, developmental biology, evolution, formation of early body plan, cell type determination, organogenesis, morphogenesis, stem cells, cloning, human development",https://ocw.mit.edu/courses/biology/7-22-developmental-biology-fall-2005 +7.27,Principles of Human Disease,Spring,2006,"human disease, molecular basis of genetic disease, molecular basis of cancer, cellular basis of genetic disease, cellular basis of cancer, genetics of simple and complex traits, karyotypic analysis, positional cloning, genetic diagnosis, roles of oncogenes, tumor suppressors, tumor initiation, tumor progression, tumor treatment, interaction between genetics and environment, animal models of human disease, cancer, conventional treatment strategies, gene therapy treatment strategies",https://ocw.mit.edu/courses/biology/7-27-principles-of-human-disease-spring-2006 +7.341,The Microbiome and Drug Delivery: Cross-species Communication in Health and Disease,Spring,2018,"microbiome +microbiome signaling +human-produced antimicrobial peptides +microbial pheromones +bacterial peptide toxins +neuroactive microbial metabolites +microfluidics +next-generation DNA sequencing +next-generation RNA sequencing +germ-free mice +synthetic biology +synthetic microbes",https://ocw.mit.edu/courses/biology/7-341-the-microbiome-and-drug-delivery-cross-species-communication-in-health-and-disease-spring-2018 +7.341,Biomaterials and Devices for Disease Diagnosis and Therapy,Fall,2018,"biomaterials +biocompatibility +cell-protein interactions +controlled release +polymer modification +self-assembly +diagnostic tools +tissue regeneration +cancer immunotherapy +vaccines +therapeutics",https://ocw.mit.edu/courses/biology/7-341-biomaterials-and-devices-for-disease-diagnosis-and-therapy-fall-2018 +7.341,DNA's Sister Does All the Work: The Central Roles of RNA in Gene Expression,Spring,2019,"RNA +DNA +mRNA +transfer RNA +ribosomal RNA +base-pairing +splicing +small non-coding RNAs +microRNAs +siRNAs +piRNAs +long non-coding RNAs +circular RNAs +chromatin +transcriptomes",https://ocw.mit.edu/courses/biology/7-341-dnas-sister-does-all-the-work-the-central-roles-of-rna-in-gene-expression-spring-2019 +7.341,Turning Evolutionary Dials: Directed Evolution Techniques for Climate Change and Beyond,Spring,2022,, +7.341,"Microbes at War: The Mechanisms That Drive Infectious Diseases + +",Fall,2022,"pathogens +host +infectious disease +microbes +Mycobacterium tuberculosis +Plasmodium +norovirus +alpha-gal +cetuximab +", +7.342,How To Build An Animal: Cell Fate and Identity in Development and Disease,Fall,2017,"cell identity +cell fate +stem cells +pluripotent +gene expression +cell lineages +transcriptional networks +germ cells +transcription factors +hematopoietic identities +cell signaling",https://ocw.mit.edu/courses/biology/7-342-how-to-build-an-animal-cell-fate-and-identity-in-development-and-disease-fall-2017 +7.342,"A Double-Edged Sword: Cellular Immunity in Health and Disease, Fall 2018",Fall,2018,"immunodeficiency +autoimmune diseases +cancer +immune surveillance +homeostasis +immune deficiency +cell signaling +immune checkpoint blockade +hematopoiesis +cytotoxicity +cell death +T cells +lymphocytes +adoptive immune transfer +macrophages +trained immunity",https://ocw.mit.edu/courses/biology/7-342-a-double-edged-sword-cellular-immunity-in-health-and-disease-fall-2018 +7.342,The Seeds and the Soil: Roles of Tumor Heterogeneity and the Tumor Microenvironment in Cancer Metastasis,Fall,2020,,https://ocw.mit.edu/courses/biology/7-342-the-seeds-and-the-soil-roles-of-tumor-heterogeneity-and-the-tumor-microenvironment-in-cancer-metastasis-fall-2020 +7.342,Immune Cell Migration: On the Move in Response to Pathogens and Cancer Immunotherapy ,Fall,2021,"immunology +T cells +dendritic cells +immunotherapies +immunoediting +cell migration +cytoskeleton +actin +integrin +adhesions +CD103 +chemotaxis +haptotaxis +target cell",https://ocw.mit.edu/courses/biology/7-342-immune-cell-migration-on-the-move-in-response-to-pathogens-and-cancer-immunotherapy-fall-2021 +7.343,"Microbial Megaproducers: Discovery, Biosynthesis, Engineering and Applications of Natural Products",Fall,2020,"small molecules +peptides +fatty acids +phospholipids +natural products +NPs +biosynthetic enzymes +RiPPs +NRP-PKS +non-ribosomal peptide NPs +metagenomic methods",https://ocw.mit.edu/courses/biology/7-343-microbial-megaproducers-discovery-biosynthesis-engineering-and-applications-of-natural-products-fall-2020 +7.343,Single-molecule Imaging: Capturing Nanoscale Cellular Machines in Action,Fall,2021,"single-molecule imaging +optical tweezers +optical traps +super-resolution microscopy +nanoscopy +fluorescence microsscopy +smFRET",https://ocw.mit.edu/courses/biology/7-343-single-molecule-imaging-capturing-nanoscale-cellular-machines-in-action-fall-2021/ +7.344,"Antibiotics, Toxins, and Protein Engineering",Spring,2007,lethal poison; Ricin ;Diphtheria ; contagious bacterial disease;tetracycline; protein synthesis; drug resistance ; protein synthesis; protein engineering ; cystic fibrosis ;muscular dystrophy; ribosome; ribosomal proteins; rRNA; mRNA; tRNA; translation factors; genetic code; E. coli ribosome; prokaryotes ; eukaryotes ; Shiga ; Diphtheria toxin ; Pseudomonas exotoxin A ; Chloramphenicol ; Aminoglycoside ; ,https://ocw.mit.edu/courses/biology/7-344-antibiotics-toxins-and-protein-engineering-spring-2007 +7.344,Cellular Metabolism and Cancer: Nature or Nurture?,Fall,2018,,https://ocw.mit.edu/courses/biology/7-344-cellular-metabolism-and-cancer-nature-or-nurture-fall-2018 +7.347,Epigenetic Regulation of Stem Cells,Spring,2014,"Stem cells, induced pluripotency, Epigenetics, chromatin, histone, epigenome, genome-wide analyses, high-throughput sequencing technologies, Chromatin Immunoprecipitation sequencing, ncRNAs, epigenetic regulation, DNA methylation, post-translational modification of histones, roles of chromatin-assembly modifying complexes, non-coding RNAs, nuclear organization, developmental fate, stem cell therapy ",https://ocw.mit.edu/courses/biology/7-347-epigenetic-regulation-of-stem-cells-spring-2014 +7.391,Concept-Centered Teaching,Spring,2006,"teaching, learning, concept-centered, education, science education, biology, student learning, misconceptions, studies, biology teaching, teaching environment, pre-conceived notions, learning environment, classroom, cooperative learning, group learning, assessment, multiple intelligences",https://ocw.mit.edu/courses/biology/7-391-concept-centered-teaching-spring-2006 +7.391,Concept-Centered Teaching,Fall,2005,"teaching, learning, concept-centered, education, science education, biology, student learning, misconceptions, studies, biology teaching, teaching environment, pre-conceived notions, learning environment, classroom, cooperative learning, group learning, assessment, multiple intelligences",https://ocw.mit.edu/courses/biology/7-391-concept-centered-teaching-fall-2005 +7.51,Graduate Biochemistry,Fall,2001,,https://ocw.mit.edu/courses/biology/7-51-graduate-biochemistry-fall-2001 +7.60,Cell Biology: Structure and Functions of the Nucleus,Spring,2010,"cell biology, nucleus, biology, nuclear cell biology, DNA replication, DNA repair, DNA, genome, cell cycle control, transcriptional regulation, gene expression, chromatin, chromosomes, replication, transcription, RNA, RNA interference, mRNA, microRNA, RNAi",https://ocw.mit.edu/courses/biology/7-60-cell-biology-structure-and-functions-of-the-nucleus-spring-2010 +8.012,Physics I: Classical Mechanics,Fall,2008,"elementary mechanics, Newton's laws, momentum, energy, angular momentum, rigid body motion, non-inertial systems, classical mechanics, force, collisions, rocket motion, rotation, gyroscope, cavendish experiment, moment of inertia, reference frames, relativity",https://ocw.mit.edu/courses/physics/8-012-physics-i-classical-mechanics-fall-2008 +8.02,Physics II: Electricity and Magnetism,Spring,2007,electromagnetism; electrostatics; electric charge; Coulomb's law; electric structure of matter; conductors ; dielectrics; electrostatic field ; potential; electrostatic energy;Electric currents;magnetic fields ; Ampere's law; Magnetic materials;Time-varying fields ; Faraday's law of induction; electric circuits; Electromagnetic waves ; Maxwell's equations,https://ocw.mit.edu/courses/physics/8-02-physics-ii-electricity-and-magnetism-spring-2007 +8.02,Electricity and Magnetism,Spring,2019,"electromagnetism +electrostatics +electric charge +Coulomb's law +electric structure of matter +conductors +dielectrics +electrostatic field +potential +electrostatic energy +Electric currents +magnetic fields +Ampere's law +Magnetic materials +Time-varying fields +Faraday's law of induction +electric circuits +Electromagnetic waves +Maxwell's equations",https://ocw.mit.edu/courses/physics/8-02-physics-ii-electricity-and-magnetism-spring-2019 +8.022,Physics II: Electricity and Magnetism,Fall,2004,"Electricity; Magnetism, Maxwell's equations; electrostatic potential; vector potential; dielectrics; Coulomb's Law; Electric Field; Electric Flux; Gauss's Law; Electric Potential Gradient; Poisson Equations; Laplace Equations; Curl; Conductors; Capacitance; Resistance; Kirchhoff's Rules; EMF; RC Circuits; Thévenin Equivalence; Magnetic Force; Magnetic Field; Ampere's Law; Special Relativity; Spacetime; Biot-Savart Law; Faraday's Law; Lenz's Law; RL Circuits; AC Circuits; Electromagnetic Radiation; Poynting Vector",https://ocw.mit.edu/courses/physics/8-022-physics-ii-electricity-and-magnetism-fall-2004 +8.022,Physics II: Electricity and Magnetism,Fall,2006,"Electricity; Magnetism, Maxwell's equations; electrostatic potential; vector potential; dielectrics; Coulomb's Law; Electric Field; Electric Flux; Gauss's Law; Electric Potential Gradient; Poisson Equations; Laplace Equations; Curl; Conductors; Capacitance; Resistance; Kirchhoff's Rules; EMF; RC Circuits; Thévenin Equivalence; Magnetic Force; Magnetic Field; Ampere's Law; Special Relativity; Spacetime; Biot-Savart Law; Faraday's Law; Lenz's Law; RL Circuits; AC Circuits; Electromagnetic Radiation; Poynting Vector",https://ocw.mit.edu/courses/physics/8-022-physics-ii-electricity-and-magnetism-fall-2006 +8.033,Relativity,Fall,2006,"relativity, special relativity, Einstein's postulates, simultaneity, time dilation, length contraction, clock synchronization, Lorentz transformation, relativistic effects, Minkowski diagrams, relativistic invariants, four-vectors; relativitistic particle collisions, relativity and electricity, Coulomb's law, magnetic fields, Newtonian cosmology, general relativity, Schwarzchild metric, gravitational red shift, light trajectories, geodesics, Shapiro delay. ",https://ocw.mit.edu/courses/physics/8-033-relativity-fall-2006 +8.04,Quantum Physics I,Spring,2013,"quantum physics: photoelectric effect, Compton scattering, photons, Franck-Hertz experiment, the Bohr atom, electron diffraction, deBroglie waves, wave-particle duality of matter and light, wave mechanics: Schroedinger's equation, wave functions, wave packets, probability amplitudes, stationary states, the Heisenberg uncertainty principle, zero-point energies, transmission and reflection at a barrier, barrier penetration, potential wells, simple harmonic oscillator. Schroedinger's equation in three dimensions: central potentials, and introduction to hydrogenic systems.",https://ocw.mit.edu/courses/physics/8-04-quantum-physics-i-spring-2013 +8.04,Quantum Physics I,Spring,2016,"quantum physics: photoelectric effect, Compton scattering, photons, Franck-Hertz experiment, the Bohr atom, electron diffraction, deBroglie waves, wave-particle duality of matter and light, wave mechanics: Schroedinger's equation, wave functions, wave packets, probability amplitudes, stationary states, the Heisenberg uncertainty principle, zero-point energies, transmission and reflection at a barrier, barrier penetration, potential wells, simple harmonic oscillator. Schroedinger's equation in three dimensions: central potentials, and introduction to hydrogenic systems.",https://ocw.mit.edu/courses/physics/8-04-quantum-physics-i-spring-2016 +8.044,Statistical Physics I ,Spring,2013,"probability, statistical mechanics, thermodynamics, random variables, joint and conditional probability densities, functions of a random variable, macroscopic variables, thermodynamic equilibrium, fundamental assumption of statistical mechanics, microcanonical and canonical ensembles. First, second, and third laws of thermodynamics, magnetism, polyatomic gases, thermal radiation, electrons in solids, and noise in electronic devices",https://ocw.mit.edu/courses/physics/8-044-statistical-physics-i-spring-2013 +8.05,Quantum Physics II,Fall,2013,"quantum physics, quantum mechanics, Schrodinger equation, Dirac's notation, Harmonic oscillator, wave functions, angular momentum, eigenvalues, eigenstates, spherical harmonics, spin systems.",https://ocw.mit.edu/courses/physics/8-05-quantum-physics-ii-fall-2013 +8.06,Quantum Physics III,Spring,2005,,https://ocw.mit.edu/courses/physics/8-06-quantum-physics-iii-spring-2005 +8.06,Quantum Physics III,Spring,2016,"natural units, scales of microscopic phenomena, Time-independent approximation methods: degenerate and non-degenerate perturbation theory, variational method, Born-Oppenheimer approximation, spin-orbit and relativistic corrections, Zeeman and Stark effects. Charged particles in a magnetic field, Landau levels, integer quantum hall effect. Scattering, partial waves, Born approximation, Time-dependent perturbation theory.",https://ocw.mit.edu/courses/physics/8-06-quantum-physics-iii-spring-2016 +8.06,Quantum Physics III,Spring,2018,"quantum physics, +Hamiltonian, +perturbation theory, +perturbation expansion, +Anharmonic oscillator, +hydrogen atom, +Pauli equation, +time dependent perturbation theory, +time independent perturbation theory, +Scattering, +identical particles",https://ocw.mit.edu/courses/physics/8-06-quantum-physics-iii-spring-2018 +8.07,Electromagnetism II,Fall,2012,"electromagnetic phenomena, electrostatics, magnetostatics, electromagnetic fields,electromagnetic waves, emission of radiation, absorption of radiation, scattering of radiation, relativistic electrodynamics",https://ocw.mit.edu/courses/physics/8-07-electromagnetism-ii-fall-2012 +8.08,Statistical Physics II,Spring,2005,"Probability distributions,quantum systems, Microcanonical, canonical, and grand canonical partition-functions, thermodynamic potentials. Conditions of thermodynamic equilibrium for homogenous and heterogenous systems, non-interacting Bose and Fermi gases; mean field theories for real gases, binary mixtures, magnetic systems, polymer solutions; phase and reaction equilibria, critical phenomena. Fluctuations, correlation functions and susceptibilities, and Kubo formulae. Evolution of distribution functions: Boltzmann and Smoluchowski equations.",https://ocw.mit.edu/courses/physics/8-08-statistical-physics-ii-spring-2005 +8.09,Classical Mechanics III,Fall,2014,,https://ocw.mit.edu/courses/physics/8-09-classical-mechanics-iii-fall-2014 +8.20,Introduction to Special Relativity,IAP,2021,"Einstein's Special Theory of Relativity, Lorentz transformations, length contraction. time dilation, four vectors, Lorentz invariants, relativistic energy and momentum, relativistic kinematics, Doppler shift, space-time diagrams, relativity paradoxes, General Relativity.",https://ocw.mit.edu/courses/physics/8-20-introduction-to-special-relativity-january-iap-2021 +8.21,The Physics of Energy,Fall,2009,"energy, solar energy, wind energy, nuclear energy, biological energy sources, thermal energy, eothermal power, ocean thermal energy conversion, hydro power,climate change, energy storage, energy conservation, nuclear radiation, solar photovoltaic , OTEC, nuclear reactor +",https://ocw.mit.edu/courses/physics/8-21-the-physics-of-energy-fall-2009 +8.223,Classical Mechanics II,IAP,2017,Equations of Motion; Lagrangian Mechanics; ConservedQuantities; Orbits; Scattering Oscillations; Tricky Potentials; Hamiltonian Mechanics; Canonical Equations; Motion of a Rigid Body,https://ocw.mit.edu/courses/physics/8-223-classical-mechanics-ii-january-iap-2017 +8.224,Exploring Black Holes: General Relativity & Astrophysics,Spring,2003,"black hole, general relativity, astrophysics, cosmology, Energy and momentum in flat spacetime; the metric; curvature of spacetime near rotating and nonrotating centers of attraction; trajectories and orbits of particles and light; elementary models of the Cosmos, Global Positioning System, solar system tests of relativity, descending into a black hole, gravitational lensing, gravitational waves, Gravity Probe B, and more advanced models of the Cosmos.",https://ocw.mit.edu/courses/physics/8-224-exploring-black-holes-general-relativity-astrophysics-spring-2003 +8.231,Physics of Solids I,Fall,2006,"periodic structure; symmetry of crystals; diffraction; reciprocal lattice; chemical bonding; lattice dynamics, phonons, thermal properties; free electron gas; model of metals; Bloch theorem; band structure, nearly free electron approximation; tight binding method; Fermi surface; semiconductors, electrons; holes; impurities; optical properties; excitons; magnetism.",https://ocw.mit.edu/courses/physics/8-231-physics-of-solids-i-fall-2006 +8.251,String Theory for Undergraduates,Spring,2007,"string theory , quantum mechanics, relativistic string, special relativity, electromagnetism, statistical mechanics, D-branes, string thermodynamics. Light-cone, Tachyons, Kalb-Ramond fields, Lorentz invariance, Born-Infeld electrodynamics, Hagedorn temperature, Riemann surfaces, fermionic string theories.",https://ocw.mit.edu/courses/physics/8-251-string-theory-for-undergraduates-spring-2007 +8.284,Modern Astrophysics,Spring,2006,"Stars, equations stellar structure, stellar evolution, stellar abundances, binary +stars, interstellar medium: neutral and ionized gas, dust, HII regions, +supernovae, shocks, galaxies, galaxy clusters, galactic structure, stellar hydrodynamics, massive +halos, active galactic nuclei, cosmology, Friedmann models, primordial nucleosynthesis, microwave background radiation.",https://ocw.mit.edu/courses/physics/8-284-modern-astrophysics-spring-2006 +8.286,The Early Universe,Fall,2013,special relativity; big-bang theory; Doppler effect; Newtonian cosmological models; non-Euclidean spaces; thermal radiation; early history of the universe; grand unified theories; particle theory; baryogenesis; inflationary universe model; evolution of galactic structure,https://ocw.mit.edu/courses/physics/8-286-the-early-universe-fall-2013 +8.311,Electromagnetic Theory,Spring,2004,"electromagnetism; electrostatics; magnetic fields of steady currents; motional e.m.f.; electromagnetic induction; Maxwell's equations; propagation and radiation; electromagnetic waves, electric properties of matter; magnetic properties of matter; conservation laws.",https://ocw.mit.edu/courses/physics/8-311-electromagnetic-theory-spring-2004 +8.321,Quantum Theory I,Fall,2017,"quantum dynamics, quantum mechanics, Schrödinger, Heisenberg, kets, Aharanov-Bohm effect, quantum entanglement, perturbation theory, density matrices, adiabatic approximation",https://ocw.mit.edu/courses/physics/8-321-quantum-theory-i-fall-2017 +8.322,Quantum Theory II,Spring,2003,"uncertainty relation, observables, eigenstates, eigenvalues, probabilities of the results of measurement, transformation theory, equations of motion, and constants of motion. Symmetry in quantum mechanics, representations of symmetry groups. Variational and perturbation approximations. Systems of identical particles and applications. Time-dependent perturbation theory. Scattering theory: phase shifts, Born approximation. The quantum theory of radiation. Second quantization and many-body theory. Relativistic quantum mechanics of one electron.",https://ocw.mit.edu/courses/physics/8-322-quantum-theory-ii-spring-2003 +8.323,Relativistic Quantum Field Theory I,Spring,2008,"Classical field theory, symmetries, and Noether's theorem. Quantization of scalar fields, spin  fields, and Gauge bosons. Feynman graphs, analytic properties of amplitudes and unitarity of the S-matrix. Calculations in quantum electrodynamics (QED). Introduction to renormalization.",https://ocw.mit.edu/courses/physics/8-323-relativistic-quantum-field-theory-i-spring-2008 +8.324,Relativistic Quantum Field Theory II,Fall,2010,"Quantum Field Theory , nonabelian gauge theories, BRST symmetry, Perturbation theory anomalies, Renormalization, symmetry breaking, Critical exponents, scalar field theory, Conformal field theory.",https://ocw.mit.edu/courses/physics/8-324-relativistic-quantum-field-theory-ii-fall-2010 +8.325,Relativistic Quantum Field Theory III,Spring,2003,gauge symmetry; confinement; renormalization; asymptotic freedom; anomalies; instantons; zero modes; gauge boson and Higgs spectrum; fermion multiplets; CKM matrix; unification in SU(5) and SO(10);phenomenology of Higgs sector; lepton and baryon number violation; nonperturbative (lattice) formulation,https://ocw.mit.edu/courses/physics/8-325-relativistic-quantum-field-theory-iii-spring-2003 +8.325,Relativistic Quantum Field Theory III,Spring,2007,gauge symmetry; confinement; renormalization; asymptotic freedom; anomalies; instantons; zero modes; gauge boson and Higgs spectrum; fermion multiplets; CKM matrix; unification in SU(5) and SO(10);phenomenology of Higgs sector; lepton and baryon number violation; nonperturbative (lattice) formulation,https://ocw.mit.edu/courses/physics/8-325-relativistic-quantum-field-theory-iii-spring-2007 +8.333,Statistical Mechanics I: Statistical Mechanics of Particles,Fall,2013,"Thermodynamics , entropy. mehanics, microcanonical distributions, canonical distributions, grand canonical distributions; lattice vibrations, ideal gas, photon gas., quantum statistical mechanics; Fermi systems, Bose systems, cluster expansions, van der Waal's gas, mean-field theory.",https://ocw.mit.edu/courses/physics/8-333-statistical-mechanics-i-statistical-mechanics-of-particles-fall-2013 +8.334,Statistical Mechanics II: Statistical Physics of Fields,Spring,2014,"the hydrodynamic limit and classical field theories. Phase transitions and broken symmetries: universality, correlation functions, and scaling theory. The renormalization approach to collective phenomena. Dynamic critical behavior. Random systems.",https://ocw.mit.edu/courses/physics/8-334-statistical-mechanics-ii-statistical-physics-of-fields-spring-2014 +8.421,Atomic and Optical Physics I ,Spring,2014,"atom, atomic and optical physics, resonance, resonance frequency, harmonic oscillator, oscillation frequency, magnetic field, electric field, Landau-Zener problem, lamb shift, line broadening, coherence",https://ocw.mit.edu/courses/physics/8-421-atomic-and-optical-physics-i-spring-2014 +8.422,Atomic and Optical Physics II,Spring,2013,atomic; optical physics; squeezed states; single photon; Casimir force; optical Bloch equations; Photon-atom interactions; light forces; quantum gases;ion traps and quantum gates;,https://ocw.mit.edu/courses/physics/8-422-atomic-and-optical-physics-ii-spring-2013 +8.511,Theory of Solids I,Fall,2004,"physics of solids; elementary excitations; symmetry; theory of representations; energy bands; excitons; critical points; response functions; interactions in the electron gas; electronic structure of metals, semimetals; semiconductors; insulators +Free electron model; Crystalline lattice; Debye Waller factor; Bravais lattice; Pseudopotential; van Hove singularity; Bloch oscillation; quantization of orbits; de Haas-van Alphen effect; Quantum Hall effect; Electron-electron interaction; Hartree-Fock +approximation;Exchange energy for Jellium; Density functional theory; Hubbard model; Electron-phonon coupling; phonons",https://ocw.mit.edu/courses/physics/8-511-theory-of-solids-i-fall-2004 +8.512,Theory of Solids II,Spring,2009,Linear response theory; Fluctuation dissipation theorem; Scattering experiment; f-sum rule; Physics of disorder; Kubo formula for conductivity; Conductance and sensitivity to boundary conditions; Scaling theory of localization; Mott variable range hopping; Superconductor; Transverse response; Landau diamagnetism; Microscopic derivation of London equation; Effect of disorder; Quasiparticles and coherence factors;Tunneling and Josephson effect; Magnetism; Local moment magnetism; exchange interaction; Ferro- and anti-ferro magnet and spin wave theory; Band magnetism; Stoner theory; spin density wave; Local moment in metals; Friedel sum rule; Friedel-Anderson model; Kondo problem; Fermi liquid theory; Electron Green’s function,https://ocw.mit.edu/courses/physics/8-512-theory-of-solids-ii-spring-2009 +8.513,Many-Body Theory for Condensed Matter Systems,Fall,2004,second quantization; path-integrals; condensed matter; Goldstone modes; rigidity; topological defects; Mean field theory; Landau Fermi Liquid Theory; BCS superconductivity; Quantum Phase Transitions; Renormalization group; Duality transformations; Luttinger Liquid Theory; bosonization;broken symmetry; fractionalization; Fractional quantum Hall effect; spin liquids; gauge theories in condensed matter,https://ocw.mit.edu/courses/physics/8-513-many-body-theory-for-condensed-matter-systems-fall-2004 +8.513,Modern Quantum Many-body Physics for Condensed Matter Systems,Fall,2021,"modern quantum +condensed matter +Liouville's theorm +quantum Hall insulator +interaction bosonic superfluid +topological superconductors +topological order +topological excitations +Many-boson systems +Majorana zero modes",https://ocw.mit.edu/courses/physics/8-513-modern-quantum-many-body-physics-for-condensed-matter-systems-fall-2021 +8.514,Strongly Correlated Systems in Condensed Matter Physics,Fall,2003,condensed matter systems; low-dimension magnetic and electronic systems; disorder and quantum transport; magnetic impurities; the Kondo problem; quantum spin systems; the Hubbard model; high temperature superconductors,https://ocw.mit.edu/courses/physics/8-514-strongly-correlated-systems-in-condensed-matter-physics-fall-2003 +8.701,Introduction to Nuclear and Particle Physics,Fall,2020,"nuclear physics +particle physics +nuetrino physics +fermions +bosons +photons +quarks +antiparticles +Higgs physics +QED +quantum electrodynamics +fusion +fission +standard model +Feynman rules +Dirac equation",https://ocw.mit.edu/courses/physics/8-701-introduction-to-nuclear-and-particle-physics-fall-2020 +8.811,Particle Physics II,Fall,2005,"electron-positron and proton-antiproton collisions; electroweak phenomena, heavy flavor physics, and high-precision tests of the Standard Model,compositeness, supersymmetry, and GUTs, Top Quark, and expectations from future accelerators (B factory, LHC).",https://ocw.mit.edu/courses/physics/8-811-particle-physics-ii-fall-2005 +8.821,String Theory,Fall,2008,string theory;conformal field theory; light-cone and covariant quantization of the relativistic bosonic string; quantization and spectrum of supersymmetric 10-dimensional string theories; T-duality and D-branes; toroidal compactification and orbifolds; 11-dimensional supergravity and M-theory. ,https://ocw.mit.edu/courses/physics/8-821-string-theory-fall-2008 +8.821,String Theory and Holographic Duality,Fall,2014,string theory; holographic duality; Weinberg-Witten ; AdS/CFT duality ; black holes; Holographic principle; Wilson loops; Entanglement entropy; Quark-gluon plasmas; quantum gravity; Hamilton-Jacobi; D-branes; Large-N Expansion; Light-Cone Gauge,https://ocw.mit.edu/courses/physics/8-821-string-theory-and-holographic-duality-fall-2014 +8.851,Strong Interactions: Effective Field Theories of QCD,Spring,2006,matching; renormalization; the operator product expansion; power counting;heavy quark decays; CP violation; factorization in hard processes; non-relativistic bound states in field theory (QED and QCD); chiral perturbation theory; few-nucleon systems;,https://ocw.mit.edu/courses/physics/8-851-strong-interactions-effective-field-theories-of-qcd-spring-2006 +8.851,Effective Field Theory,Spring,2013,"Quarks; Relativistic Quantum Field Theory; Quantum Chromodynamics (QCD); The QCD Langrangian; Asymptotic Freedom; Deep Inelastic Scattering; Jets, The QCD Vacuum; Instantons; the U(1) Problem; Lattice Guage Theory",https://ocw.mit.edu/courses/physics/8-851-effective-field-theory-spring-2013 +8.871,Selected Topics in Theoretical Particle Physics: Branes and Gauge Theory Dynamics,Fall,2004,"branes theory; supersymmetric field theory ;Standard Model; D-branes, ;supersymmetric string solitonic1 solutions; Dp-branes; NS-branes; M-branes; small instantons; worldvolume theories;quantum field theory ;supersymmetric gauge theory ",https://ocw.mit.edu/courses/physics/8-871-selected-topics-in-theoretical-particle-physics-branes-and-gauge-theory-dynamics-fall-2004 +8.901,Astrophysics I,Spring,2006,"Historical astronomy; astronomical instrumentation; Stars: spectra, classification; stellar structure equations,stellar evolution; stellar oscillations; degenerate and collapsed stars; radio pulsars; interacting binary systems; accretion disks, x-ray sources; gravitational lenses; dark matter; interstellar medium: HII regions, supernova remnants, molecular clouds, dust; radiative transfer; Jeans' mass; star formation; high-energy astrophysics, Compton scattering, bremsstrahlung, synchrotron radiation, cosmic rays. Galactic stellar distributions; Oort constants; Oort limit; globular clusters. ",https://ocw.mit.edu/courses/physics/8-901-astrophysics-i-spring-2006 +8.902,Astrophysics II,Fall,2004,Galactic dynamics;potential theory; orbits; collisionless Boltzmann equations; Galaxy interactions; Groups and clusters; dark matter; Intergalactic medium; x-ray clusters; Active galactic nuclei; unified models; black hole accretion; radio and optical jets; Homogeneity and isotropy; redshift; galaxy distance ladder; Newtonian cosmology; Roberston-Walker models and cosmography; Early universe; primordial nucleosynthesis; recombination; Cosmic microwave background radiation; Large-scale structure; galaxy formation.,https://ocw.mit.edu/courses/physics/8-902-astrophysics-ii-fall-2004 +8.942,Cosmology,Fall,2001,cosmology; thermal background; cosmological principle; Newtonian cosmology; types of universes; relativistic cosmology; horizons; evolution in cosmology; radiation; element synthesis; Cosmic Microwave Background radiation; galaxies; high redshift; cosmic structure formation.,https://ocw.mit.edu/courses/physics/8-942-cosmology-fall-2001 +8.952,Particle Physics of the Early Universe,Fall,2004,"general relativity, big bang, cosmology, thermodynamics, early universe, cosmic background radiation, primordial nucleosynthesis, standard model, electroweak and QCD phase transition, group theory, grand unified theories, baryon asymmetry, monopoles, cosmic strings, domain walls, axions, inflationary universe, structure formation. ",https://ocw.mit.edu/courses/physics/8-952-particle-physics-of-the-early-universe-fall-2004 +8.962,General Relativity ,Spring,2020,"relativity +general relativity +special relativity +linearized general relativity +spacetime +Einstein's equation +E = mc2 +gravitation +gravitational waves +gravitational lensing +cosmology +Schwarzschild solution +black holes +",https://ocw.mit.edu/courses/physics/8-962-general-relativity-spring-2020 +9.00,Introduction to Psychology,Fall,2004,human behavior; brain; perception; memory; motivation; emotion; learning; senses; sensation; cognition; thinking; language; intelligence; love; evolution; attitude; behavior; self; dissociation; repression; morality; Freud; sleep; dreams; mental illness; fairy tale;,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-00-introduction-to-psychology-fall-2004 +9.01,Neuroscience & Behavior,Fall,2003,"functional neuroanatomy, functional neurophysiology, motor systems, centrally programmed behavior, sensory systems, sleep, dreaming, motivation, reward, emotional displays, higher functions, neocortex, neural processes in learning and memory",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-01-neuroscience-and-behavior-fall-2003 +9.01,Introduction to Neuroscience,Fall,2007,"neuroscience, vision, hearing, neuroanatomy, color vision, blind spot, retinal phototransduction, cortical maps, primary visual cortex, complex cells, extrastriate cortex, ear, cochlea, basilar membrane, auditory transduction, hair cells, phase-locking, sound localization, auditory cortex, somatosensory system, motor system, synaptic transmission, action potential, sympathetic neurons, parasympathetic neurons, cellual neurophysiology, learning, memory",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-01-introduction-to-neuroscience-fall-2007 +9.011,The Brain and Cognitive Sciences I,Fall,2002,"CNS, nervous system, molecular, cellular, systems, development , cell biology, neurons, neurotransmitters, synaptic, transmission, sensory systems, brain, neuroendocrine system, the motor system, cortical functions, behavioral, learning, memory.",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-011-the-brain-and-cognitive-sciences-i-fall-2002 +9.012,The Brain and Cognitive Sciences II,Spring,2002,"brain, behavioral, perception, attention, working memory, recognition, +recall, language, cognitive science, computation",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-012-the-brain-and-cognitive-sciences-ii-spring-2002 +9.012,The Brain and Cognitive Sciences II,Spring,2006,"brain, behavioral, perception, attention, working memory, recognition, +recall, language, cognitive science, computation, visual perception, language, memory, cognitive architecture, learning, reasoning, decision-making, cognitive development, behavioral perspective, computational perspective, neural perspective ",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-012-the-brain-and-cognitive-sciences-ii-spring-2006 +9.03,Neural Basis of Learning and Memory,Fall,2007,learning; memory; neural plasticity;electrophysiology; hippocampus; synapse; aplysia; drosophlia; NMDA; semantic memory; working memory; short-term memory; alzheimer's disease; skill learning; mirror neurons; short-term; long-term,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-03-neural-basis-of-learning-and-memory-fall-2007 +9.036,The Visual System,Spring,2005,"anatomical, neurophysiological, imaging, behavior, functional, structural organization, visual scene, processing, visual system, color vision, adaptation, eye movements, visual analysis, motion perception, depth perception, pattern perception",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-036-the-visual-system-spring-2005 +9.04,Sensory Systems,Fall,2013,"sensory systems; visual system; auditory system; +visual processing; auditory processing; perception; sensorimotor control; nervous system; depth perception; auditory responses; speech coding; spatial localization; retina; lateral geniculate nucleus; visual cortex; auditory nerve; Cochlear; brainstem reflexes; sound localization; auditory cortex; echolocation",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-04-sensory-systems-fall-2013 +9.05,Neural Basis of Movement,Spring,2003,"motor control, neural mechanisms, movement, movement planning, sensory reception, reflex arcs, spinal cord organization, pattern generators, muscle function, locomotion, eye movement, cognitive aspects of motor control, central motor structures, cerebellum, basal ganglia, cerebral cortex, Cortical plasticity, motor learning, computation, motor disorders",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-05-neural-basis-of-movement-spring-2003 +9.07,Statistics for Brain and Cognitive Science,Fall,2016,"statistics, cognitive science, neuroscience, economics, statistical theory, probability theory, discrete probability models, law of large numbers, independent random variables, conditional distributions, variance, covariance, correlation, moment generating functions, method of momentum estimation, likelihood theory, propagation of error, bootstrap, monte carlo, hypothesis testing, regression, analysis of variance, ANOVA, bayes, bayesian methods, confidence intervals, goodness of fit",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-07-statistics-for-brain-and-cognitive-science-fall-2016 +9.081,Human Memory and Learning,Fall,2002,"cognitive, neural organization, human memory, learning, working memory, executive control, episodic, semantic memory, functional neuroimaging, fMRI, PET",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-081-human-memory-and-learning-fall-2002 +9.10,Cognitive Neuroscience,Spring,2006,"emphasizing attention, vision, language, motor control, memory, functional imaging techniques, cognition, neurological diseases, Alzheimer's disease, Parkinson's disease, Huntington's disease, Balint's syndrome, amnesia, focal lesions, stroke",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-10-cognitive-neuroscience-spring-2006 +9.12,Experimental Molecular Neurobiology,Fall,2006,molecular biology; GFP; RFP; neurons; experimental techniques; genetic sequencing; vector design; plasmid; polymerase chain reaction; transfection; cell culture; gel electrophoresis; Western blotting; Northern blotting; Southern blotting; perfusion; lab animals; brain dissection,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-12-experimental-molecular-neurobiology-fall-2006 +9.123,Neurotechnology in Action,Fall,2014,"Neurotechnology, neuron, electrophysiology, light microscopy, cellular engineering, optogenetics, electron microscopy, MRI/fMRI, functional MRI, MEG/EEG",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-123-neurotechnology-in-action-fall-2014 +9.13,The Human Brain,Spring,2019,"perceptual functions +cognitive functions +functional organization +cortical regions +networks +cognitive neuroscience +neuroanatomy +experimental design +visual pathway +reward system +speech, music +auditory skills +language +mentalizing +theory of mind +deep networks +attention +awareness",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-13-the-human-brain-spring-2019 +9.14,Brain Structure and Its Origins,Spring,2014,"brain, neuroanatomy, CNS, central nervous system, neuron, brain structure and anatomy, neurosystems, sensory systems, limbic system, hypothalmus, neocortex, corpus striatum",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-14-brain-structure-and-its-origins-spring-2014 +9.15,Biochemistry and Pharmacology of Synaptic Transmission,Fall,2007,neurotransmitter; antidepressant; brain lipid; blood brain barrier; dopamine; parkinson's disease; seratonin; depression; glutamate; aspartate; NDMA; drug; drug discovery; pharmaceutical; signaling pathway; receptor; spinal cord; marijuana; adensosine; histamine;,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-15-biochemistry-and-pharmacology-of-synaptic-transmission-fall-2007 +9.16,Cellular Neurophysiology,Spring,2002,"molecular, cellular mechanisms, neuronal communication, ion channels, excitable membrane, synaptic transmission, synaptic plasticity, physiology, function, neural networks",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-16-cellular-neurophysiology-spring-2002 +9.17,Systems Neuroscience Lab,Spring,2013,"laboratory, experiment, protocol, neuroscience, nerves, nervous system, electrophysiology, action potential, neurophysiology, rat barrel, MATLAB, frog, fly, vision, physiology, human, MRI, EEG, electroencephalography, ablation, computer modeling techniques, brain function, histology, neural tissue, surgery, laboratory notebook, scientific writing,",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-17-systems-neuroscience-lab-spring-2013 +9.18,Developmental Neurobiology,Spring,2005,neuron; neural specification; neuronal connections; neural system; experience; neural induction; pattern formation; cell lineage; fate determination; neuronal migration; axon; axon guidance; synapse; cell death; vision; visual system; cortex;,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-18-developmental-neurobiology-spring-2005 +9.20,Animal Behavior,Fall,2013,"animal behavior, ethology, behavioral organization, sociobiology, mammals, behavioral ecology, naturalists, behavioral evolution, social organization, sexuality, mating, reproduction, animal learning, antipredatory behavior, feeding, foraging, adaptive behavior",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-20-animal-behavior-fall-2013 +9.201,Advanced Animal Behavior,Spring,2000,"ethology, mammology, primatology, +sociobiology, comparative psychology, mammalian behavior, vertebrates, invertebrates, animal-behavior, neuropsychology, pharmacology",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-201-advanced-animal-behavior-spring-2000 +9.250,Evolutionary Psychology,Spring,1999,"evolution, development of cognition, affect, intuitive physics, biology, psychology, language, emotions, sexuality, social relations",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-250-evolutionary-psychology-spring-1999 +9.35,Sensation And Perception,Spring,2009,"vision, sensation, perception, psychophysics, illusion, depth, parallax, motion, occlusion, matching, recognition, smell, taste, hearing, perspective, sight, figure, ground, completion, modal, senses, stimuli, system, vision, perception, color, motion, form, depth.",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-35-sensation-and-perception-spring-2009 +9.357,Special Topics in Vision Science,Fall,2001,"vision, perception, materials, optics, psychophysics, computer graphics, computer vision",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-357-special-topics-in-vision-science-fall-2001 +9.40,Introduction to Neural Computation,Spring,2018,"timescale of diffusion +length scales +Fick's First Law +Ohm's Law and resistivity +charge drift +neurons +injected currents +membrane capacitance +RC model +differential equations +Integrate and Fire model +batteries of neuron +circuit diagram +HH Model +voltage clamp +time dependence +potassium current +conductance +Hidgkin-Huxley gating variables +sodium channel +dendrite +leaky dendrite +non-leaky dendrite +length constant +dendritic radius +electrotonic length +two-compartment model +equivalent circuit model +synaptic transmission +convolution +linear kernel +spike train +synaptic saturation +somatic inhibition +dendritic inhibition +extracellular spike waveforms +local field potentials +local field potentials +spike signals +low-pass +high-pass +threshold crossing +peri-stimulus time histogram +PSTH +firing rate +smoothing spike train +linear filter +Spatio-temporal Receptive Field +STRF +Spike Triggered Average +Poisson Process +Fano Factor Interspike Interval +ISI +convolution +cross-correlation +autocorrelation +Fourier series +complex fourier series +fourier transform +discrete fourier transform +Fast Fourier Transform +FFT +power spectrum +Fourier transform pairs +Gaussian Noise +Spectral estimation +Shannon-Nyquist Theorem +zero paddingline noise removal +windows and tapers +spectrograms +multi-taper spectral analysis +DPSS +filtering methods +rate model +vector notation +vector algebra +perceptrons +neuronal logic +linear separability +invariance +two-layer feedforward networks +matrix algebra +matrix transformations +linear independence +eigenvectors +eigenvalues +covariance matrix +Principal Components Analysis +PCA +recurrent networks +autapse networks +storing memories +decision-making +winner-take-all +Hopfield network capacity +long-term memory +short-term memory +energy landscape + + + + + + + + + +",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-40-introduction-to-neural-computation-spring-2018 +9.401,Tools for Robust Science,Fall,2022,, +9.458,Parkinson's Disease Workshop,Summer,2006,Parkinson’s disease; chronic progressive degenerative disease; central nervous system; movement disorders; executive functions; working memory; visuospatial functions; internal control of attention; James Parkinson; neurologist; pathogenic mechanisms;positron emission tomography (PET); structural and functional high-field magnetic resonance imaging (MRI),https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-458-parkinson-s-disease-workshop-summer-2006 +9.459,Scene Understanding Symposium,Spring,2006,"circuits, mechanisms and representation; recognition of a visual scene; Scene Understanding; neurophysiology; cognitive neuroscience; visual cognition; computational neuroscience; computer vision; natural image categorization; contextual effects on object recognition; role of attention in scene understanding +",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-459-scene-understanding-symposium-spring-2006 +9.46,Neuroscience of Morality,Fall,2017,"Cognition +Neuroscience +Morality +False belief +Decision +Perception +Thought +Intelligence +ToM +Theory of Mind +Decision making +Judgment +rTPJ +Social",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-46-neuroscience-of-morality-fall-2017 +9.51,Affective Priming at Short and Extremely Short Exposures,Spring,2003,"affective priming, learning, memory, retention, testing paradigm, study design, +counterbalancin, imaging, fMRI",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-51-affective-priming-at-short-and-extremely-short-exposures-spring-2003 +9.520,Statistical Learning Theory and Applications,Spring,2003,"supervised learning, statistical learning, multivariate function, Support Vector Machines, regression, classification, VC theory, computer vision, computer graphics, classification, bioinformatics",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-520-statistical-learning-theory-and-applications-spring-2003 +9.520,Statistical Learning Theory and Applications,Spring,2006,"supervised learning, statistical learning, multivariate function, Support Vector Machines, regression, classification, VC theory, computer vision, computer graphics, classification, bioinformatics",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-520-statistical-learning-theory-and-applications-spring-2006 +9.530,Cellular and Molecular Computation,Spring,2000,"emergent, network, chemical reactions, proteins, nucleic acids, metabolism, gene regulation, signal transduction, chemotaxis, excitability, motility, mitosis, development, immunity, molecular evolution, DNA computing, metabolic, genetic engineering",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-530-cellular-and-molecular-computation-spring-2000 +9.63,Laboratory in Cognitive Science,Fall,2002,"language processing, structure, Sentence processing, Discourse processing, Morphological processing, storage, Ambiguity resolution,computational modeling, connectionist models, language acquisition, critical period, Speech acquisition, word acquisition, self-paced reading, eye-tracking, cross-modal priming, imaging",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-63-laboratory-in-cognitive-science-fall-2002 +9.63,Laboratory in Visual Cognition,Fall,2009,"cognitive science, human perception, cognition, statistical analysis, signal detection theory, single factor design, factorial design, matlab, correlational studies, ethics in research, visual cognition, thought, psychology and cognitive science, information processing, organization of visual cognitive abilities.",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-63-laboratory-in-visual-cognition-fall-2009 +9.65,Cognitive Processes,Spring,2004,"cognitive science, cognitive processes, cognition, the mind, object recognition, attention, memory, associative memory, learning, implicit memory, conceptual short term memory, working memory, language, concepts, prototypes, psycholinguistics, visual knowledge, mental codes, judgement, reasoning, problem-solving, conscious thought, unconscious thought",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-65-cognitive-processes-spring-2004 +9.67,Object and Face Recognition,Spring,2001,"object recognition, neural, computation, representation, 3-D objects, 2-D images, face recognition, human face recognition, artificial computational systems",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-67-object-and-face-recognition-spring-2001 +9.675,The Development of Object and Face Recognition,Spring,2006,"computational theories of human cognition, principles of inductive learning and inference, representation of knowledge, computational frameworks, Bayesian models, hierarchical Bayesian models, probabilistic graphical models, nonparametric statistical models, Bayesian Occam's razor, sampling algorithms for approximate learning and inference, probabilistic models defined over structured representations such as first-order logic, grammars, relational schemas, core aspects of cognition, concept learning, concept categorization, causal reasoning, theory formation, language acquisition, social inference ",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-675-the-development-of-object-and-face-recognition-spring-2006 +9.68,"Affect: Neurobiological, Psychological and Sociocultural Counterparts of “Feelings”",Spring,2013,"Affect, cognition, behavior, feeling, thinking, acting, values, beliefs, practices, relations, organization, neurobiology, sociocultural, psychology, stress, ecological identity, human relationship with nature",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-68-affect-neurobiological-psychological-and-sociocultural-counterparts-of-feelings-spring-2013 +9.69,Foundations of Cognition,Spring,2003,"cognitive science, Western philosophy, structure, color, objects, number, categories, similarity, inductive inference, space, time, causality, reasoning, decision-making, morality, consciousness, development, psychology, computation, neuroscience, philosophy, linguistics, artificial intelligence",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-69-foundations-of-cognition-spring-2003 +9.70,Social Psychology,Spring,2013,"group dynamics, thoughts, feelings, actions, influence, beliefs, values, practices, groups, psychology, social psychology, ethics, self-esteem, aggression, social psychology, social behavior, cognition, attention, emotion, motivation, personality behavior, interpersonal relationships, human activity, physiological, neurological ",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-70-social-psychology-spring-2013 +9.71,Functional MRI of High-Level Vision ,Fall,2007,"functional magnetic resonance imaging (fMRI), neural activity, human, brain, noninvasive, resolution, high-level vision, object recognition, visual attention, perceptual awareness, visually guided action, visual memory, voxelwise analysis, conjugate mirroring, interleaved stimulus presentation, magnetization following excitation, active voxels, scanner drift, trial sorting, collinear factors, different model factors, mock scanner, scanner session, visual stimulation task, hemoglobin signal, labeling plane, nearby voxels, shimming coils, bias field estimation, conscious encoding, spiral imaging, functional resolution, hemodynamic activity, direct cortical stimulation, physiological noise, refractory effects, independent statistical tests.",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-71-functional-mri-of-high-level-vision-fall-2007 +9.85,Infant and Early Childhood Cognition,Fall,2012,"infant cognition, early childhood cognition, cognitive development, developmental psychology, psychology, developmental research, Piaget, object knowledge, object individuation, object concept, agents, causal knowledge, theory of mind, causation, causal transformations",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-85-infant-and-early-childhood-cognition-fall-2012 +9.911,Reasonable Conduct in Science,IAP,2002,"ethics, conduct, human, animal, research, data handling, animal and human subjects, misconduct, mentoring, intellectual property, publication",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-911-reasonable-conduct-in-science-january-iap-2002 +9.912,Special Topics in Brain and Cognitive Sciences,Fall,2001,"Memory, neurobiology, cognitive and neural architectures , neuroimaging, fMRI, PET",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-912-special-topics-in-brain-and-cognitive-sciences-fall-2001 +9.913,Pattern Recognition for Machine Vision,Fall,2004,"comonent analysis, PCA, ICA, fourier analysis, vision, machine vision, pattern matching, pattern analysis, pattern recognition, scene analysis, tracking, feature extraction, color, color space, clustering, bayesian decisions, gesture recognition, action recognition, image processing, image formation, density estimation, classification, morphable models",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-913-pattern-recognition-for-machine-vision-fall-2004 +9.914,"Special Topics: Genetics, Neurobiology, and Pathophysiology of Psychiatric Disorders",Fall,2008,"Brain and Cognitive Sciences, Bipolar Disorder, Psychosis, Schizophrenia, Genetics of Psychiatric Disorder, DISC1, Ca++ Signaling, Neurogenesis & Depression, Lithium and GSK3 Hypothesis, Behavorial Assays, CREB in Addiction & Depressive Behavoirs, The GABA System-I, The GABA System-II, The Glutamate Hypothesis of Schizophrenia, The Dopamine Pathway & DARPP32, Genetics, Neurobiology, Pathophysiology, Psychiatry. +",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-914-special-topics-genetics-neurobiology-and-pathophysiology-of-psychiatric-disorders-fall-2008 +9.916,"Modularity, Domain-specificity, and the Organization of Knowledge",Fall,2001,"organization, mind, brain, domains, objects, number, places, people, behavior, infants, children, normal adults, neurological patients, animals, functional brain imaging, ERPs, innateness, plasticity, cognitive systems",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-916-modularity-domain-specificity-and-the-organization-of-knowledge-fall-2001 +9.916,The Neural Basis of Visual Object Recognition in Monkeys and Humans,Spring,2005,"vision, object recognition, monkey versus human, object representations, fMRI, temporal lobe, visual cortex, neuronal representations, neurophysiology, retinal image, pattern recognition, perceptual awareness, ",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-916-the-neural-basis-of-visual-object-recognition-in-monkeys-and-humans-spring-2005 +9.916,Special Topics: Social Animals,Fall,2009,"social animals, social, animals, society, human society, members, community, living together, mutual benefit, people, region, country, world, whole, association, body, individuals, functional interdependence, national or cultural identity, social solidarity, language or hierarchical organization, patterns of relationships between individuals sharing a distinctive culture and institutions, groups, economic, social or industrial infrastructure, made up of a varied collection of individuals, ethnic groups, nation state, broader cultural group, organized voluntary association of people for religious, benevolent, cultural, scientific, political, patriotic, or other purposes. ",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-916-special-topics-social-animals-fall-2009 +9.93,Cognitive Neuroscience of Remembering: Creating & Controlling Memory,IAP,2002,human memory; neural memory; cognitive control; recall; retrieval; learning; perception; priming; forgetting; frontal lobe; MRI; brain imaging; amnesia; Alzheimer's; dementia; aging; short-term memory; long-term memory; memory loss; eyewitness; false memory; visualization;,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-93-cognitive-neuroscience-of-remembering-creating-and-controlling-memory-january-iap-2002 +9.93,Marathon Moral Reasoning Laboratory,IAP,2007,"cognitive science; moral reasoning; moral actions; permissible; human life; intuition; analytical paradigm; behavioral experiment; questionnaire, experiment; structure of human mind",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-93-marathon-moral-reasoning-laboratory-january-iap-2007 +9.96,Experimental Methods of Adjustable Tetrode Array Neurophysiology,IAP,2001,electrophysiology; implant; rodent; behavioral experiment; microdrive array; animal experiment; experimental design; ,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-96-experimental-methods-of-adjustable-tetrode-array-neurophysiology-january-iap-2001 +9.97,Introduction to Neuroanatomy,IAP,2003,"mammalian neuroanatomy, structure, function, sheep, human, nerves, neuroimaging",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-97-introduction-to-neuroanatomy-january-iap-2003 +9.98,Language and Mind,IAP,2003,"human language, representation, acquisition, children, adults, language, thought, imaging, computational modeling",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-98-language-and-mind-january-iap-2003 +9.98,Neuropharmacology,IAP,2009,"antidepressant, +psychopharmacology, +neurology, +neuroscience, +pharmacology, +synapse, +seratonin, drug, disposition, tolerance, physical dependence model, depot binding, classic antipsychotic drugs, experimental substance use, anabolic steroid dependence, biobehavioral effects, positive reinforcement model, phenethylamine hallucinogens, discriminative stimulus effects, nicotine reinforcement, somatodendritic autoreceptors, selected brain areas, many psychoactive drugs, terminal autoreceptors, abstinence signs, motor side effects, drug reinforcement, other psychostimulants, postsynaptic cell, nicotine tolerance, abstinent smokers, behavioral tolerance, chronic drug use, susceptibility models +increased impulse flow, mesoprefrontal dopamine neurons, midbrain dopamine neurons, junctional transmission, central noradrenergic neurons, neuropharmacological agents, locus ceruleus neurons, tyrosine hydroxylation, dopamine cells, raphe neurons, postsynaptic dopamine receptors, dopamine receptor subtypes, dopamine autoreceptors, histidine decarboxylase, neuroactive peptides, catecholamine neurons, pontine nucleus, synaptic transmitter, dentate granule cells, neuroactive steroids, catecholamine hypothesis, transmitter actions, transmitter synthesis, dopamine systems, dopamine synthesis",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-98-neuropharmacology-january-iap-2009 +10.01,Ethics for Engineers: Artificial Intelligence,Spring,2020,"chemical engineering, ethics, virtues, vices, product safety, environment, human health, biotechnology, engineering, society, law, politics, modern politics, science, education, arts, technique, technology, fortune, necessity, justice, progress, economics, utilitarianism, Kant, Hobbes, Aristotle, Benjamin Franklin, Tocqueville, Rousseau, bioethics, Machiavelli, AI, artificial intelligence, machine learning, bias",https://ocw.mit.edu/courses/chemical-engineering/10-01-ethics-for-engineers-artificial-intelligence-spring-2020 +10.302,Transport Processes,Fall,2004,"heat transfer, mass transfer, transport processes, conservation of energy, heat diffusion, boundary and initial conditions, conduction, steady-state conduction, heat diffusion equation, spatial effects, radiation, blackbody exchange, extended surfaces, gray surfaces, heat exchangers, convection, boundary layers, steady diffusion, transient diffusion",https://ocw.mit.edu/courses/chemical-engineering/10-302-transport-processes-fall-2004 +10.32,Separation Processes,Spring,2005,"separation process, chemical mixtures, biological mixtures, distillation, membrane processes, chromatography, adsorption, precipitation, crystallization, filtration, membrane filtration, fixed bed adsorption, reverse osmosis, McCabe-Thiele, stripping, equilibrium, rate processes, staged cascades, absorption, phase equilibria, diffusion",https://ocw.mit.edu/courses/chemical-engineering/10-32-separation-processes-spring-2005 +10.34,Numerical Methods Applied to Chemical Engineering,Fall,2005,"Matlab, modern computational techniques in chemical engineering, mathematical techniques in chemical engineering, linear systems, scientific computing, solving sets of nonlinear algebraic equations, solving ordinary differential equations, solving differential-algebraic (DAE) systems, probability theory, use of probability theory in physical modeling, statistical analysis of data estimation, statistical analysis of parameter estimation, finite difference techniques, finite element techniques, converting partial differential equations",https://ocw.mit.edu/courses/chemical-engineering/10-34-numerical-methods-applied-to-chemical-engineering-fall-2005 +10.34,Numerical Methods Applied to Chemical Engineering,Fall,2015,"linear algebra, optimization, ODE-IVP, numerical integration, differential-algebraic equations, boundary value problems, partial differential equations, probability theory, operator splitting, Monte Carlo methods, stochastic chemical kinetics, systems of nonlinear equations",https://ocw.mit.edu/courses/chemical-engineering/10-34-numerical-methods-applied-to-chemical-engineering-fall-2015 +10.37,Chemical and Biological Reaction Engineering,Spring,2007,"chemical kinetics, reactor design, modeling, plug flow reactor, stirred tank reactor, batch reactor, CSTR, PFR, continuous process, batch process, kinetics, differential equations, volume, residence time, packed bed, catalyst, reaction rate, stoichiometry, equilibrium reaction mechanisms, equilibrium or steady state assumptions, design of chemical and biochemical reactors, transport phenomena, mass and energy balances, chemical pathways, biochemical pathways, enzymatic pathway, cell growth kinetics, plug flow reactor, well-stirred reactors,cultivation of microorganisms, cultivation of mammalian cells; heterogeneous and enzymatic catalysis; heat and mass transport, diffusion to catalyst particles, diffusion within catalyst particles, diffusion within cells, diffusion within immobilized enzymes. +",https://ocw.mit.edu/courses/chemical-engineering/10-37-chemical-and-biological-reaction-engineering-spring-2007 +10.40,Chemical Engineering Thermodynamics,Fall,2003,"thermodynamics, first law, second law, entropy, Carnot, Gibbs, energy, free energy, equilibrium, ideal gas, statistical mechanics, ensemble, Hamiltonian, fugacity, fluids, phase, stability",https://ocw.mit.edu/courses/chemical-engineering/10-40-chemical-engineering-thermodynamics-fall-2003 +10.442,Biochemical Engineering,Spring,2005,"chemical engineering, biochemistry, microbiology, mathematical representations of microbial systems, kinetics of growth, kinetics of death, kinetics of metabolism, continuous fermentation, agitation, mass transfer, scale-up in fermentation systems, enzyme technology",https://ocw.mit.edu/courses/chemical-engineering/10-442-biochemical-engineering-spring-2005 +10.445,Separation Processes for Biochemical Products,Summer,2005,"separation operations, recovery of products from biological processes, membrane filtration, chromatography, centrifugation, cell disruption, extraction, process design, downstream processing, biochemical product recovery, modes of recovery and purification, biochemical engineering, biochemical product recovery",https://ocw.mit.edu/courses/chemical-engineering/10-445-separation-processes-for-biochemical-products-summer-2005 +10.450,"Process Dynamics, Operations, and Control",Spring,2006,"process dynamics, control feedback, cascade, tank, series, operations, chemical engineering, controller, valve, transducer, feedforward, differential equations, LaPlace transform, exothermic, reactor, control systems, control strategies, control structures",https://ocw.mit.edu/courses/chemical-engineering/10-450-process-dynamics-operations-and-control-spring-2006 +10.467,Polymer Science Laboratory,Fall,2005,"polymers, polymer laboratory, polymer experiments, properties of polymers, methods of polymer synthesis, physical chemistry, solution polymerization of acrylamide, bead polymerization of divinylbenzene, interfacial polymerization of nylon 6,10, evaluation of networks by tensile and swelling experiments, rheology of polymer solutions and suspensions, physical properties of natural and silicone rubber",https://ocw.mit.edu/courses/chemical-engineering/10-467-polymer-science-laboratory-fall-2005 +10.490,Integrated Chemical Engineering I,Fall,2006,"Integrated Chemical Engineering, chemical process, process design, ABACUSS, batch reactor, chemical kinetics",https://ocw.mit.edu/courses/chemical-engineering/10-490-integrated-chemical-engineering-i-fall-2006 +10.491,Integrated Chemical Engineering II,Spring,2006,integrated chemical engineering; ICE; process design; differential equations; separation processes; simulation; flowsheet; reactor design; transport phenomena; economic feasibility study; economic analysis,https://ocw.mit.edu/courses/chemical-engineering/10-491-integrated-chemical-engineering-ii-spring-2006 +10.520,Molecular Aspects of Chemical Engineering,Fall,2004,"molecular-level engineering, analysis of chemical processes, chemical bonding, reactivity, design of organic systems, tailoring of organic systems, application and development of structure-property relationships, descriptions of the chemical forces and structural factors that govern supramolecular and interfacial phenomena for molecular and polymeric systems",https://ocw.mit.edu/courses/chemical-engineering/10-520-molecular-aspects-of-chemical-engineering-fall-2004 +10.52,Mechanics of Fluids,Spring,2006,"fluid mechanics, continuum mechanics, kinematics, macroscopic balances for linear momentum, macroscopic balances for angular momentum, the stress tensor, creeping flows, lubrication approximation, boundary layer approximation, linear stability theory, simple turbulent flows",https://ocw.mit.edu/courses/chemical-engineering/10-52-mechanics-of-fluids-spring-2006 +10.569,Synthesis of Polymers,Fall,2006,"polymer synthesis, step growth polymerization, free radical chain polymerization, anionic polymerization, cationic polymerization, ring-opening polymerization, ring openiing metathesis polymerization (ROMP), atom transfer free radical olymerization (ATRP), functionalization, stable free radical polymerization, dendrimers, Kevlar, Nylon, Teflon, DuPont, hydrogen bonding, initiators, iniferter, ionic polymerizatioin, organic chemistry, inorganic chemistry, emulsion polymerization, Rempp, Merrill ",https://ocw.mit.edu/courses/chemical-engineering/10-569-synthesis-of-polymers-fall-2006 +10.626,Electrochemical Energy Systems,Spring,2014,energy; electrochemical energy conversion; electrochemical energy storage; transport phenomena; diffuse charge; Faradaic reactions; statistical thermodynamics; phase transformations; rechargeable batteries; fuel cells; supercapacitors; solar cells; desalination; electrokinetic energy conversion,https://ocw.mit.edu/courses/chemical-engineering/10-626-electrochemical-energy-systems-spring-2014 +11.005,Introduction to International Development,Spring,2015,"international development, poverty, development, governments, markets, structure, agency, wellbeing, progress, culture, policy, socioeconomic, colonialism, ethical development, identities, modernization, growth paradigms, development agenda, industrialization, debt crisis, globalization, washington consensus, institutions, continuous development, bretton woods system, cooperation, NGOs, non-governmental organization, capitalism, private sector, development theory, international aid architecture",https://ocw.mit.edu/courses/urban-studies-and-planning/11-005-introduction-to-international-development-spring-2015 +11.006,Poverty and Economic Security,Fall,2016,"poverty, economic security, global poverty, economic status, employment, economic disparity, economic inequality, equitable distribution of wealth, middle class economy, economic insecurity, working poor, demographics, income, race, economic class",https://ocw.mit.edu/courses/urban-studies-and-planning/11-006-poverty-and-economic-security-fall-2016 +11.007,Resolving Public Disputes,Spring,2005,public policy; policymaking; law; legislature; social problems; power and wealth; problem solving; direct democracy; consensus building; regulatory negotiation; politics; political writing; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-007-resolving-public-disputes-spring-2005 +11.011,The Art and Science of Negotiation,Spring,2006,negotiation; bargaining; conflict; strategy; choice; strategic interaction; mutual gains; cooperation; problem solving; interests; stakeholders; listening; trust; communication; perspective taking; escalation; psychological processes; coalitions,https://ocw.mit.edu/courses/urban-studies-and-planning/11-011-the-art-and-science-of-negotiation-spring-2006 +11.020,"Poverty, Public Policy and Controversy",Fall,2003,how society should respond to poverty; race; politics of welfare; out-of-wedlock births; homelessness; crime; drugs; knowledge about poverty and community; empowerment from social science research; public discourse and politics; assumptions on which American approaches to poverty are based,https://ocw.mit.edu/courses/urban-studies-and-planning/11-020-poverty-public-policy-and-controversy-fall-2003 +11.027,"City to City: Comparing, Researching and Writing about Cities ",Spring,2006,Copenhagen; Denmark; Boston; Massachusetts; United States; presentations; intereviews; research; writing; comparative research; editing; suburbs; waterfront; politics; transportation; transit; bicycles; culture; history,https://ocw.mit.edu/courses/urban-studies-and-planning/11-027-city-to-city-comparing-researching-and-writing-about-cities-spring-2006 +11.027,"City to City: Comparing, Researching and Writing about Cities: New Orleans",Spring,2011,"New Orleans, urban planning, recovery, Hurricane Katrina, field work, rebuild, disaster, cities, researching, writing",https://ocw.mit.edu/courses/urban-studies-and-planning/11-027-city-to-city-comparing-researching-and-writing-about-cities-new-orleans-spring-2011 +11.027,Global Cityscope - Disaster Planning and Post-Disaster Rebuilding and Recovery,Spring,2017,"disaster planning, rebuilding, recovery, cities, natural disasters, earthquakes, floods, tornados, hurricanes, blizzards, climate change, extreme weather, oil spills, disease, terrorism, emergency response, sustainability, mapping, emergency management, urban planning, urban policy, government, GIS, Chilé, New Orleans, Haiti",https://ocw.mit.edu/courses/urban-studies-and-planning/11-027-global-cityscope-disaster-planning-and-post-disaster-rebuilding-and-recovery-spring-2017 +11.122,Environment and Society,Fall,2002,,https://ocw.mit.edu/courses/urban-studies-and-planning/11-122-environment-and-society-fall-2002 +11.123,Big Plans and Mega-Urban Landscapes,Spring,2014,large projects; technology; politics; economics; culture; participatory planning; urban planning; regional lanscape; urban design; city planning; urbanism; hurricane sandy,https://ocw.mit.edu/courses/urban-studies-and-planning/11-123-big-plans-and-mega-urban-landscapes-spring-2014 +11.124,Introduction to Education: Looking Forward and Looking Back on Education ,Fall,2011,"education, teaching, learning, science, mathematics, education reform, education and media, history of education, simulations, games, digital divide, classroom, technology",https://ocw.mit.edu/courses/urban-studies-and-planning/11-124-introduction-to-education-looking-forward-and-looking-back-on-education-fall-2011 +11.125,Introduction to Education: Understanding and Evaluating Education,Spring,2009,classroom experiences; student-centered classroom activities; student-led classes; issues in schools and education; observing; pre-college math and science classes; design and implementation of curriculum; diversity; standards in math and science; student misconceptions; methods of instruction; the digital divide; teaching through different media; student assessment,https://ocw.mit.edu/courses/urban-studies-and-planning/11-125-introduction-to-education-understanding-and-evaluating-education-spring-2009 +11.128,Information Technology and the Labor Market,Spring,2005,information technology; labor; labor market; market forces; computers; information processing; technological limits; technology; interfaces; human interaction; cognition; brain; productivity,https://ocw.mit.edu/courses/urban-studies-and-planning/11-128-information-technology-and-the-labor-market-spring-2005 +11.129,Educational Theory and Practice I,Fall,2011,"education, teacher education, adolescent development, learning styles, lesson planning, assessment, classroom management, differentiated instruction, high school, classroom, curriculum, special education",https://ocw.mit.edu/courses/urban-studies-and-planning/11-129-educational-theory-and-practice-i-fall-2011 +11.131,Educational Theory and Practice III,Spring,2012,education psychology; theories of cognitive development; use of technology in classroom; motivation of students; social development; moral development; emotional development; information processing; differentiated instruction; standardized tests;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-131-educational-theory-and-practice-iii-spring-2012 +11.139,The City in Film,Spring,2015,"cities, urban, urban experience, urbanism, development, technology, bureaucracy, industrialization, immigration, national identity, race, class, gender, economic inequality, politics, conformity, urban anomie, planning, development, private property, displacement, sprawl, environmental degradation, suburbanization, metropolis, berlin symphony of a great city, the crowd, modern times, ladri di biciclette, bicycle thieves, the naked city, west side story, play time, midnight cowboy, blade runner, do the right thing, london, night on earth",https://ocw.mit.edu/courses/urban-studies-and-planning/11-139-the-city-in-film-spring-2015 +11.164,Human Rights: At Home and Abroad,Fall,2015,human rights; public international law; history; international relations; universality; cultural specificity; NGO's; duty-based; rights; social movements; law; international relations; sociology; political science; policy dilemmas; government regulation;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-164-human-rights-at-home-and-abroad-fall-2015 +11.165,Infrastructure and Energy Technology Challenges,Fall,2011,"Energy infrastructure, energy crisis, energy security, economics of public goods and infrastructure, Infrastructure development, infrastructure policy, infrastructure financing, energy system, food security, political economy of energy, long term development of energy, infrastructure financing, infrastructure delivery",https://ocw.mit.edu/courses/urban-studies-and-planning/11-165-infrastructure-and-energy-technology-challenges-fall-2011 +11.166,"Law, Social Movements, and Public Policy: Comparative and International Experience",Spring,2012,"law, social movements, public policy, comparative, international, Occupy Wall Street, gender, law, Arab Spring, social justice, human rights, feminism, women's rights, India, United States, labor, economics",https://ocw.mit.edu/courses/urban-studies-and-planning/11-166-law-social-movements-and-public-policy-comparative-and-international-experience-spring-2012 +11.167,Economic Development & Technical Capabilities,Spring,2004,"economic growth; technological capabilities; +world technological frontier; innovation; new products; production engineering; project execution; borrowed technology",https://ocw.mit.edu/courses/urban-studies-and-planning/11-167-economic-development-technical-capabilities-spring-2004 +11.201,Gateway: Planning Action,Fall,2002,"planners, challenges facing planners, professional development, planning literature, planning practice, urban planning",https://ocw.mit.edu/courses/urban-studies-and-planning/11-201-gateway-planning-action-fall-2002 +11.201,Gateway: Planning Action,Fall,2005,"planners; challenges facing planners; professional development; planning literature; planning practice; urban planning; negotiation; diversity; washington, dc; boston public housing; presentation; cooperation; ",https://ocw.mit.edu/courses/urban-studies-and-planning/11-201-gateway-planning-action-fall-2005 +11.201,Gateway: Planning Action,Fall,2007,planning in the public interest; theory and history of planning; real world cases; limits of planning; approaches to planning; professional communication; planning action; planned change; intervention; wise and fair intervention; city planning; analysis; teamwork; diversity; public interest; cities and societies; values and ethics,https://ocw.mit.edu/courses/urban-studies-and-planning/11-201-gateway-planning-action-fall-2007 +11.201,Gateway to the Profession of Planning,Fall,2010,"urban planning, profession, regional planning, development planning, city planning, methodology, technology, rational comprehensive, strategic incrementalist, top down planning, globalization, ",https://ocw.mit.edu/courses/urban-studies-and-planning/11-201-gateway-to-the-profession-of-planning-fall-2010 +11.202,Planning Economics,Fall,2010,"planning, economics, markets, zoning, global warming, urban studies",https://ocw.mit.edu/courses/urban-studies-and-planning/11-202-planning-economics-fall-2010 +11.203,Microeconomics,Fall,2010,"microeconomics, markets, economy, competition, economic development,supply and demand, oligopoly",https://ocw.mit.edu/courses/urban-studies-and-planning/11-203-microeconomics-fall-2010 +11.204,"Planning, Communications, and Digital Media",Fall,2004,planning; communication; digital; media; communications; visualization; the role of digital technologies; mobilizing communities; Athena; Element K; the ESRI virtual campus; Computer Resources Laboratory (CRL); Campus Wide Information Systems Support (CWIS); the GIS Laboratory; Rotch Library; software tools; Adobe Photoshop; Illustrator; ESRI's ArcView; Microsoft's Access; Macromedia's Dreamweaver,https://ocw.mit.edu/courses/urban-studies-and-planning/11-204-planning-communications-and-digital-media-fall-2004 +11.205,Introduction to Spatial Analysis,Fall,2019,"spatial analysis +GIS +ARCGIS +ESRI +geographic information systems +cartography +mapping +data visualization +geo-processing",https://ocw.mit.edu/courses/urban-studies-and-planning/11-205-introduction-to-spatial-analysis-fall-2019 +11.208,Introduction to Computers in Public Management II,IAP,2002,,https://ocw.mit.edu/courses/urban-studies-and-planning/11-208-introduction-to-computers-in-public-management-ii-january-iap-2002 +11.220,Quantitative Reasoning & Statistical Methods for Planners I,Spring,2009,statistics; statistical methods; quantitative reasoning; variability; numeracy; measurement; stata; logic; probability; inferential statistics; regression; census; bivariate; multivariate; normal curve; research design; decision tree; utility; planning; distribution; city planning; stata; scatterplot; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-220-quantitative-reasoning-statistical-methods-for-planners-i-spring-2009 +11.225,Argumentation and Communication,Fall,2006,effective communication; policy; public; persuasive; presentation skills; public speaking; analysis; policy analysis; writing; diagnostic; oral briefing; grammar; memo writing; memo structure; paragraph; revision; cogence; writing analysis,https://ocw.mit.edu/courses/urban-studies-and-planning/11-225-argumentation-and-communication-fall-2006 +11.229,Advanced Writing Seminar,Spring,2004,different types of writing; write; review; rewrite and present your point of view both orally and in written form; peer review; communicate complex ideas; in-class writing,https://ocw.mit.edu/courses/urban-studies-and-planning/11-229-advanced-writing-seminar-spring-2004 +11.233,Crafting Research Questions and Qualitative Methodology,Fall,2005,research; evaluation; methodology; research proposals; writing; fieldwork; interviewing; organizations; NGO's; government; urban planning; cities; redevelopment; craft and technique; PhD dissertation writing; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-233-crafting-research-questions-and-qualitative-methodology-fall-2005 +11.233,Research Design for Policy Analysis and Planning,Fall,2007,policy and planning research; theories; research questions; research proposals; research design; experimental designs; research ethics; sampling; surveys; questionnaires; interviewing; case studies; field research; participatory research; action research; unobtrusive measures,https://ocw.mit.edu/courses/urban-studies-and-planning/11-233-research-design-for-policy-analysis-and-planning-fall-2007 +11.235,Analyzing Projects and Organizations,Fall,2009,"analyzing projects, analyzing organizations, evaluation, organizational behavior, street-level bureaucrats, public management reforms, public management models, compliance, international organizations, ",https://ocw.mit.edu/courses/urban-studies-and-planning/11-235-analyzing-projects-and-organizations-fall-2009 +11.237,Practice of Participatory Action Research (PAR),Spring,2016,"participatory action research, urban planning, community, community collaboration, social change, partnerships, actionable knowledge, local, practical wisdom, public policy, applied social science",https://ocw.mit.edu/courses/urban-studies-and-planning/11-237-practice-of-participatory-action-research-par-spring-2016 +11.255,Negotiation and Dispute Resolution in the Public Sector,Spring,2021,"negotiation +dispute resolution +mutual gains +bargaining +consensus +coalition +facilitation +mediation +", +11.307,Beijing Urban Design Studio,Summer,2006,China; Beijing; urban planning; international relations; site planning; building use; services; zoning; urban improvement; reuse; green building; cultural understanding; architecture; tectonics; place making; space; Space Between; urban design; urban redesign; village; neighborhood; mixed-use public space; light and space; affordable design; green design; LEED; cultural understanding; path; place; space as activator;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-307-beijing-urban-design-studio-summer-2006 +11.307,Beijing Urban Design Studio,Summer,2008,Beijing; China; urban design; development; shougang; capital steel factory; de-industrialization; Olympic Games; site redevelopment; heritage site; environment; urban development; energy; site understanding; land use; design concept; bioremediation; transit; subway; light rail; urban planning; architecture; brownfield,https://ocw.mit.edu/courses/urban-studies-and-planning/11-307-beijing-urban-design-studio-summer-2008 +11.312,Engaging Community: Models and Methods for Designers and Planners,Spring,2020,"community +public engagement +civic design +democracy +collaboration +design principles +design briefs +blog posts",https://ocw.mit.edu/courses/urban-studies-and-planning/11-312-engaging-community-models-and-methods-for-designers-and-planners-spring-2020 +11.329,Social Theory and the City,Fall,2005,sociology; urbanism; identity; public space; private space; social theory; cities; regionalism; immigration; integration; craft; architecture; universa design; subways; gentrification; infrastructure; exclusion; racial politics; anthropology; biological determinism; center; perifery; photography; repression; protest; inclusion; modernism,https://ocw.mit.edu/courses/urban-studies-and-planning/11-329-social-theory-and-the-city-fall-2005 +11.333,Urban Design Seminar,Spring,2005,urban design; design competitions; past and future design trends; elderly housing; neighborhood design; housing and technology; workplace design; mediated space; public spaces and technology; schools and technology; cultural regeneration; arts districts; museums; interpretive pathways; waterfront design; natural systems; environmental sustainability; urban design education,https://ocw.mit.edu/courses/urban-studies-and-planning/11-333-urban-design-seminar-spring-2005 +11.333,Urban Design Seminar,Spring,2016,urban design; design competitions; past and future design trends; elderly housing; neighborhood design; housing and technology; workplace design; mediated space; public spaces and technology; schools and technology; cultural regeneration; arts districts; museums; interpretive pathways; waterfront design; natural systems; environmental sustainability; urban design education,https://ocw.mit.edu/courses/urban-studies-and-planning/11-333-urban-design-seminar-spring-2016 +11.360,Community Growth and Land Use Planning,Fall,2003,growth management; land use planning and change; planning; professional practice; participatory processes; client-based projects; GIS; community particpation; regional development,https://ocw.mit.edu/courses/urban-studies-and-planning/11-360-community-growth-and-land-use-planning-fall-2003 +11.360,Community Growth and Land Use Planning,Fall,2005,growth management; land use planning and change; planning; professional practice; participatory processes; client-based projects; GIS; community particpation; regional development,https://ocw.mit.edu/courses/urban-studies-and-planning/11-360-community-growth-and-land-use-planning-fall-2005 +11.360,Community Growth and Land Use Planning,Fall,2006,growth management; land use planning and change; planning; professional practice; participatory processes; client-based projects; GIS; community particpation; regional development,https://ocw.mit.edu/courses/urban-studies-and-planning/11-360-community-growth-and-land-use-planning-fall-2006 +11.360,Community Growth and Land Use Planning,Fall,2010,"land use, planning, practicum, community growth, GIS, Newton, MA, zoning, Needham Street,",https://ocw.mit.edu/courses/urban-studies-and-planning/11-360-community-growth-and-land-use-planning-fall-2010 +11.362,Environmental Management Practicum: Brownfield Redevelopment in the Urban Core,Fall,2006,redevelopment; brownfields; environmental contamination; communities; regulatory constraints; economics; community-based planning; stakeholder interviews; project assessment; Boston; Dorchester; transit; jobs; housing; physical design,https://ocw.mit.edu/courses/urban-studies-and-planning/11-362-environmental-management-practicum-brownfield-redevelopment-fall-2006 +11.363,Civil Society and Environment,Spring,2005,environmental governance; local roles; government; NGO's; social movement mobilization; collaboration; local and state government; pollution; toxins; legislature; governance;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-363-civil-society-and-the-environment-spring-2005 +11.364,International Environmental Negotiation,Fall,2010,sustainability; managing common resources; transboundary pollution control; economic development; social development; environmental resource protection; environmental protection standards; international negotiations; multi-lateral negotiations; representation; voting; issue linkage; balancing science and politics; Climate Change Convention,https://ocw.mit.edu/courses/urban-studies-and-planning/11-364-international-environmental-negotiation-fall-2010 +11.368,Environmental Justice,Fall,2004,environmental justice; environmental justice analysis; environmental policy and planning; inequity; injustice; politics; planning; global environment; sustainability; environment; green design; anthropology; ecology; biological hazards; Environmental Protection Agency,https://ocw.mit.edu/courses/urban-studies-and-planning/11-368-environmental-justice-fall-2004 +11.368,Environmental Justice Law and Policy,Fall,2019,environmental justice; environmental justice analysis; environmental policy and planning; inequity; injustice; politics; planning; global environment; sustainability; environment; green design; anthropology; ecology; biological hazards; Environmental Protection Agency,https://ocw.mit.edu/courses/urban-studies-and-planning/11-368-environmental-justice-law-and-policy-fall-2019 +11.370,Brownfields Policy and Practice,Fall,2005,"brownfields; environmental policy; environmental practice; planning; urban redevelopment; market forces; law and liability; environmental justice; under-served communities; environmental technology; risk assessment; economics; risk management; community development corporations; politics; Lynn, MA",https://ocw.mit.edu/courses/urban-studies-and-planning/11-370-brownfields-policy-and-practice-fall-2005 +11.373,"Science, Politics, and Environmental Policy",Fall,2004,environmental policy; sound science; legislative policy; media influence; public participation; policy process; regulatory science; public perception; judicial decision making; advocacy science; adaptive management,https://ocw.mit.edu/courses/urban-studies-and-planning/11-373-science-politics-and-environmental-policy-fall-2004 +11.375,Role of Science and Scientists in Collaborative Approaches to Environmental Policymaking,Spring,2006,science; scientists; society; collaborative approaches; joint fact finding; environment; policy making; decision making; ethics in science; values; environmental policy; collaborative learning; local and indigenous knowledge; adaptive management; adaptive governance; eco-system management; USGS; United States Geological Survey,https://ocw.mit.edu/courses/urban-studies-and-planning/11-375-role-of-science-and-scientists-in-collaborative-approaches-to-environmental-policymaking-spring-2006 +11.382,Water Diplomacy,Spring,2021,"freshwater +transboundary waters +water resources +resource allocation +water governance +mediation +negotiation +stakeholder engagement +roleplaying +IWRM +Nile +Brahmaputra +Indus +Jordan",https://ocw.mit.edu/courses/urban-studies-and-planning/11-382-water-diplomacy-spring-2021/ +11.384,Malaysia Sustainable Cities Practicum,Spring,2018,"Malaysia, practicum, developing country, sustainability, policy, sustainable development, , urbanization, environment, energy, cultural awareness, travel, fieldwork",https://ocw.mit.edu/courses/urban-studies-and-planning/11-384-malaysia-sustainable-cities-practicum-spring-2018 +11.401,"Introduction to Housing, Community and Economic Development",Fall,2003,public policy; private markets; housing; economic development; the local economy; neighborhood institutions; public and private interventions; housing and community development agendas; inner city and low income neighborhoods,https://ocw.mit.edu/courses/urban-studies-and-planning/11-401-introduction-to-housing-community-and-economic-development-fall-2003 +11.401,"Introduction to Housing, Community, and Economic Development",Fall,2015,public policy; private markets; housing; economic development; the local economy; neighborhood institutions; public and private interventions; housing and community development agendas; inner city and low income neighborhoods; poverty; development; urban growth; initiatives; planning; urban youth; education,https://ocw.mit.edu/courses/urban-studies-and-planning/11-401-introduction-to-housing-community-and-economic-development-fall-2015 +11.405,Just Money: Banking as if Society Mattered,Spring,2021,"banking +finance +social justice +environmental justice +debt +lending +profit +capital +mission",https://ocw.mit.edu/courses/urban-studies-and-planning/11-405-just-money-banking-as-if-society-mattered-spring-2021 +11.409,Institutions of Modern Capitalism,Spring,2020,"capitalism +political economy +states +market societies +cities +right-wing +globalism +governance +futurity +free markets +neoliberalism +postcolonialism",https://ocw.mit.edu/courses/urban-studies-and-planning/11-409-institutions-of-modern-capitalism-spring-2020 +11.421,Housing and Human Services,Spring,2005,housing; service industry; social services; privatization; housing models; community; government regulation; welfare; social services; local policies; department of social services;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-421-housing-and-human-services-spring-2005 +11.422,Downtown Management Organizations,Fall,2006,downtown management organizations; business improvement districts; transnational policy transfer; externalities; spatial externalities; political externalities; public space; security; local DMOs; BID's,https://ocw.mit.edu/courses/urban-studies-and-planning/11-422-downtown-management-organizations-fall-2006 +11.423,Information and Communication Technologies in Community Development,Spring,2004,"theory and practice; implementation; evaluation; comprehensive community information infrastructure; democratic involvement; community development projects; Lawrence Community Works, Inc.; planning problem in the City of Lawrence, Massachusetts; the digital divide; e-government; public participation; GIS; neighborhood information systems",https://ocw.mit.edu/courses/urban-studies-and-planning/11-423-information-and-communication-technologies-in-community-development-spring-2004 +11.437,Financing Economic Development,Fall,2016,financing tools; program models to support local economic development; private capital markets; financing sources; capital market imperfections; economic development; business accounting; financial statement analysis; federal economic development programs; public finance tools; funds; guarantee programs; venture capital funds; bank holding companies; community development loan funds; credit unions; micro enterprise funds; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-437-financing-economic-development-fall-2016 +11.438,Economic Development Planning,Spring,2020,"development +real estate +urban renewal +brownfields +tax incentives +zoning +racial equity +fiscal analysis +finance",https://ocw.mit.edu/courses/urban-studies-and-planning/11-438-economic-development-planning-spring-2020 +11.439,Revitalizing Urban Main Streets,Spring,2003,urban business district decline; revitalization challenges; planning tools used to understand and assess urban Main Streets; physical design and economic development perspectives; policies; interventions; investments; urban commercial revitalization,https://ocw.mit.edu/courses/urban-studies-and-planning/11-439-revitalizing-urban-main-streets-mission-hill-egleston-square-boston-spring-2003 +11.439,Revitalizing Urban Main Streets,Spring,2005,main streets; urban neighborhood decline; urban design; urban development; physical development tools; economic development tools; revitalization strategies; retail; market analysis; assets; capacity assessment; existing conditions analysis; streetscapes; neighborhood image and identity; zoning; business development; organization; capacity building; marketing,https://ocw.mit.edu/courses/urban-studies-and-planning/11-439-revitalizing-urban-main-streets-hyde-jackson-square-roslindale-square-boston-spring-2005 +11.439,Revitalizing Urban Main Streets,Spring,2009,"urban studies, new orleans, revitalization, urban planning, flood, disaster, Hurricane Katrina, urban main streets, urban, st. claude avenue, recovery",https://ocw.mit.edu/courses/urban-studies-and-planning/11-439-revitalizing-urban-main-streets-st-claude-avenue-new-orleans-spring-2009 +11.469,Urban Sociology in Theory and Practice,Spring,2009,urban sociology; social change; urbanism; urban growth; environmental sociology; human ecology; underclass; social inequality; political power; socio-spatial change; built environment; race and politics; political economy; urban villages; globalization; social justice; community; social networks; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-469-urban-sociology-in-theory-and-practice-spring-2009 +11.469,Urban Sociology in Theory and Practice,Spring,2016,urban sociology; social change; urbanism; urban growth; environmental sociology; human ecology; underclass; social inequality; political power; socio-spatial change; built environment; race and politics; political economy; urban villages; globalization; social justice; community; social networks; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-469-urban-sociology-in-theory-and-practice-spring-2016 +11.471,Targeting the Poor: Local Economic Development in Developing Countries,Spring,2010,"local economic development, poverty, developing countries, public-sector policies, employment, labor standards, environmental standards, political economy, poverty reduction, ",https://ocw.mit.edu/courses/urban-studies-and-planning/11-471-targeting-the-poor-local-economic-development-in-developing-countries-spring-2010 +11.479,Water and Sanitation Infrastructure Planning in Developing Countries,Spring,2005,planning; water supply; sanitation; developing countries; sanitation technologies; service pricing; alternative institutional structures; privatization; consumer demand; community participation; planning processes; environmental health; public health; water supply and sanitation planning; low-income households; case studies; policy memos; journals; environment; sustainability; pollution,https://ocw.mit.edu/courses/urban-studies-and-planning/11-479-water-and-sanitation-infrastructure-planning-in-developing-countries-spring-2005 +11.483,Housing and Land Use in Rapidly Urbanizing Regions,Fall,2011,"housing, land use, urban, urban land, property rights, economic growth, social justice, design, policy, public space,city, urban planning",https://ocw.mit.edu/courses/urban-studies-and-planning/11-483-housing-and-land-use-in-rapidly-urbanizing-regions-fall-2011 +11.484,Project Appraisal in Developing Countries,Spring,2005,project evaluation; politics; project cycle; development planning; financing; investment; cash flow; project evaluation; discounting; alternative investment; forecasting; inflation; risk management; risk analysis; markets; market distortin; opportunity cost; taxation; monopoly; social-distributive project appraisal; institutions; rational analysis,https://ocw.mit.edu/courses/urban-studies-and-planning/11-484-project-appraisal-in-developing-countries-spring-2005 +11.487,Urban Public Finance in Developing Countries,Fall,2004,urban services; fiscal capaciy; institutional capacity; financial analysis; public finance; trade-offs; developing countries; public goods; externalities;ethics in planning; economic development; fiscal health; revenues; expenditures; budget deficits; inflation; optimal taxation; optimal user fees; equity; incidence; equilibrium; property tax; tax reform; transfers; fiscal federalism; decentralization; private sector; international lending; microfinance; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-487-urban-public-finance-in-developing-countries-fall-2004 +11.488,Urban Development in Conflict Cities: Planning Challenges and Policy Innovations,Fall,2015,policy; government; conflict; development; war; ethnic conflict; religious conflict; violence; urban security; conflict zones; military; slums; gender; gangs; peace; reconstruction,https://ocw.mit.edu/courses/urban-studies-and-planning/11-488-urban-development-in-conflict-cities-planning-challenges-and-policy-innovations-fall-2015 +11.489,The Growth and Spatial Structure of Cities,Fall,2005,urban growth; city structure; urban history; economics; urban form and function; inter-urban dynamics; intra-urban dynamics; housing; employment; industrialization; globalization; politics; policy; growth management; de-industrialization; centralization; de-centralization; urban renewal; urban decline; suburbanization; sprawl,https://ocw.mit.edu/courses/urban-studies-and-planning/11-489-the-growth-and-spatial-structure-of-cities-fall-2005 +11.493,Legal Aspects of Property and Land Use,Fall,2005,property law; law; property; land use; property fairness; competition; public trust; trespass; fair use; easements; nuisance laws; zoning; environmental regulations; slavery; racial discrimination; gender discrimination; economic discrimination; takings; licenses; servitudes; contestation; covenants; common ownership; housing; apartheid; restitution; eviction; displacement; international development,https://ocw.mit.edu/courses/urban-studies-and-planning/11-493-legal-aspects-of-property-and-land-use-fall-2005 +11.501,Introduction to Technology and Cities,Fall,2002,"GIS, E-Government, information and communication technology, metropolitan information infrastructures, urban modeling and visualization, e-government, collaborative planning, and cyber communities, ICT, neighborhood, community, urban planning, IT",https://ocw.mit.edu/courses/urban-studies-and-planning/11-501-introduction-to-technology-and-cities-fall-2002 +11.520,A Workshop on Geographic Information Systems,Fall,2005,GIS; Spatial Database Management; Geographic Information Systems; ArcView; census; SQL; databases; urban planning; community planning; spatial analysis,https://ocw.mit.edu/courses/urban-studies-and-planning/11-520-a-workshop-on-geographic-information-systems-fall-2005 +11.521,Spatial Database Management and Advanced Geographic Information Systems,Spring,2003,"GIS, Spatial Database Management, Geographic Information Systems, ArcView, census, SQL, databases, urban planning, community planning, spatial analysis",https://ocw.mit.edu/courses/urban-studies-and-planning/11-521-spatial-database-management-and-advanced-geographic-information-systems-spring-2003 +11.522,Research Seminar on Urban Information Systems,Fall,2005,communication technologies; geographic information systems; multimedia technologies; institutional analysis; prototyping; urban planning tools; metropolitan information infrastructure; emergent technological infrastructure; representing urban knowledge; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-522-research-seminar-on-urban-information-systems-fall-2005 +11.601,Introduction to Environmental Policy and Planning,Fall,2016,"environmental policy, environmental planning, environment, policymaking, environmental ethics, ethics, environmental analysis, environmental impact assessment, sustainability analysis, energy planning, energy",https://ocw.mit.edu/courses/urban-studies-and-planning/11-601-introduction-to-environmental-policy-and-planning-fall-2016 +11.701,Introduction to Planning & Institutional Processes in Developing Countries,Fall,2003,"developing-country governments; international organizations; NGOs; economies of scale; diseconomies of scale; international development planning; externality; historical advances in developing and developing countries; interaction between planners and institutions; decentralization, provision of low-cost housing, new-town development",https://ocw.mit.edu/courses/urban-studies-and-planning/11-701-introduction-to-planning-institutional-processes-in-developing-countries-fall-2003 +11.701,Introduction to International Development Planning,Fall,2011,"international development; colonialism, imperialism, human rights, global, state, markets, NGOs, social movements, urban, rural, migration,trade, outsourcing, corruption, aid, poverty, global, security, conflict, state intervention, governance, law, privatization, participatory planning, decentralization, civil service, labor, post-conflict",https://ocw.mit.edu/courses/urban-studies-and-planning/11-701-introduction-to-international-development-planning-fall-2011 +11.800,Doctoral Research Seminar: Knowledge in the Public Arena,Spring,2007,research knowledge; public policy and practice; policymaking; framing; agenda-setting; knowledge diffusion; knowledge and influence networks; deliberation; decision-making; action; public values; political interests; ethical obligations,https://ocw.mit.edu/courses/urban-studies-and-planning/11-800-doctoral-research-seminar-knowledge-in-the-public-arena-spring-2007 +11.902,Advanced Urban Public Finance: Collective Action and Provisions of Local Public Goods,Spring,2009,"Advanced, Urban, Public Finance, Collective Action and Provisions of Local Public Goods, Machine, Technology, Globalization, Cities, Culturing Life, Economic Reform, Public Policy, Education, Social Movement, Current Crises, Nation, Economy, Social Science Analysis, Social Reform, Economic Data, Suburban, Neighborhood Composition, Infrastructure Development, Changing Federal Policies, Wealth Transfer, Social Groups, Data. ",https://ocw.mit.edu/courses/urban-studies-and-planning/11-902-advanced-urban-public-finance-collective-action-and-provisions-of-local-public-goods-spring-2009 +11.914,Planning Communication,Spring,2007,effective communication; policy; public; persuasive; presentation skills; public speaking; analysis; policy analysis; writing; diagnostic; oral briefing; grammar; memo writing; memo structure; paragraph; revision; cogence; writing analysis,https://ocw.mit.edu/courses/urban-studies-and-planning/11-914-planning-communication-spring-2007 +11.941,"Use of Joint Fact Finding in Science Intensive Policy Disputes, Part I",Fall,2003,ecosystems; natural resources management; environmental policy-making; science organizations; science; decision-making; science agencies; U.S. Geological Survey; environmental conflicts; Cape Wind controversy; disputes,https://ocw.mit.edu/courses/urban-studies-and-planning/11-941-use-of-joint-fact-finding-in-science-intensive-policy-disputes-part-i-fall-2003 +11.941,"Disaster, Vulnerability and Resilience",Spring,2005,natural disaster; environment; risk; risk management; vulnerability; resilience; global warming; rebuilding; risk reduction; nature; hazard; hazard reduction; disaster policy; agenda setting; community vulnerability; climate instability; public trust; reflective practice; resilient cities,https://ocw.mit.edu/courses/urban-studies-and-planning/11-941-disaster-vulnerability-and-resilience-spring-2005 +11.941,Urban Climate Adaptation,Spring,2011,"climate change, urban, urban vulnerability, adaptation, climate, urban planning, environment, resiliency, city, community",https://ocw.mit.edu/courses/urban-studies-and-planning/11-941-urban-climate-adaptation-spring-2011 +11.941,Learning by Comparison: First World/Third World Cities,Fall,2008,"urban studies, first third, world, comparison, city, globalization, multicultural, qualitative methods, quantitative methods, cultural analysis, urban, comparative case studies, policy",https://ocw.mit.edu/courses/urban-studies-and-planning/11-941-learning-by-comparison-first-world-third-world-cities-fall-2008 +11.942,"Use of Joint Fact Finding in Science Intensive Policy Disputes, Part II",Spring,2004,role-play simulation; policymakers; Cape Wind controversy; wind farms; windfarm; ecosystems; natural resources management; environmental policy-making; science organizations; science; decision-making; science agencies; National Environmental Policy Act; NEPA,https://ocw.mit.edu/courses/urban-studies-and-planning/11-942-use-of-joint-fact-finding-in-science-intensive-policy-disputes-part-ii-spring-2004 +11.942,Regional Energy-Environmental Economic Modeling,Spring,2007,regional energy environmental modeling; policies; microeconomics; economic modeling; economic modeling techniques; input-output; general equilibrium; linear programming; logit; regression; green accounting; spatial energy demand; spatial energy supply; energy forecast; regional energy prices; regional energy consumption; regional energy production,https://ocw.mit.edu/courses/urban-studies-and-planning/11-942-regional-energy-environmental-economic-modeling-spring-2007 +11.943,Special Studies in Urban Studies and Planning - The Cardener River Corridor Workshop,Fall,2001,"urban planning, landscape architecture, land use, environment, ecology, green architecture, sustainability, urban renewal, Cardener River, Catalunya, Spain, watershed management, road networks, infrastructure planning",https://ocw.mit.edu/courses/urban-studies-and-planning/11-943-special-studies-in-urban-studies-and-planning-the-cardener-river-corridor-workshop-fall-2001 +11.945,Springfield Studio,Spring,2004,"urban design; civic planning; community planning; interactive design; design studio; urban renewal; phasing; neighborhood revitalization; Springfield, Massacusetts; school design; community interaction; urban fabric",https://ocw.mit.edu/courses/urban-studies-and-planning/11-945-springfield-studio-spring-2004 +11.945,Springfield Studio,Fall,2005,"economic development; civic planning; community planning; urban renewal; phasing; neighborhood revitalization; Springfield, Massacusetts; community interaction; urban fabric; economic development; social renewal; entrepreneurship; economic analysis; small business development; politics;",https://ocw.mit.edu/courses/urban-studies-and-planning/11-945-springfield-studio-fall-2005 +11.945,Katrina Practicum,Spring,2006,new orleans; hurricane katrina; rebuilding after disaster; environmental planning; housing development; cooperative housing; land trusts; contamination; racial politics; urban politics; new orleans history; economic development; hazard mitigation; community development; community organizing,https://ocw.mit.edu/courses/urban-studies-and-planning/11-945-katrina-practicum-spring-2006 +11.946,Planning in Transition Economies for Growth and Equity,Spring,2004,"centrally planned economies; market-oriented economies; transition economies; the proper relationship between business, government, and the public interest; the possible synergies and tensions between economic growth and equity; +how economic transition has reshaped cities; +institution-building and re-building in different contexts; Eastern Europe; CIS; Asia",https://ocw.mit.edu/courses/urban-studies-and-planning/11-946-planning-in-transition-economies-for-growth-and-equity-spring-2004 +11.947,Sustainable Economic Development,Spring,2004,sustainable development; economic development; brownfields; neighborhoods; market analysis; industrial ecology; green development; economic base analysis; economic indicators; environmental risks; pollution; environmental health; environmental justice; green design; technology transfer; small business development; land use planning; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-947-sustainable-economic-development-spring-2004 +11.947,"New Century Cities: Real Estate, Digital Technology, and Design",Fall,2004,cities; developers; real estate; technology; digital; design; urban renewal; value creation; livability; social capital; rejuvenation; brokerage; urban planning; physical fabric; partnerships;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-947-new-century-cities-real-estate-digital-technology-and-design-fall-2004 +11.947,"Race, Immigration, and Planning",Spring,2005,race; United States; immigration; Brazil; citizenship; refugees; foreign nationals; nationalization; social services; Pernambuco; BRAMAS; Boston; racial enclaves; planning; government policies; politics; legislation; diversity,https://ocw.mit.edu/courses/urban-studies-and-planning/11-947-race-immigration-and-planning-spring-2005 +11.947,History and Theory of Historic Preservation,Spring,2007,"history; theory of historic preservation; traditions and practices; historic preservation movement; laws, public policies and cultural attitudes; building conservation and restoration; urban studies and planning; architecture;",https://ocw.mit.edu/courses/urban-studies-and-planning/11-947-history-and-theory-of-historic-preservation-spring-2007 +11.947,Imaging the City: The Place of Media in City Design and Development,Fall,1998,digital media; cities; urbanism; typology; form; space making; mythology; industrialization; urban history; political urbanism; London; Paris; Jerusalem; Johannesburg; New York; St. Petersburg; Barcelona; Vienna; Chicago; Berlin; Chandigarh; urban development; theories of place; utopianism; suburbs; suburban development;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-947-imaging-the-city-the-place-of-media-in-city-design-and-development-fall-1998 +11.947,Urbanization and Development,Spring,2009,urbanization; development; poverty; regional perspectives; urban planning; urban growth; 'glocal' politics; policy challenges; environmental sustainability; urban health; local governance; slums; violence in cities; socio-economic exclusion; metropolitan management; political economy; income inequality; social networks,https://ocw.mit.edu/courses/urban-studies-and-planning/11-947-urbanization-and-development-spring-2009 +11.948,"Power of Place: Media Technology, Youth, and City Design and Development",Spring,2001,urban environmental design; information technology; public education; city design; community development; inner-city neighborhoods; design and planning; grassroots efforts; neighborhood-based design; West Philadelphia; environmental and community history; planning; community and watershed; WPLP; school and community; interactive design,https://ocw.mit.edu/courses/urban-studies-and-planning/11-948-power-of-place-media-technology-youth-and-city-design-and-development-spring-2001 +11.948,The Politics of Reconstructing Iraq,Spring,2005,planning; politics; post-conflict reconstruction; Marshall Plan; reconstruction of Japan; Bosnia and Herzegovina; September 11 reconstruction; Iraq politics and society; post-war planning; building democracy; international organizations; Iraqi-Arab discourse; vision; stability; resistance; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-948-the-politics-of-reconstructing-iraq-spring-2005 +11.949,Cities in Conflict: Theory and Practice,Fall,2003,"why cities become torn; ethnic; religious; racial; nationalist; forms of identity that end up leading to conflict; violence; inequality; social injustice; solutions; social and political theories of the city and the nation; territorial levels of determination; regional or transnational; policymaking; democratic participation; citizenship; spatial, infrastructural, and technological interventions",https://ocw.mit.edu/courses/urban-studies-and-planning/11-949-cities-in-conflict-theory-and-practice-fall-2003 +11.949,City Visions: Past and Future,Spring,2004,"understandings of the city; social science literature and the field of urban design; literature on the history and theory of the city; larger territorial settings; nature, character, and functioning of cities; lives of inhabitants; theory and practice of design visions for the city; utopian; utopian and realized form; patterns of territorial “nestedness”; future prospects of cities",https://ocw.mit.edu/courses/urban-studies-and-planning/11-949-city-visions-past-and-future-spring-2004 +11.950,"Citizen Participation, Community Development, and Urban Governance in the Developing World",Spring,2007,"citizen participation; community development; urban governance; democracy, citizenship; case studies; globalization; civil society; community; decision making; latin america; south asia; africa",https://ocw.mit.edu/courses/urban-studies-and-planning/11-950-citizen-participation-community-development-and-urban-governance-in-the-developing-world-spring-2007 +11.952,Foshan China Workshop,Spring,2004,principles of sustainability; new downtown; recreation; transportation; ecology; economic development; community development; client; client work; municipality; planning consultants; revitalizing,https://ocw.mit.edu/courses/urban-studies-and-planning/11-952-foshan-china-workshop-spring-2004 +11.952,Gaoming Studio - China,Spring,2005,"watershed and natural ecosystem protection; economic development; recreation; transportation; tourism; urban design; Gaoming, China; hydrology; ecology; cultural planning; policy; sustainability; international development; regional planning",https://ocw.mit.edu/courses/urban-studies-and-planning/11-952-gaoming-studio-china-spring-2005 +11.953,Comparative Land Use and Transportation Planning,Spring,2006,land use; transportation; metropolitan growth; growth trends; urban development; planning institutions; travel behavior; influence of the built environment; forecasting; accessibility; travel demand; financial instruments; transportation networks; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-953-comparative-land-use-and-transportation-planning-spring-2006 +11.954,Community-Owned Enterprise and Civic Participation,Spring,2005,cooperatives; capitalism; participatory democracy; social capital; community governance; politics; economy; power dynamics; environmental sustainability; economic development; markets; institutions; community development; poverty; real estate; trusts; housing coops; banking; unions; pensions; investments; privatization; gainsharing; remittances,https://ocw.mit.edu/courses/urban-studies-and-planning/11-954-community-owned-enterprise-and-civic-participation-spring-2005 +11.957,Frameworks of Urban Governance,IAP,2007,physical development; urban sector; urban politics; immigration; education; economics; environment; public finance; environmental economics; research; causation; pigovian taxes; coasian; bost-benefit analysis; public economics; hedonic method; valuation; housing; health effects; dose-response; avoidance; household production function; locational equilibrium; policy; regulations; double dividend; climate change; development; markets; labor; workplace; safety; advertising; traffic,https://ocw.mit.edu/courses/urban-studies-and-planning/11-957-frameworks-of-urban-governance-january-iap-2007 +11.958,"Getting Things Implemented: Strategy, People, Performance, and Leadership",IAP,2009,implementing ideas; case studies; non-profit organizations; management; leadership; public value; political management; organizational change; vision; talent; collaboration; upwardly global; park plaza; mikhukhu; care usa; one church one child; managing the underground city; mayor purcell,https://ocw.mit.edu/courses/urban-studies-and-planning/11-958-getting-things-implemented-strategy-people-performance-and-leadership-january-iap-2009 +11.959,Reforming Natural Resources Governance: Failings of Scientific Rationalism and Alternatives for Building Common Ground ,IAP,2007,role-play simulation; policymakers; Cape Wind controversy; wind farms; windfarm; ecosystems; natural resources management; environmental policy-making; science organizations; science; decision-making; science agencies; National Environmental Policy Act; NEPA; science; scientists; society; collaborative approaches; joint fact finding; environment; policy making; decision making; ethics in science; values; environmental policy; collaborative learning; local and indigenous knowledge; adaptive management; adaptive governance; eco-system management; USGS; United States Geological Survey,https://ocw.mit.edu/courses/urban-studies-and-planning/11-959-reforming-natural-resources-governance-failings-of-scientific-rationalism-and-alternatives-for-building-common-ground-january-iap-2007 +11.965,Reflective Practice: An Approach for Expanding Your Learning Frontiers,IAP,2007,"reflective practice, Donald Schon, Chris Argyris, conceptual innovation, knowledge generation, espoused theory, theory in use, reflection, tacit knowledge, explicit knowledge, learning cycles, reframing, conceptual frameworks, critical moments, experimentation, speculation, modeling, dialogue, theories, action, thinking, virtual worlds, mental model, framing, justice, equality, power, assumptions, intractable controversies",https://ocw.mit.edu/courses/urban-studies-and-planning/11-965-reflective-practice-an-approach-for-expanding-your-learning-frontiers-january-iap-2007 +11.967,Special Studies in Urban Studies and Planning: Economic Development Planning Skills,IAP,2007,"local development; economic development; conditions; issues; opportunites; formulating economic development plans; Hartford, VT; economic development plans; urban main streets; development planning",https://ocw.mit.edu/courses/urban-studies-and-planning/11-967-special-studies-in-urban-studies-and-planning-economic-development-planning-skills-january-iap-2007 +11.969,Workshop on Deliberative Democracy and Dispute Resolution,Summer,2005,deliberative democracy; dispute resolution; conflict management; decision making; munipalities; metropolitan areas; policy making; consensus building; implementation of agreements; negotiated settlements; negotiated agreements; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-969-workshop-on-deliberative-democracy-and-dispute-resolution-summer-2005 +11.975,Feeding Cities in the Global South: Challenges and Opportunities for Action in Cartagena,Fall,2009,"urban markets, food policy, Cartagena, Colombia, Bazurto Food Market, food chain supply, logistics, mobility, economic development, Latin America",https://ocw.mit.edu/courses/urban-studies-and-planning/11-975-feeding-cities-in-the-global-south-challenges-and-opportunities-for-action-in-cartagena-fall-2009 +12.000,Solving Complex Problems,Fall,2003,,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-000-solving-complex-problems-fall-2003 +12.000,Solving Complex Problems,Fall,2009,carbon sequestration; atmospheric carbon dioxide; greenhouse gas emissions; carbon capture; carbon transport; integrated global solution,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-000-solving-complex-problems-fall-2009 +12.001,Introduction to Geology,Fall,2013,"geology +rock +mineral +igneous +sedimentary +metamorphic +paleontology +rock deformation +rheology +volcano +plate tectonics +earthquakes +field trip +topography + + +",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-001-introduction-to-geology-fall-2013 +12.002,Physics and Chemistry of the Terrestrial Planets,Fall,2008,"Terrestrial Planets, Disk Accretion, Planetary Formation, Geochronology, Solar System, Elastic stress and strain, Seismic Waves and wave equation, Seismology, Heat, Diffusion, Geomagnetism, Paleomagnetism, Plate Tectonics, Topography, Isostasy, Gravity Anomalies",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-002-physics-and-chemistry-of-the-terrestrial-planets-fall-2008 +12.003,"Atmosphere, Ocean and Climate Dynamics",Fall,2008,"atmosphere, ocean, climate, Greenhouse effect, Convection in water, Convection in air, Potential temperature, Inertial motions, thermal wind, vertical structure of the atmosphere, meridional structure of the atmosphere, radial inflow experiment, equations of motion for non-rotating fluids, equations of motion for rotating fluids",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-003-atmosphere-ocean-and-climate-dynamics-fall-2008 +12.005,"Applications of Continuum Mechanics to Earth, Atmospheric, and Planetary Sciences.",Spring,2006,Geodynamics; crust; mantle; rheological descriptions; brittle deformation; elastic deformation; viscous deformation; viscoelastic deformation; plastic deformation; nonlinear fluids; stress; strain,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-005-applications-of-continuum-mechanics-to-earth-atmospheric-and-planetary-sciences-spring-2006 +12.007,Geobiology,Spring,2013,carbon cycle; isotopic analysis; geobiochemistry; climate; Snowball earth; mesozoic; proterozoic; mass extinctions; paleoclimate; antiquity of life; carbon dating; origin of life; phylogenic trees,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-007-geobiology-spring-2013 +12.010,Computational Methods of Scientific Programming,Fall,2011,FORTRAN; C; C++; Matlab; Mathematica; program design; algorithm development and verification; visualization techniques; numerical analysis; dissemination,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-010-computational-methods-of-scientific-programming-fall-2011 +12.085,Seminar in Environmental Science,Spring,2008,environmental science; geoengineering; geology; geochemistry; nuclear waste disposal; planetary exploration; coastal land-use policy; international regulations for protecting the open-ocean environment; environmental change; natural hazards,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-085-seminar-in-environmental-science-spring-2008 +12.086,Modeling Environmental Complexity,Fall,2014,"river networks, drainage basins, anomalous diffusion, percolation theory, fractals, universality, ecological dynamics, metabolic scaling, food webs, biogeochemical cycles",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-086-modeling-environmental-complexity-fall-2014 +12.090,"Special Topics in Earth, Atmospheric, and Planetary Sciences: The Environment of the Earth's Surface",Spring,2007,"soils, soil erosion, precipitation, streams, lakes, groundwater flow, glaciers, geology, climatology, hydrology",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-090-special-topics-in-earth-atmospheric-and-planetary-sciences-the-environment-of-the-earth-s-surface-spring-2007 +12.090,"Special Topics: An Introduction to Fluid Motions, Sediment Transport, and Current-generated Sedimentary Structures",Fall,2006,"fluid motions, sediment transport, sedimentary structures, viscosity, diffusion, turbulence, boundary layers, laminar flow, stress, shear stress, oscillatory-flow, combined-flow, wind ripples, Eolian dunes, cross stratification, planar lamination ",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-090-special-topics-an-introduction-to-fluid-motions-sediment-transport-and-current-generated-sedimentary-structures-fall-2006 +12.091,"Trace Element Analysis of Geological, Biological & Environmental Materials by Neutron Activation Analysis:an Exposure",IAP,2005,Neutron Activation Analysis; Gamma Detection; Instrumentation Principles; Trace Element Analysis,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-091-trace-element-analysis-of-geological-biological-environmental-materials-by-neutron-activation-analysis-an-exposure-january-iap-2005 +12.091,Medical Geology/Geochemistry: An Exposure,IAP,2006,"geology, geochemistry, environmental geochemistry, geomedicine",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-091-medical-geology-geochemistry-an-exposure-january-iap-2006 +12.091,Radon Research in Multidisciplines: A Review,IAP,2007,"radon, radon physics, radiation biology, radioactivity, alpha, beta and gamma radiation, radon characteristics, radon decay",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-091-radon-research-in-multidisciplines-a-review-january-iap-2007 +12.091,"Basics of Impact Cratering & Geological, Geophysical, Geochemical, Environmental Studies of some Impact Craters of the Earth",IAP,2008,"terrestrial impact cratering, terrestrial impact structures, +Argon dating, ICPMS, X-ray diffraction, INAA,environmental geochemistry",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-091-basics-of-impact-cratering-geological-geophysical-geochemical-environmental-studies-of-some-impact-craters-of-the-earth-january-iap-2008 +12.091,"Basics of analysis with antineutrinos from heat producing elements – K, U, Th in the Earth",IAP,2010,"antineutrinos, antineutrino detectors, antineutrino analysis, antineutrino radiations, radiogenic heat , terrestrial heat flow, Bulk Silicate Earth (BSE) model ",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-091-basics-of-analysis-with-antineutrinos-from-heat-producing-elements-k-u-th-in-the-earth-january-iap-2010 +12.097,Chemical Investigations of Boston Harbor,IAP,2006,"chemical sampling and analysis; coastal research; environmental analysis; nutrient analysis; contaminant analysis; data logging micro-processor; water-depth sensor; +ocean Science; deep ocean circulation; carbon cycles; erosion; global warming; energy; scientific policy; scientific decision-making",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-097-chemical-investigations-of-boston-harbor-january-iap-2006 +12.102,Environmental Earth Science,Fall,2005,geochemistry; volcanic eruptions; earthquakes; environment; geologic hazards; earth resource development; environmental earth science; geologic record,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-102-environmental-earth-science-fall-2005 +12.103,Strange Bedfellows: Science and Environmental Policy,Fall,2005,environmental policy; policymaking; environmental controversy; global warming; biodiversity loss; nuclear waste disposal; science writing,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-103-strange-bedfellows-science-and-environmental-policy-fall-2005 +12.103,Science and Policy of Natural Hazards,Spring,2010,"natural hazards, hazard risk assessment, earthquake, hurricane, tornado, volcano, forecasting, public policy, building codes, insurance regulation, evacuation, reconstruction",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-103-science-and-policy-of-natural-hazards-spring-2010 +12.108,Structure of Earth Materials,Fall,2004,,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-108-structure-of-earth-materials-fall-2004 +12.109,Petrology,Fall,2005,,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-109-petrology-fall-2005 +12.110,Sedimentary Geology,Fall,2004,"Sediment Transport, Sediment Production, Bedforms, Alluvial Fans, Alluvial Rivers, Deltas, Eolian Systems, Shorelines, Nearshore, Continental Shelf, Continental Slope",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-110-sedimentary-geology-fall-2004 +12.110,Sedimentary Geology,Spring,2007,"sediments, sedimentary rocks, siliciclastic rocks, sediment transport, sandstones, conglomerates, shales, carbonate rocks, cherts, evaporites, paleontology, depositional environments, stratigraphy, sedimentary basins, fossil fuels, coal, petroleum.",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-110-sedimentary-geology-spring-2007 +12.113,Structural Geology,Fall,2005,rock deformation; faults; structural geology; folds; superposed deformations; regional geology; tectonics; structural analysis; geologic maps; interpretive cross sections ,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-113-structural-geology-fall-2005 +12.114,Field Geology I,Fall,2005,geologic mapping; geologic mapping techniques; field geology; science writing; rock identification; rock classification; regional geology; North American geology; regional tectonics; geologic maps; GIS; digital mapping; ESRI Arc Applications; iPAQ handheld computers; field manual; Western US geology; lithologic and structural symbology,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-114-field-geology-i-fall-2005 +12.119,Analytical Techniques for Studying Environmental and Geologic Samples ,Spring,2011,"Anthropogenic Geochemistry, Isotopic Geochemistry, Error Analysis, Electron Microprobe, +Neutron Activation Analysis, +Atomic Absorption, +Inductively Coupled Plasma Mass Spectrometry, +Thermal Ionization Mass Spectrometry",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-119-analytical-techniques-for-studying-environmental-and-geologic-samples-spring-2011 +12.141,Electron Microprobe Analysis,IAP,2012,"electron microprobe, x-ray microanalysis, x-ray imaging, ZAF matrix corrections, wavelength, energy dispersive spectrometry, scanning backscattered electron, secondary electron, cathodoluminescence",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-141-electron-microprobe-analysis-january-iap-2012 +12.158,Molecular Biogeochemistry,Fall,2011,"molecular biogeochemistry, biosynthesis, phylogenetic origins, acetogenic lipids, acylic isoprenoids, molecular biosugnatures, steroids, mass spectrometry",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-158-molecular-biogeochemistry-fall-2011 +12.163,Surface Processes and Landscape Evolution,Fall,2004,"geomorphic processes; climate; tectonics; surface processes; fluvial processes; hillslope processes; glacial processes; weathering; soil formation; runoff; erosion; slope stability; sediment transport; river morphology; glacial erosion; climatic forcings; tectonic forcings; glaciation; sea level change; uplift, +subsidence; post-glacial isostatic rebound",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-163-surface-processes-and-landscape-evolution-fall-2004 +12.201,Essentials of Geophysics,Fall,2004,"Earth, Solar System, Geophysics, Gravitational Field, Magnetic Field, Seismology, Geodynamics",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-201-essentials-of-geophysics-fall-2004 +12.215,Modern Navigation,Fall,2006,"Global Positioning System, GPScivilian restricted accuracy requirement, basic principles, science, mathematics",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-215-modern-navigation-fall-2006 +12.307,Weather and Climate Laboratory,Spring,2009,"Rotation stiffens fluids, Convection, Radial inflow, Parabolic table, inertial Circles, Taylor Columns, Thermal Wind and Hadley Circulation, Slope of a frontal surface, Ekman layers, Perrot's bathtub experiment, Atmospheric General circulation, Stress-driven circulation and Ekman layers, Ocean gyres, Thermohaline Circulation, Geostrophic/Ageostrophic Flow, Mass and Wind, Hydrostatic balance, Baroclinic instability, Hurricane Gustav,",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-307-weather-and-climate-laboratory-spring-2009 +12.333,Atmospheric and Ocean Circulations,Spring,2004,atmospheric and oceanic phenomena; observations; theoretical interpretations; monsoons; El Niño; planetary waves; atmospheric synoptic eddies and fronts; gulf stream rings; hurricanes; surface and internal gravity waves; tides,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-333-atmospheric-and-ocean-circulations-spring-2004 +12.335,Experimental Atmospheric Chemistry,Fall,2014,atmospheric chemistry; climate change; air pollution; urban environment; biogeochemical cycles; gases; aerosols; precipitation; photochemistry,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-335-experimental-atmospheric-chemistry-fall-2014 +12.340,Global Warming Science,Spring,2012,climate change; climate model; solar variability; orbital mechanics; greenhouse gases; atmospheric circulation; oceanic circulation; volcanic aerosols; soil aerosols; precipitation; vegetation,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-340-global-warming-science-spring-2012 +12.400,The Solar System,Spring,2006,solar system; astronomy; planets; sun; planetary orbits; rings; planetary formation; meteorites; asteroids; comets; planetary surfaces; cratering; planetary interiors; planetary atmospheres; life in the solar system; formation of the solar system; Mars; Pluto,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-400-the-solar-system-spring-2006 +12.409,Hands-On Astronomy: Observing Stars and Planets,Spring,2002,,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-409-hands-on-astronomy-observing-stars-and-planets-spring-2002 +12.425,Extrasolar Planets: Physics and Detection Techniques,Fall,2007,"extrasolar planets, planet atmospheres, planet interiors, transiting planets, planet albedos, astrometry, gravitational lensing, habitable planets ",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-425-extrasolar-planets-physics-and-detection-techniques-fall-2007 +12.445,"Oral Communication in the Earth, Atmospheric, and Planetary Sciences",Fall,2010,"oral presentation, oral communication, self-evaluation, slide preparation",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-445-oral-communication-in-the-earth-atmospheric-and-planetary-sciences-fall-2010 +12.453,Crosby Lectures in Geology: History of Africa,Fall,2005,"African continent, Panafrican continental collisions, Afro-Arabian plate, African plate, Cambro-Ordovician times, geodynamic evolution",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-453-crosby-lectures-in-geology-history-of-africa-fall-2005 +12.472,Building Earth-like Planets: From Nebular Gas to Ocean Worlds,Fall,2008,"planets, planetary formation, nebulas, planetesimals, embryos, dust accretion, atmospheric degassing, surface water, magma ocean processes, volatiles, habitability, biosignatures",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-472-building-earth-like-planets-from-nebular-gas-to-ocean-worlds-fall-2008 +12.479,Trace-Element Geochemistry,Spring,2013,"trace element geochemistry, igneous rocks, mineral, melt, partition coefficient, simple melt-solid systems",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-479-trace-element-geochemistry-spring-2013 +12.480,Thermodynamics for Geoscientists,Fall,2006,Principles of thermodynamics; formation and modification of igneous and metamorphic rocks; phase equilibria of homogeneous and heterogeneous systems; thermodynamic modelling of non-ideal crystalline solutions; tectonic environments;crust; mantle.,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-480-thermodynamics-for-geoscientists-fall-2006 +12.490,Advanced Igneous Petrology,Fall,2005,"petrology; igneous petrology; +rock forming minerals; earth's crust; upper mantle rocks; tectonic environment; geochemistry; rock forming processes; dynamics of crust and mantle melting; Mid-ocean ridge basalts; MORB; Undersaturated mafic magmas; Magma mixing; calc-alkaline plutonic rocks; Stillwater layered igneous intrusion; Komatiites; Meteorites",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-490-advanced-igneous-petrology-fall-2005 +12.491,Advanced Seminar in Geology and Geochemistry: Organic Geochemistry,Fall,2005,"organic geochemistry; formation of organic matter; geobiology;biomarkers +biomarker; physiology; phylogeny; preservation potential; diagenesis; kerogen formation; hydrocarbon generation; +paleoreconstruction",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-491-advanced-seminar-in-geology-and-geochemistry-organic-geochemistry-fall-2005 +12.491,Biogeochemistry of Sulfur,Fall,2007,"biogeochemistry, astrobiology, sulfur isotope, sulfur cycles, organic diagenesis, sulfur isotope biosignatures, sulfidic oceans, sulfur metabolisms",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-491-biogeochemistry-of-sulfur-fall-2007 +12.491,Non-conventional Light Stable Isotope Geochemistry,Spring,2012,"isotope gechemistry, kinetic isotope effect, mass-spectrometery analysis, mass-spectrometer, photochemistry, clumped isotope",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-491-non-conventional-light-stable-isotope-geochemistry-spring-2012 +12.510,Introduction to Seismology,Spring,2010,seismology; seismic waves; elastic wave; surface wave;synthetic seismograms; WKBJ; Ray theory; seismicity; earthquake locations.,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-510-introduction-to-seismology-spring-2010 +12.517,Dynamics of Complex Systems: Biological and environmental coevolution preceding the Cambrian explosion,Spring,2005,"evolution; fossils;Cambrian explosion; global biogeochemical cycles; geobiology; coevolution; quantitative theory; organic geochemistry; evolutionary biology; marine animals +",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-517-dynamics-of-complex-systems-biological-and-environmental-coevolution-preceding-the-cambrian-explosion-spring-2005 +12.517,Dynamics of Complex Systems: Ecological Theory,Spring,2001,Ecological theory; collective dynamics; mathematical ecology; ecology; artificial ecology; computational models,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-517-dynamics-of-complex-systems-ecological-theory-spring-2001 +12.517,Dynamics of Complex Systems: Complexity in Ecology,Spring,2000,complex systems; length and time scales; Ecology biodiversity; ecosystem stability; environmental fluctuations; speciation; extinction,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-517-dynamics-of-complex-systems-complexity-in-ecology-spring-2000 +12.520,Geodynamics,Fall,2006,Geodynamics; crust; mantle; rheological descriptions; brittle deformation; elastic deformation; viscous deformation; viscoelastic deformation; plastic deformation; nonlinear fluids; stress; strain,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-520-geodynamics-fall-2006 +12.524,Mechanical Properties of Rocks,Fall,2005,mechanical behavior of rocks; rock deformation; plastic deformation; minerals; rock mechanics; brittle fracture; pressure-solution processes; field evidence; experimental structural geology,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-524-mechanical-properties-of-rocks-fall-2005 +12.540,Principles of the Global Positioning System,Spring,2012,"Global Positioning System (GPS), kinematic positioning, geodetic systems, satellite orbital motions",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-540-principles-of-the-global-positioning-system-spring-2012 +12.570,Structure and dynamics of the CMB region,Spring,2004,"Core Mantle Boundary (CMB); deep Earth; lower mantle; outer core; integrated seismological, mineral physics and geodynamical perspectives; CMB detection and topography; D'' anisotropy; seismic velocity anomalies (e.g., ultra-low velocity zones); temperature; chemical reactions; phase relations; mineral fabrications",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-570-structure-and-dynamics-of-the-cmb-region-spring-2004 +12.570,Seminar in Geophysics: Thermal and Chemical Evolution of the Earth,Spring,2005,"structure, composition, and evolution of Earth's deep interior; Seismic imaging; geodynamical modeling; nobel gas analyses; mantle convection; geophysics; earth science",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-570-seminar-in-geophysics-thermal-and-chemical-evolution-of-the-earth-spring-2005 +12.570,Seminar in Geophysics: Mantle Convection,Spring,1998,mantle convection; geophysics; geodynamics; mantle; earth; geochemistry; seismology; stratification; geodynamical modeling; tomography; seismic imaging,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-570-seminar-in-geophysics-mantle-convection-spring-1998 +12.571,Near-Surface Geophysical Imaging,Fall,2009,"seismic imaging, seismic data processing, refraction, waveform, tomography, traveltime, wavefield migration, Common-Focus Point (CFP)",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-571-near-surface-geophysical-imaging-fall-2009 +12.581,Phase Transitions in the Earth's Interior,Spring,2005,"Earth, mantle, phase transitions, transition zone, post-spinel transition, seismic discontinuities, D'' discontinuity, D'' anisotropy, post-perovskite transition and spin transition",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-581-phase-transitions-in-the-earth-s-interior-spring-2005 +12.740,Paleoceanography,Spring,2008,"Oxygen Isotope, Coral Reefs, Climate Change, Paleoceanography, Paleoclimatology, Paleothermometry, Atmospheric Carbon Dioxide, Ocean Chemistry, Salinity",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-740-paleoceanography-spring-2008 +12.742,Marine Chemistry,Fall,2006,"chemical oceanography, biogeochemical cycling, water column processes, ocean particles, seawater composition, ocean particle transport, carbon, oxygen, nitrogen, phosphorus, sulfur, carbon dioxide, sediment chemistry",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-742-marine-chemistry-fall-2006 +12.744,Marine Isotope Chemistry,Fall,2012,oceanography; chemical oceanography; isotope geochemistry; geochemistry; marine science; isotopes; radiocarbon; radioactive decay; radiometric dating; mass spectrometry; isotope fractionation; fractionation; water column; whoi; woods hole; earth science; atmosphere; ocean;,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-744-marine-isotope-chemistry-fall-2012 +12.746,Marine Organic Geochemistry,Spring,2005,Marine; organic geochemistry; distribution; organic carbon; marine sediments; global; molecular-level perspective; mineralization; preservation; OC; major reservoirs; microbial recycling pathways; degradation; preservation; anoxia; OC burial; dissolved; sedimentary organic matter; biological markers; oceanography. ,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-746-marine-organic-geochemistry-spring-2005 +12.753,Geodynamics Seminar,Spring,2006,"ice-related research, planetary ice, climate records: polar and tropical ice cores, Snowball Earth, subglacial volcanoes, ice rheology, ice sheet modeling, ice microkinetics, glacial erosion and tectonics, subglacial life and polar remote sensing, iceland, glacial geology, mid-atlantic ridge, present and past ice-sheets, glaciers, sea-ice, extraterrestrial planetary ice",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-753-geodynamics-seminar-spring-2006 +12.753,Geodynamics Seminar,Spring,2005,"meteorites, geology of other planets, thermodynamics and tracers of living organisms, and theories of formation and evolution of planets, including early atmosphere and oceans, Ontario, geodynamics",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-753-geodynamics-seminar-spring-2005 +12.753,Geodynamics Seminar,Spring,2001,"Iceland plume, Northern Mid-Atlantic Ridge, Galapagos plume, Galapagos Spreading Center, Cobb Plume, Juan de Fuca Ridge, plume ridge interaction, mantle, crust, water column processes, new crust, hydrothermal flow, seafloor biological communities",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-753-geodynamics-seminar-spring-2001 +12.757,Science and Communication,Spring,2005,Woods Hole Oceanographic Institute;thesis; research; science; social process; written; oral; communication; scientific knowledge; progress; change; theory; observation; method; physical sciences; life sciences; reward system; publication.,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-757-science-and-communication-spring-2005 +12.759,Marine Chemistry Seminar,Spring,2006,Marine Chemistry; Carbon; Nitrogen; Phosphorus;Fluxes; Water Column; Gas Exchange; Sedimentation; Hydrothermal Vents; Global Biogeochemical Cycles; Oxidation; Reduction,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-759-marine-chemistry-seminar-spring-2006 +12.800,Fluid Dynamics of the Atmosphere and Ocean,Fall,2004,meteorology; climate; oceanography; Eulerian and Lagrangian kinematics; mass; momentum; energy; Vorticity; divergence Scaling; geostrophic approximation; Ekman layers; Vortex motion,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-800-fluid-dynamics-of-the-atmosphere-and-ocean-fall-2004 +12.802,Wave Motions in the Ocean and Atmosphere,Spring,2004,"geophysical wave motion; rotating, stratified, and rotating-stratified fluids; general wave concepts; phase; group velocity; dynamics and kinematics of gravity waves; dispersion; energy flux; initial value problems; internal and inertial waves; Kelvin, Poincare, and Rossby waves; homogeneous and stratified fluids; Laplace tidal equations; equatorial waves; resonant interactions; potential vorticity; wave-mean flow interactions; instability.",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-802-wave-motions-in-the-ocean-and-atmosphere-spring-2004 +12.802,Wave Motion in the Ocean and the Atmosphere,Spring,2008,"ocean, atmosphere, wave motion, wave kinematics, gravity waves, Kelvin waves, Rossby waves, wave equation, Laplace’s tidal equations, wave-mean flow interactions",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-802-wave-motion-in-the-ocean-and-the-atmosphere-spring-2008 +12.803,Quasi-Balanced Circulations in Oceans and Atmospheres,Fall,2009,"hydrostatic balance, geostrophic balance, barotropic vorticity equation,shallow water equations, geostrophic adjustment, stratified atmospheres and oceans, thermodynamics, quasi-geostrophic equations, pseudo potential vorticity, Rayleigh, Fjortoft and Chanrey-Stern theorems, frontogenesis, semigeostrophy. ",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-803-quasi-balanced-circulations-in-oceans-and-atmospheres-fall-2009 +12.804,Large-scale Flow Dynamics Lab,Fall,2009,"geostrophic adjustment, potential vorticity, Rossby waves, Frontal Waves, baroclinic instability, isolated vortices, ageostrophic motion, flow dynamics",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-804-large-scale-flow-dynamics-lab-fall-2009 +12.808,Introduction to Observational Physical Oceanography,Fall,2004,Physical description of the sea; physical properties of seawater; methods; measurements; wind-driven ocean circulation; abyssal ocean circualtion; boundary processes; wave motions,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-808-introduction-to-observational-physical-oceanography-fall-2004 +12.810,Dynamics of the Atmosphere,Spring,2008,"atmosphere, meteorology, climate, Hadley circulation, general circulation, atmospheric waves, Rossby waves, stationary waves, atmospheric turbulence ",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-810-dynamics-of-the-atmosphere-spring-2008 +12.811,Tropical Meteorology,Spring,2011,Radiative-convective equilibrium; the Hadley and walker circulation; monsoons; tropical boundary layers; intraseasonal oscillations; equatorial waves; El Niño/Southern Oscillation; easterly waves; tropical cyclones.,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-811-tropical-meteorology-spring-2011 +12.812,General Circulation of the Earth's Atmosphere,Fall,2005,"atmosphere, Eliassen-Palm Theorem, Eliassen-Palm flux, eddy fluxes, angular momentum, kinetic energy, potential energy, water vapor, hydrological cycle, energy cycle, heat budget, radiation budget, spectral analysis, zonal mean circulations, mean meridional circulation ",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-812-general-circulation-of-the-earth-s-atmosphere-fall-2005 +12.815,Atmospheric Radiation,Fall,2006,atmospheric radiation;remote sensing; atmospheric physics; computer codes; Radiative transfer equatio; emission and scattering; spectroscopy; Mie theory; numerical solutions; inverse problems; atmospheric temperature; atmospheric composition,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-815-atmospheric-radiation-fall-2006 +12.815,Atmospheric Radiation,Fall,2008,atmospheric radiation;remote sensing; atmospheric physics; computer codes; Radiative transfer equatio; emission and scattering; spectroscopy; Mie theory; numerical solutions; inverse problems; atmospheric temperature; atmospheric composition,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-815-atmospheric-radiation-fall-2008 +12.820,Turbulence in the Ocean and Atmosphere,Spring,2006,"phenomena, theory, and modeling of turbulence; oceans; atmosphere; fine structure; planetary scale motions; homogeneous flows;geostrophic motions;shear flows; convection; boundary layers; stably stratified flows; internal waves.",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-820-turbulence-in-the-ocean-and-atmosphere-spring-2006 +12.820,Turbulence and Nonlinear Waves in the Ocean and Atmosphere,Spring,2007,"phenomena, theory, and modeling of turbulence; oceans; atmosphere; fine structure; planetary scale motions; homogeneous flows;geostrophic motions;shear flows; convection; boundary layers; stably stratified flows; internal waves.",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-820-turbulence-in-the-ocean-and-atmosphere-spring-2007 +12.842,Past and Present Climate,Fall,2008,"climate, climate change, proxies, ice cores, primordial atmosphere, ozone chemistry, carbon and oxygen cycles, heat and water budgets, aerosols, water vapor, clouds, ocean circulation, orbital variations, volcanism, plate tectonics, solar system, solar variability, climate model, energy balance",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-842-past-and-present-climate-fall-2008 +12.864,Inference from Data and Models,Spring,2005,kinematical and dynamical models; Basic statistics; linear algebra; inverse methods; singular value decompositions; control theory; sequential estimation; Kalman filters; smoothing algorithms; adjoint/Pontryagin principle methods; model testing; stationary processes; Fourier methods; z-transforms; sampling theorems; spectra; multi-taper methods; coherences; filtering; quantitative combinations of models,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-864-inference-from-data-and-models-spring-2005 +12.950,Atmospheric and Oceanic Modeling,Spring,2004,numerical methods; formulation; parameterizations; models of the circulation of the atmosphere and ocean; numerics underlying a hierarchy of models; simple GFD models;high-end GCMs; cean GCMs; parameterization of geostrophic eddies; mixing; surface and bottom boundary layers; atmosphere; parameterizations of convection; large scale condensation; planetary boundary layer; radiative transfer,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-950-atmospheric-and-oceanic-modeling-spring-2004 +12.950,Parallel Programming for Multicore Machines Using OpenMP and MPI,IAP,2010,"OpenMP 3.0, MPI, Shared memory Programming, Hybrid Programming, MPI Runtime, Parallel Programming, data scoping",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-950-parallel-programming-for-multicore-machines-using-openmp-and-mpi-january-iap-2010 +12.990,Prediction and Predictability in the Atmosphere and Oceans,Spring,2003,Forecasting; model validation; prediction quality; operational atmosphere and ocean forecasting systems.,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-990-prediction-and-predictability-in-the-atmosphere-and-oceans-spring-2003 +14.01,Principles of Microeconomics,Fall,2018,"microeconomics +supply and demand +market equilibirum +consumer theory +production +monopoly +oligopoly +welfare economics +public goods +externalities",https://ocw.mit.edu/courses/economics/14-01-principles-of-microeconomics-fall-2018 +14.02,Principles of Macroeconomics,Fall,2004,"macroeconomics, economics, output, employment, determination, unemployment, interest rates, Federal Reserve, inflation, monetary policy, fiscal policy, public debt, international economics, goods market, market, financial markets, open economy, exchange rate, labor market, phillips curve, growth, Solow's model",https://ocw.mit.edu/courses/economics/14-02-principles-of-macroeconomics-fall-2004 +14.02,Principles of Macroeconomics,Spring,2014,"macroeconomics, unemployment, recession, financial crisis, inflation, economic policy, financial market, Short Run, Medium Run, government",https://ocw.mit.edu/courses/economics/14-02-principles-of-macroeconomics-spring-2014 +14.03,Microeconomic Theory and Public Policy,Fall,2016,"microeconomics, public policy, consumer behavior, markets, minimum wage, employment, welfare, regulation, education, international trade",https://ocw.mit.edu/courses/economics/14-03-microeconomic-theory-and-public-policy-fall-2016 +14.04,Intermediate Microeconomic Theory,Fall,2020,"economic theory, consumer behavior, general equilibrium model, consumer decisions, producer decisions, equilibrium analysis, the welfare theorems",https://ocw.mit.edu/courses/economics/14-04-intermediate-microeconomic-theory-fall-2020 +14.05,Intermediate Macroeconomics,Spring,2013,"macroeconomics, Solow Model, consumption, saving, labor supply, Ramsey model, endogenous growth, policy, economics, financial crisis",https://ocw.mit.edu/courses/economics/14-05-intermediate-macroeconomics-spring-2013 +14.06,Intermediate Macroeconomic Theory,Spring,2003,"advanced macroeconomics, dynamic programming, neoclassical and new growth theory, consumption and saving behavior, investment, unemployment",https://ocw.mit.edu/courses/economics/14-06-intermediate-macroeconomic-theory-spring-2003 +14.06,Intermediate Macroeconomic Theory,Spring,2004,advanced macroeconomics; dynamic programming; neoclassical theory; new growth theory; consumption; saving behavior; investment; unemployment; financial markets; asset pricing; public finance; externalities; research and development; innovation; business cycles; nominal adjustment,https://ocw.mit.edu/courses/economics/14-06-intermediate-macroeconomic-theory-spring-2004 +14.09,Financial Crises,IAP,2016,"financial crises, net worth, economic theory, economics, crises, financial systems, finances, financial regulation, bank runs, mortgages, fire sales, leverage",https://ocw.mit.edu/courses/economics/14-09-financial-crises-january-iap-2016 +14.12,Economic Applications of Game Theory,Fall,2012,"game theory, economics, multiperson decision theory, payoff, games, backward induction, subgame perfection, implicit cartels, dynamic games",https://ocw.mit.edu/courses/economics/14-12-economic-applications-of-game-theory-fall-2012 +14.121,Microeconomic Theory I,Fall,2015,"microeconomic theory, economics, economic methodologies, consumer theory, producer theory, monotone methods, dynamic choice, competitive markets",https://ocw.mit.edu/courses/economics/14-121-microeconomic-theory-i-fall-2015 +14.122,Microeconomic Theory II,Fall,2002,"game theory, Perfect Bayesian Equilibria, John Nash, static games, dynamic games, incomplete information",https://ocw.mit.edu/courses/economics/14-122-microeconomic-theory-ii-fall-2002 +14.123,Microeconomic Theory III,Spring,2015,"microeconomic theory; rationalizability; game theory; behavioral economics; choice, preference, risk, risk-aversion, Expected Utility Theory, Prospect Theory, decision making, decision theory",https://ocw.mit.edu/courses/economics/14-123-microeconomic-theory-iii-spring-2015 +14.124,Microeconomic Theory IV,Spring,2017,"microeconomics +economics +microeconomic theory +risk sharing +moral hazard +adverse selection +signaling +screening +mechanism design +decision making +uncertainty",https://ocw.mit.edu/courses/economics/14-124-microeconomic-theory-iv-spring-2017 +14.126,Game Theory,Spring,2016,extensive-form games; Nash equilibria; evolutionary equilibria; bargaining with incomplete information; rationalizability; non-cooperative games,https://ocw.mit.edu/courses/economics/14-126-game-theory-spring-2016 +14.128,Dynamic Optimization & Economic Applications (Recursive Methods),Spring,2003,"Recursive Methods, Economic Dynamics, deterministic dynamic optimization, stochastic dynamic optimization, dynamic programming analysis, dynamic systems, repeated games, macroeconomics",https://ocw.mit.edu/courses/economics/14-128-dynamic-optimization-economic-applications-recursive-methods-spring-2003 +14.129,Advanced Contract Theory,Spring,2005,Games with Incomplete Information; Bayesian-Nash Games; Auctions and Mechanism Design; Static Models; Simple Models; Multiple Agents; Dynamic Models; Dynamic Adverse Selection; Dynamic Moral Hazard; Surplus Division ,https://ocw.mit.edu/courses/economics/14-129-advanced-contract-theory-spring-2005 +14.13,Psychology and Economics,Spring,2020,"psychology +economics +behavioral economics +risk +preferences +projection +attribution +poverty +happiness +mental health +policy +",https://ocw.mit.edu/courses/economics/14-13-psychology-and-economics-spring-2020 +14.147,Topics in Game Theory,Spring,2005,Economics; game theory; bargaining; information; asymmetric; empirical; experimental; studies; heterogeneous beliefs; uncertainty; unawareness.,https://ocw.mit.edu/courses/economics/14-147-topics-in-game-theory-spring-2005 +14.147,Topics in Game Theory,Fall,2009,"game theory, mechanism design, auction theory, one-sided matching, house allocation, market problems, two-sided matching, stability, many-to-one, one-to-one, small cores, large markets, stochastic matching mechanisms, student assignment, school choice, resale markets, dynamics, simplicity, robustness, limited rationality, message spaces, sharing risk, decentralized exchanges, over-the-counter exchanges",https://ocw.mit.edu/courses/economics/14-147-topics-in-game-theory-fall-2009 +14.16,Strategy and Information,Spring,2016,"game theory, iterated dominance, rationalizability, Nash equilibirum, subgame perfection, perfect Bayesian equilibrium, sequential equilibrium, perfect equilibrium, proper equilibrium, bargaining, networks",https://ocw.mit.edu/courses/economics/14-16-strategy-and-information-spring-2016 +14.20,Industrial Organization and Public Policy,Spring,2003,"industrial organization; firm behavior; competitive markets; public policy; market power; strategy; economics; government; game theory; monopoly; oligopoly, pricing; spatial model",https://ocw.mit.edu/courses/economics/14-20-industrial-organization-and-public-policy-spring-2003 +14.27,Economics and E-Commerce,Fall,2014,"economics, e-commerce, Internet, business, industrial organization, monopoly, price discrimination, product differentiation, barriers to entry",https://ocw.mit.edu/courses/economics/14-27-economics-and-e-commerce-fall-2014 +14.271,Industrial Organization I,Fall,2005,"Industrial organization, theoretical models and empirical studies; structure, behavior, and performance of firms and markets and core issues in antitrust; organization of the firm, monopoly, price discrimination, oligopoly, and auctions",https://ocw.mit.edu/courses/economics/14-271-industrial-organization-i-fall-2005 +14.271,Industrial Organization I,Fall,2013,industrial organization; economics; theoretical models; empirical studies; monopoly pricing; durable goods; price discrimination; static competition; differentiation models; oligopoly; networks; dynamic competition; two-sided markets; mergers; pricing; industry; strategic investment; firm entry; entry prevention; predation; limit pricing; auction theory; bounded rationality; advertising; patents; technology diffusion; ,https://ocw.mit.edu/courses/economics/14-271-industrial-organization-i-fall-2013 +14.282,Organizational Economics,Spring,2009,"organizational economics, classic evidence, formal theories, contracting between firms, evidence on contracts, business cases, performance pay, incentives, job assignment, skill development, networks, employment systems, decision processes, authority, power, leadership, politics, influence, language, hierarchical models, organizational structure, conglomerates, corporate strategy, corporate governance, corporate capital, firm, relational contracts",https://ocw.mit.edu/courses/economics/14-282-organizational-economics-spring-2009 +14.30,Introduction to Statistical Method in Economics,Spring,2006,"statistics, economic applications, probability theory, sampling theory, statistical estimation, regression analysis, hypothesis testing, Elementary econometrics, statistical tools, economic data, economics, statistical",https://ocw.mit.edu/courses/economics/14-30-introduction-to-statistical-method-in-economics-spring-2006 +14.30,Introduction to Statistical Methods in Economics,Spring,2009,"statistics, economic applications, probability theory, sampling theory, statistical estimation, regression analysis, hypothesis testing, Elementary econometrics, statistical tools, economic data, economics, statistical, probability distribution function, cumulative distribution function, normal, Student's t, chi-squared, central limit theorem, law of large numbers, Bayes theorem",https://ocw.mit.edu/courses/economics/14-30-introduction-to-statistical-methods-in-economics-spring-2009 +14.32,Econometrics,Spring,2007,"econometrics, statistical methods, differences-in-differences, 2SLS; FGLS, serial correlation, IV, two-stage least squares, multivariate regression, simultaneous equations, +econometric models, program evaluation, linear regression, instrumental variables, panel data methods, measurement error, limited dependent variable models.",https://ocw.mit.edu/courses/economics/14-32-econometrics-spring-2007 +14.381,Statistical Method in Economics,Fall,2018,"statistical theory +normal distribution +Bayesian concepts +convergence +limit theorems +economics +econometrics +asymptotic behavior +sample distributions +statistics +large sample",https://ocw.mit.edu/courses/economics/14-381-statistical-method-in-economics-fall-2018 +14.382,Econometrics ,Spring,2017,Economics; econometrics; linear regression model; Gauss-Markov; heteroskedasticity; serial correlation; errors; variables; generalized least squares; instrumental variables; nonlinear regression; limited dependent variable models.,https://ocw.mit.edu/courses/economics/14-382-econometrics-spring-2017 +14.384,Time Series Analysis,Fall,2013,"time series, time series analysis, data sets, empirical research, economics, econometric, univariate stationary models, non-stationary models, vector autoregressions, frequency domain methods, estimation, inference, modern dynamic stochastic general equilibrium models, DGSE, Maximum likelihood, Bayesian",https://ocw.mit.edu/courses/economics/14-384-time-series-analysis-fall-2013 +14.385,Nonlinear Econometric Analysis,Fall,2007,"nonlinear, econometric, analysis, generalized method of moments, GMM, maximum likelihood estimation, MLE, minimum distance, extremum, large sample theory, asymptotic theory, discrete choice, censoring, sample selection, bootstrap, subsampling, finite-sample methods, quantile regression, QR, distributional methods, Bayesian methods, quasi-Bayesian methods, bounds, partial identification, weak instruments, many instruments, instrumental variables, nonparametric estimation, semiparametric estimation, treatment effects, nonlinear models, panel data, economic modeling",https://ocw.mit.edu/courses/economics/14-385-nonlinear-econometric-analysis-fall-2007 +14.387,Applied Econometrics: Mostly Harmless Big Data,Fall,2014,"econometrics, big data, research, economics, regression, matching, instrumental variables, differences-in-differences, standard errors, high-dimensional data sets",https://ocw.mit.edu/courses/economics/14-387-applied-econometrics-mostly-harmless-big-data-fall-2014 +14.41,Public Finance and Public Policy,Fall,2010,social security; insurance; taxation; welfare; public education; economics of public goods; corporate taxation; taxation and savings; tax reform; redistribution; fiscal federalism; political economy; externalities; health insurance; disability insurance; workers compensation; public finance; public policy;,https://ocw.mit.edu/courses/economics/14-41-public-finance-and-public-policy-fall-2010 +14.42,Environmental Policy and Economics,Spring,2011,"economics, policy, environment, environmental economics, public policy, cost-benefit analysis, resource management, environmental regulation, health, sustainability, public goods, pollution, Pigouvian taxes, liability, kuznets curves, competition, growth, double dividend, hedonic, valuation, global warming, Porter hypothesis, social choice, carbon offsets, clean development, renewables,",https://ocw.mit.edu/courses/economics/14-42-environmental-policy-and-economics-spring-2011 +14.44,Energy Economics,Spring,2007,supply and demand; competitive market; energy demand; income elasticity; multivariate regression analysis; natural gas; price regulation; deregulation; electricity; oil; energy security; risk management; futures markets; climate change; energy; coal; nuclear power; energy efficiency; policy; renewable energy; emissions,https://ocw.mit.edu/courses/economics/14-44-energy-economics-spring-2007 +14.451,Macroeconomic Theory I,Spring,2007,"macroeconomic theory, macroeconomics, solow growth model, neoclassical growth model, endogenous growth, human capital, Bellman equation, theory of optimal control, dynamic programming, GDP, per capita income, asset pricing, public finance, overlappiing generations, AK, spillovers, expanding variety models, Sala-i-Martin, Daron Acemoglu, Barro, ",https://ocw.mit.edu/courses/economics/14-451-macroeconomic-theory-i-spring-2007 +14.451,Dynamic Optimization Methods with Applications,Fall,2009,"vector spaces, principle of optimality, concavity of the value function, differentiability of the value function, Euler equations, deterministic dynamics, models with constant returns to scale, nonstationary models, stochastic dynamic programming, stochastic Euler equations, stochastic dynamics, calculus of variations, the maximum principle, discounted infinite-horizon optimal control, saddle-path stability",https://ocw.mit.edu/courses/economics/14-451-dynamic-optimization-methods-with-applications-fall-2009 +14.452,Macroeconomic Theory II,Spring,2007,macroeconomics; theory; fluctuations; the basic model; consumption/saving choice; the RBC model; the labor/leisure choice; non-trivial investment decisions; two-good analysis; money; price setting; the “new Keynesian” model; monetary policy; fiscal policy,https://ocw.mit.edu/courses/economics/14-452-macroeconomic-theory-ii-spring-2007 +14.452,Economic Growth,Fall,2016,"economic growth, development, modern, world income distribution, Solow growth model, income differences, neoclassical growth, optimal and competitive allocations, welfare theorems, overlapping generations, dynamic efficiency, growth under uncertainty, incomplete markets, neoclassical endogenous growth, capital accumulation, externalities, human capital, endogenous growth, expanding input varieties, directed technical change, endogenous skill-bias technological change, endogenous labor-augmenting technological change, interdependences, technology diffusion, open economy, trade",https://ocw.mit.edu/courses/economics/14-452-economic-growth-fall-2016 +14.453,Macroeconomic Theory III,Fall,2006,macroeconomic theory; consumption and savings decisions under certainty and uncertainty; aggregate savings; wealth; fiscal policy; portfolio choice; asset pricing; investment and finance decisions,https://ocw.mit.edu/courses/economics/14-453-macroeconomic-theory-iii-fall-2006 +14.454,Economic Crises,Spring,2011,"economic equilibrium, economic crisis, bubbles, ex-post trading, social optimum, trading restrictions, bank runs, market contagion, liquidity, ",https://ocw.mit.edu/courses/economics/14-454-economic-crises-spring-2011 +14.461,Advanced Macroeconomics I,Fall,2012,"macroeconomics, macroeconomic theory, policy, fiscal policy, monetary policy, research, business cycles, financial crisis, global games, multiple equilibria, informational fictions",https://ocw.mit.edu/courses/economics/14-461-advanced-macroeconomics-i-fall-2012 +14.462,Advanced Macroeconomics II,Spring,2004,macroeconomics research; analytical tools; analysis; endogenous growth; coordintation; incomplete markets; technolgy; distribution; employment; intellectual property rights; bounded rationality; demographics; complementarities; amplification; recursive equilibria; uncertainty; morris; shin; global games; policy; price; aggregation; social learning; dynamic adjustment; business cycle; heterogeneous agents; savings; utility; aiyagari; steady state; krusell; smith; idiosyncratic investment risk,https://ocw.mit.edu/courses/economics/14-462-advanced-macroeconomics-ii-spring-2004 +14.462,Advanced Macroeconomics II,Spring,2007,macroeconomics; advanced; Shocks. Reallocation; unemployment; Dynamic stochastic general equilibrium models; DSGE; Investment with credit constraints; Liquidity; aggregate effects.,https://ocw.mit.edu/courses/economics/14-462-advanced-macroeconomics-ii-spring-2007 +14.471,Public Economics I,Fall,2012,economic analysis; taxation; wealth; financial policy; income; investment; asset; political economy; labor; capital; public policy; corporate finance; tax reform; optimal commodity taxes; optimal corrective taxation; optimal stochastic taxes; dynamic consistency issues; debt; equity,https://ocw.mit.edu/courses/economics/14-471-public-economics-i-fall-2012 +14.472,Public Economics II,Spring,2004,"expenditure policy, theory of public goods, state public goods, local public goods, political economy, welfare policy, social insurance, social security, unemployment insurance, health care policy",https://ocw.mit.edu/courses/economics/14-472-public-economics-ii-spring-2004 +14.54,International Trade,Fall,2016,"theory of international trade; finance; policy; flow of goods; flow of savings and investments; globalization; free trade agreements; the US current account deficit; exchange rates; European integration; global financial architecture; financial crises; East Asia; Argentina +",https://ocw.mit.edu/courses/economics/14-54-international-trade-fall-2016 +14.581,International Economics I,Spring,2013,international economics; international trade; Ricardian model; law of comparative advantage; Ricardo-Viner model; Heckscher-Ohlin model; neoclassical trade theories; monopolistic competition; trade theory; firm-level heterogeneity; foreign investment; gravity models; offshoring; fragmentation of production;,https://ocw.mit.edu/courses/economics/14-581-international-economics-i-spring-2013 +14.64,Labor Economics and Public Policy,Fall,2009,"labor Economics; public policy; applied microeconomics; empirical analysis; labor supply and demand; taxes and transfers; human capital, minimum wages; income distribution; unions and strikes;immigration, incentives;discrimination; unemployment and unemployment insurance; bargaining; economics of the family; decision to work; home production; monpsony; education; training; discrimination",https://ocw.mit.edu/courses/economics/14-64-labor-economics-and-public-policy-fall-2009 +14.661,Labor Economics I,Fall,2017,"labor economics +economics +labor market +labor demand +human capital +wage and employment determination +turnover +search +immigration +unemployment +equalizing differences +empirical modeling +theoretical modeling",https://ocw.mit.edu/courses/economics/14-661-labor-economics-i-fall-2017 +14.662,Labor Economics II,Spring,2015,"labor economics, inequality, wage structure, skill demands, employment, job loss, early-life determinants, long-run outcomes, Roy model, wage differentials, supply, demand, income",https://ocw.mit.edu/courses/economics/14-662-labor-economics-ii-spring-2015 +14.71,Economic History of Financial Crises,Fall,2009,"economic history, financial crises, industrialization, World War I, depression, recovery, World War II, the Golden Age, income inequality, oil crises, 1970s, Japanese growth and stagnation, small crises, imbalance, 2008 crisis, 2009 crisis, 1930s, 1940s",https://ocw.mit.edu/courses/economics/14-71-economic-history-of-financial-crises-fall-2009 +14.72,Capitalism and Its Critics,Fall,2013,capitalism; markets; Thomas Kuhn; scientific paradigm; liberalism; neoclassical economics; Marxism; corporate state; social embeddedness; economic activity; The Fountainhead; Ayn Rand; Double Helix; James Watson; Tracy Kidder; Soul of the New Machine; industrial state; individualism; ,https://ocw.mit.edu/courses/economics/14-72-capitalism-and-its-critics-fall-2013 +14.73,The Challenge of World Poverty,Spring,2011,"world poverty, consumption, food, health, education, family, insurance, risk, credit, savings, entrepreneurship, political economy,economics",https://ocw.mit.edu/courses/economics/14-73-the-challenge-of-world-poverty-spring-2011 +14.731,Economic History,Fall,2006,Economic History; industrialization; demographic change; policies; Applied Economics; formulate and test hypotheses,https://ocw.mit.edu/courses/economics/14-731-economic-history-fall-2006 +14.731,Economic History,Spring,2009,Economic History; industrialization; demographic change; policies; Applied Economics; formulate and test hypotheses; labor history; discrimination; technology; institutions; financial crises; migration; recovery after shocks; wages; inequality; health; stock market regulation,https://ocw.mit.edu/courses/economics/14-731-economic-history-spring-2009 +14.74,Foundations of Development Policy,Spring,2009,"Economics; development; policy; human; education; health; gender; family; land; relations; risk; informal; formal; norms; institutions; decisions; poor; households; +countries; government; international; organizations; Non-governmental organizations; NGOs.",https://ocw.mit.edu/courses/economics/14-74-foundations-of-development-policy-spring-2009 +14.75,Political Economy and Economic Development,Fall,2012,"dictatorship, corruption, economics, political economics, developmental economics, democracy, war, civil war, voting, collective action",https://ocw.mit.edu/courses/economics/14-75-political-economy-and-economic-development-fall-2012 +14.770,Introduction to Political Economy,Fall,2017,"political science +political economy +collective choice +voting +elections +conflict +empirics +collective action +media +bureaucracy +corruption + +",https://ocw.mit.edu/courses/economics/14-770-introduction-to-political-economy-fall-2017 +14.771,Development Economics,Fall,2021,, +14.772,Development Economics: Macroeconomics,Spring,2013,"development economics, macroeconomics, aggregative growth theory, returns to human capital, population theory, technology, returns to capital, non-aggregative growth models, finance, property rights, trade, reputation, history, culture, political science, enviroment, emerging market economies, measurement frameworks, neo-Classical standards, interventions, mechanism design, applied general equilibrium development economics, supply-side",https://ocw.mit.edu/courses/economics/14-772-development-economics-macroeconomics-spring-2013 +15.010,Economic Analysis for Business Decisions,Fall,2004,auctions; transfer pricing; market structure; industrial performance; strategic interaction of firms; individual markets; producers and consumers; sell and buy; cost analysis; determinants of market demand; pricing strategy; market power; implications of government regulatory policies; implications of economics; business practices; incentive plans,https://ocw.mit.edu/courses/sloan-school-of-management/15-010-economic-analysis-for-business-decisions-fall-2004 +15.012,Applied Macro- and International Economics,Spring,2011,international economics; macroeconomics; monetary policy; fiscal policy; exchange rate policy; financial crisis; emerging market crisis; economic development; foreign aid; natural resources,https://ocw.mit.edu/courses/sloan-school-of-management/15-012-applied-macro-and-international-economics-spring-2011 +15.014,Applied Macro- and International Economics II,Spring,2016,macroeconomics; international economics; world economies; global trade; economic policy; inflation; interest rates; exchange rates; national economic strategies; developing nations; currency crisis; transition economies; global markets; world bank; IMF; international monetary fund; monetary policy; depression; unemployment; international financial architecture,https://ocw.mit.edu/courses/sloan-school-of-management/15-014-applied-macro-and-international-economics-ii-spring-2016 +15.015,Macro and International Economics,Fall,2011,international economics; macroeconomics; BB-NN; IS-LM; fiscal policy; inflation; financial sector dynamics; exchange rates; banking crisis,https://ocw.mit.edu/courses/sloan-school-of-management/15-015-macro-and-international-economics-fall-2011 +15.020,Competition in Telecommunications,Fall,2003,telephone; Internet; communications; economics; business strategy; technologies; wireless; convergence; cable television; governmental regulations; public policy; evolution of technology; computer hardware and software; VoIP; data and voice traffic; network integration; deregulation; cell phones; WiFi; Internet commerce; spectrum auctions,https://ocw.mit.edu/courses/sloan-school-of-management/15-020-competition-in-telecommunications-fall-2003 +15.024,Applied Economics for Managers,Summer,2004,applied economics; resource scarcity; allocate limited resources; business choices; modeling consumer choices; market efficiency; microeconomics; efficiency; supply; demand; consumer theory; producer theory; monopoly; imperfect competition; pricing; public goods; externalities; information uncertainty; group decision making; organizational architecture; international trade; equity; income distribution; economic rewards; managerial economics; corporate finance theory; network economy,https://ocw.mit.edu/courses/sloan-school-of-management/15-024-applied-economics-for-managers-summer-2004 +15.025,Game Theory for Strategic Advantage,Spring,2015,"game theory, strategic advantage, multi-person decision problem, strategies and opponents, strategic commitment, reputation, ""irrational"" actions, brinkmanship, negotiation, auctions, market design, contests, long-run relationships, auctions, market design, communication, credibility, reputation, structures, hidden information, limits,Preemptive Investment, Audition Game, Location Game, Penalty Shots, Splitting the Dollar ",https://ocw.mit.edu/courses/sloan-school-of-management/15-025-game-theory-for-strategic-advantage-spring-2015 +15.040,Game Theory for Managers,Spring,2004,game theory; strategy games; strategic thinking; business strategy; strategic reasoning; rationality; dominant strategies; first-mover advantage; conflict strategies; strategic substitutes; strategic complements; dynamic pricing; entering new markets; new market entry; brinksmanship; negotiation; negotiating; auctions; auction theory; revenue equivalence; bidding; information uncertainty; risk manipulation; adverse selection; moral hazard; strategic irrationality; prisoner's dilemma,https://ocw.mit.edu/courses/sloan-school-of-management/15-040-game-theory-for-managers-spring-2004 +15.053,Optimization Methods in Management Science,Spring,2013,"optimization methods; management science; theory, algorithms, applications; linear programming; network optimization; integer programming; decision trees; logistics; manufacturing; transportation; marketing; project management; finance;",https://ocw.mit.edu/courses/sloan-school-of-management/15-053-optimization-methods-in-management-science-spring-2013 +15.057,Systems Optimization,Spring,2003,"system optimization, distribution, production planning, supply chain managment, scheduling, inventory",https://ocw.mit.edu/courses/sloan-school-of-management/15-057-systems-optimization-spring-2003 +15.060,"Data, Models, and Decisions",Fall,2014,decision analysis; discrete probability distributions; continuous probability distributions; normal probability distribution; statistical sampling; regression models; linear optimization; nonlinear optimization; discrete optimization,https://ocw.mit.edu/courses/sloan-school-of-management/15-060-data-models-and-decisions-fall-2014 +15.062,Data Mining,Spring,2003,"data warehouses, internet, e-commerce, electronic banking, point-of-sale devices, bar-code readers, intelligent machines",https://ocw.mit.edu/courses/sloan-school-of-management/15-062-data-mining-spring-2003 +15.063,Communicating With Data,Summer,2003,"quantitative, data analysis, graphs, charts, factual decisions, statistics, communication, fact-based, information analysis, spreadsheets, models",https://ocw.mit.edu/courses/sloan-school-of-management/15-063-communicating-with-data-summer-2003 +15.067,Competitive Decision-Making and Negotiation,Spring,2011,"negotiation, distributive bargaining, ethics, dispute resolution, decision making, fair division, bidding",https://ocw.mit.edu/courses/sloan-school-of-management/15-067-competitive-decision-making-and-negotiation-spring-2011 +15.071,The Analytics Edge,Spring,2017,"data +optimization +analytics +linear regression +logistic regression +trees +text analytics +clustering +visualization +election forecasting +Moneyball +eHarmony +Framingham Heart Study +healthcare +claims data +Twitter +tweet analysis +Netflix +IBM Watson +statistical software R +spreadsheet software",https://ocw.mit.edu/courses/sloan-school-of-management/15-071-the-analytics-edge-spring-2017 +15.097,Prediction: Machine Learning and Statistics,Spring,2012,prediction; machine learning; statistics; data mining; algorithms; statistical learning theory; Bayesian analysis; top 10 algorithms; support vector machines; boosting,https://ocw.mit.edu/courses/sloan-school-of-management/15-097-prediction-machine-learning-and-statistics-spring-2012 +15.098,Special Seminar in Applied Probability and Stochastic Processes,Spring,2006,doctoral; seminar; applied probability; stochastic processes; statistical physics; artificial intelligence; computer science; belief propagation algorithms; K-SAT problem; coloring; average case complexity; low density parity check codes,https://ocw.mit.edu/courses/sloan-school-of-management/15-098-special-seminar-in-applied-probability-and-stochastic-processes-spring-2006 +15.099,Readings in Optimization,Fall,2003,deterministic optimization; algorithms; stochastic processes; random number generation; simplex method; nonlinear; convex; complexity analysis; semidefinite programming; heuristic; global optimization; Las Vegas algorithm; randomized algorithm; linear programming; search techniques; hit and run; NP-hard; approximation,https://ocw.mit.edu/courses/sloan-school-of-management/15-099-readings-in-optimization-fall-2003 +15.220,Global Strategy and Organization,Spring,2008,global landscape; the world is flat; competitive advantage; global strategy; local strength; global advantage; value creation; frameworks for global strategic analysis; MIT Sloan Courseware; expansion; emerging markets; local companies; multinationals; innovation; dealing with differences; global management,https://ocw.mit.edu/courses/sloan-school-of-management/15-220-global-strategy-and-organization-spring-2008 +15.220,Global Strategy and Organization,Spring,2012,"globalization, organization, competitive advantage, internalization, national, national plus, metanational, culture, value proposition, localization, complementarities",https://ocw.mit.edu/courses/sloan-school-of-management/15-220-global-strategy-and-organization-spring-2012 +15.223,"Global Markets, National Politics and the Competitive Advantage of Firms",Fall,2011,global markets; national politics; competitive advantage; global economy; emerging markets; market economies; human rights; intellectual property,https://ocw.mit.edu/courses/sloan-school-of-management/15-223-global-markets-national-politics-and-the-competitive-advantage-of-firms-fall-2011 +15.224,"Global Markets, National Politics and the Competitive Advantage of Firms",Spring,2003,"competitiveness, competition, strategy, europe, latin america, asia, public policy, advantage, development, international, enrepreneurship, protection",https://ocw.mit.edu/courses/sloan-school-of-management/15-224-global-markets-national-politics-and-the-competitive-advantage-of-firms-spring-2003 +15.225,Economy and Business in Modern China and India,Spring,2008,China; India; global economy; growth; foreign direct investment; portfolio investments; emerging markets; reform policies; business environment; financing environment; corruption; business government relationship; venture capital; private equity; intellectual property; India pharmaceutical industry; development models,https://ocw.mit.edu/courses/sloan-school-of-management/15-225-economy-and-business-in-modern-china-and-india-spring-2008 +15.228,MBA Study Tour: Innovation Islands - How New Zealand Became A Global Player in the Race to Innovate,Spring,2016,"international, study tour, MBA, New Zealand, entrepreneurship, innovation, global, MIT REAP, MISTI, Sloan, startup, company, business plan, small business",https://ocw.mit.edu/courses/sloan-school-of-management/15-228-mba-study-tour-innovation-islands-how-new-zealand-became-a-global-player-in-the-race-to-innovate-spring-2016 +15.229,Managing Global Integration,Spring,2012,"global integration, global innovation, organization, environment, strategy, teamwork, metanational, multinational, national, context, culture, collective performance, virtual team, matrix",https://ocw.mit.edu/courses/sloan-school-of-management/15-229-managing-global-integration-spring-2012 +15.232,Business Model Innovation: Global Health in Frontier Markets,Fall,2013,"global health, healthcare, health delivery, globalhealth, business model, clinic, hospital, cost analysis, strategy, operations, marketing, technology, revenue model, Africa, India, Nepal, Mexico, Ecuador, Burundi, Greece",https://ocw.mit.edu/courses/sloan-school-of-management/15-232-business-model-innovation-global-health-in-frontier-markets-fall-2013 +15.269,"Leadership Stories: Literature, Ethics, and Authority",Fall,2015,ethics in society; authority; leadership; social enterprise; literature; film; moral compass; diversity; individual values; story and management,https://ocw.mit.edu/courses/sloan-school-of-management/15-269-leadership-stories-literature-ethics-and-authority-fall-2015 +15.270,"Ethical Practice: Leading Through Professionalism, Social Responsibility, and System Design",Spring,2016,ethics; general management; challenges; 21st century; professional practice; character; human nature; social responsibility; corporations; capital; global marketplace; globalization,https://ocw.mit.edu/courses/sloan-school-of-management/15-270-ethical-practice-leading-through-professionalism-social-responsibility-and-system-design-spring-2016 +15.277,Special Seminar in Communications: Leadership and Personal Effectiveness Coaching,Fall,2008,receiving feedback; storytelling; leadership vision; communication; communication for managers; team communication; culture and leadership; managing conflict; conflict resolution; Distributed Leadership Model; Organizational Processes; informational interviewing,https://ocw.mit.edu/courses/sloan-school-of-management/15-277-special-seminar-in-communications-leadership-and-personal-effectiveness-coaching-fall-2008 +15.279,Management Communication for Undergraduates,Fall,2012,management; communication; oral presentation; presentation; leadership; writing; teamwork; business; professional skills;,https://ocw.mit.edu/courses/sloan-school-of-management/15-279-management-communication-for-undergraduates-fall-2012 +15.280,Communication for Managers,Fall,2016,interpersonal communication; business presentations; communication strategies; teamwork; running meetings; managerial communication; business writing; business speaking; group decision making; hostile audience; role play exercises; persuasive communication; persuading audiences; listening; nonverbal communication; Q&A; question and answer; working with media; intercultural communication; communicating across cultures; cross-cultural communication,https://ocw.mit.edu/courses/sloan-school-of-management/15-280-communication-for-managers-fall-2016 +15.281,Advanced Communication for Leaders,Spring,2016,interpersonal communication; business presentations; communication strategies; teamwork; running meetings; managerial communication; business writing; business speaking; group decision making; hostile audience; role play exercises; persuasive communication; persuading audiences; listening; nonverbal communication; Q&A; question and answer; working with media; intercultural communication; communicating across cultures; cross-cultural communication,https://ocw.mit.edu/courses/sloan-school-of-management/15-281-advanced-communication-for-leaders-spring-2016 +15.289,Communication Skills for Academics,Spring,2002,"colleagues, peers, academia, well-crafted academic communication, doctoral students, scholarly publication process , communicate, speak, professional norms",https://ocw.mit.edu/courses/sloan-school-of-management/15-289-communication-skills-for-academics-spring-2002 +15.301,Managerial Psychology Laboratory,Fall,2004,"psychology, group dynamics, motivation, reward system, incentive, norms, creativity, decision making, leadership, career development, organization, mentor, communication, management, business",https://ocw.mit.edu/courses/sloan-school-of-management/15-301-managerial-psychology-laboratory-fall-2004 +15.301,Managerial Psychology,Fall,2006,organizations; management; behavioral science; behavioral approach; human behavior; communications; teamwork; negotiations; conflict resolution; leadership; organizational analysis; managerial psychology; behavioral research; sociology; institutional context; groups; teams; individuals; statistics; research methods,https://ocw.mit.edu/courses/sloan-school-of-management/15-301-managerial-psychology-fall-2006 +15.310,Managerial Psychology Laboratory,Spring,2003,"psychology, group dynamics, motivation, reward system, incentive, norms, creativity, decision making, leadership, career development, organization, mentor, communication, management, business",https://ocw.mit.edu/courses/sloan-school-of-management/15-310-managerial-psychology-laboratory-spring-2003 +15.311,Organizational Processes,Fall,2003,optimal organization; corporate structure; bureaucracy; organizational behavior; contingency theory; organizational change; power; politics; culture; strategic design; studying organizations; team project; hiring; decision making; business ethics; corporate incentives; authority; networks; negotiation; bargaining; leading change,https://ocw.mit.edu/courses/sloan-school-of-management/15-311-organizational-processes-fall-2003 +15.316,Building and Leading Effective Teams,Summer,2005,leadership; teambuilding; ladder of inference; learning communities; experiences; management; teams; skill set; facilitation; motivation; decision making; planned change; Universe Within; Fifth Discipline; Peter Senge; Rick Ross,https://ocw.mit.edu/courses/sloan-school-of-management/15-316-building-and-leading-effective-teams-summer-2005 +15.317,Organizational Leadership and Change,Summer,2009,organizational leadership; LGO; operations management; leadership techniques; leadership ethics; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-317-organizational-leadership-and-change-summer-2009 +15.320,Strategic Organizational Design,Spring,2011,organizational design; product innovation; conglomerates; lateral coordination processes; crowd-sourcing; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-320-strategic-organizational-design-spring-2011 +15.322,Leading Organizations II,Fall,2003,organizational change; managerial styles; leaders; coping with change; psychology; sociology; employee behavior; strategic design; political perspective; cultural perspective; three lenses; politics; learning styles; career anchors; career choices; organizational analysis; group process; process consultation; salary; reward systems; incentives; business culture,https://ocw.mit.edu/courses/sloan-school-of-management/15-322-leading-organizations-ii-fall-2003 +15.328,Team Project,Fall,2003,organizational process; communications; teamwork; company culture; business analysis; team building; business communication; leadership skills; analysis of a change initiative; team goals; corporate project; non-profit project,https://ocw.mit.edu/courses/sloan-school-of-management/15-328-team-project-fall-2003 +15.341,"Individuals, Groups, and Organizations",Fall,2006,"individuals; groups; organizations; individual, group and organizational behavior; individual affect and cognition; group process and performance; organizational culture and adaptation; behavioral science;",https://ocw.mit.edu/courses/sloan-school-of-management/15-341-individuals-groups-and-organizations-fall-2006 +15.343,"Managing Transformations in Work, Organizations, and Society",Spring,2002,"Theory X and Theory Y, employee motivation, changing nature of work, business and society, global standards, corporate responsibility, business and the environment, sustainable business, labor-management partnership, knowledge based work systems, knowledge work, knowledge management, managing cultural diversity, global organizations, transforming government",https://ocw.mit.edu/courses/sloan-school-of-management/15-343-managing-transformations-in-work-organizations-and-society-spring-2002 +15.347,Doctoral Seminar in Research Methods I,Fall,2004,good empirical research; social sciences; assumptions and the logic underlying social research; research design; research projects; products of empirical research,https://ocw.mit.edu/courses/sloan-school-of-management/15-347-doctoral-seminar-in-research-methods-i-fall-2004 +15.348,Doctoral Seminar in Research Methods II,Spring,2004,contemporary research on organizations; strategy and management; quantitative research methods; quantitative techniques; including logit/probit models; count models; event history models; pooled cross-section techniques,https://ocw.mit.edu/courses/sloan-school-of-management/15-348-doctoral-seminar-in-research-methods-ii-spring-2004 +15.351,Managing the Innovation Process,Fall,2002,"innovation, technology, strategy, product development, new venture, process, open source, organization",https://ocw.mit.edu/courses/sloan-school-of-management/15-351-managing-the-innovation-process-fall-2002 +15.351,Managing Innovation and Entrepreneurship,Spring,2008,"entrepreuneurship, S-curve, innovation, technology, market dynamics, portfolio management, innovation teams, flexible processes, competition, iterative design, incentivizing, value chain, corporate venturing, internal venturing, uner-served customers, over-served customers, disruption, diffusion, market analysis, project management",https://ocw.mit.edu/courses/sloan-school-of-management/15-351-managing-innovation-and-entrepreneurship-spring-2008 +15.352,Managing Innovation: Emerging Trends,Spring,2005,innovation; management; open source; creative commons; intellectual property; copyright; distribution; collaboration; toolkits; online networks; empowerment; usability; creation; content; commonality; sharing,https://ocw.mit.edu/courses/sloan-school-of-management/15-352-managing-innovation-emerging-trends-spring-2005 +15.356,"How to Develop ""Breakthrough"" Products and Services",Spring,2004,lead user method; innovations; innovation process; idea generation; brainstorming; concept development methods; prototypes; solutions; problem solving; business breakthroughs; incremental improvements; market research; focus groups; MIT Media Lab; creativity,https://ocw.mit.edu/courses/sloan-school-of-management/15-356-how-to-develop-breakthrough-products-and-services-spring-2004 +15.356,How to Develop Breakthrough Products and Services,Spring,2012,innovation; lead user; user innovation; patents; crowdsourcing; idea generation; breakthrough innovation; analytical marketing; development methods; segmentation; creativity; MIT Media Lab,https://ocw.mit.edu/courses/sloan-school-of-management/15-356-how-to-develop-breakthrough-products-and-services-spring-2012 +15.358,The Software Business,Fall,2005,software companies; strategy; software business history; microsoft; management; organization; IT firms; best practices; NET; I2EE; software platforms; software development; software sales; software marketing; software entrepreneurship; open source; outsourcing; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-358-the-software-business-fall-2005 +15.361,Executing Strategy for Results,Fall,2017,"executives +business strategy +strategy execution +mechanistic view +CEO +corporate leader +shared context +teams +goals 2.0 +distributed leaders +resource re-allocation +corporate culture +top leaders +flexible execution model +practical tools +data +Glassdoor +surveys + +",https://ocw.mit.edu/courses/sloan-school-of-management/15-361-executing-strategy-for-results-fall-2017 +15.369,Seminar in Corporate Entrepreneurship,Fall,2015,"entrepreneur, entrepreneurship, corporate relations, large firms, corporate entrepreneurship, stakeholders, innovation,organization +transformation, profitability, disruptive technology, inertia, accelerating growth, +new ventures, open innovation, research and development, new products, new features, ecomagination, clean technologies, internal entrepreneur, firm strategy, startups, venturing tools, venture capital, acquisition, act-learn-build, ",https://ocw.mit.edu/courses/sloan-school-of-management/15-369-seminar-in-corporate-entrepreneurship-fall-2015 +15.387,Entrepreneurial Sales,Spring,2015,"entrepreneurship, sales, marketing, startup, toolkit, ability to sell, salesforce, elevator pitch, closing, sales call, product knowledge, sales prospecting, quotas, compensation, team selling, training, forecasting, regional sales manager, merger problems, inside sales organization, subsidiary, reorganization, OEM, sales model, freemium business models, social media, customer relationship management software, marketing automation software",https://ocw.mit.edu/courses/sloan-school-of-management/15-387-entrepreneurial-sales-spring-2015 +15.390,New Enterprises,Spring,2013,"startup, entrepreneurship, marketing, strategy, customer relationship, ventures, building, running, and growing an organization, organizational architecture, group behavior and performance, interpersonal influence, leadership, innovation",https://ocw.mit.edu/courses/sloan-school-of-management/15-390-new-enterprises-spring-2013 +15.391,Early Stage Capital,Fall,2010,raising venture capital; seed stage investment; angel investors; structuring deals; valuating companies; entrepreneurship; venture capitalist; negotiate investments; start-up ventures; term sheet; VC; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-391-early-stage-capital-fall-2010 +15.394,Designing and Leading the Entrepreneurial Organization,Spring,2003,"building, running, and growing an organization, organizational architecture, group behavior and performance, interpersonal influence, leadership and motivation in entrepreneurial settings",https://ocw.mit.edu/courses/sloan-school-of-management/15-394-designing-and-leading-the-entrepreneurial-organization-spring-2003 +15.395,Entrepreneurship Without Borders,Fall,2016,"entrepreneurship +new businesses +financial inclusion +government +corruption +incumbent firms +global finance +income pyramid +technologies +economic development +Bitcoin +blockchain technology +innovation +dispersion of power +Digital Currency Initiative +Cryptocurrency +DCI +MIT Media Lab +centralized trust +credit system +financial inclusion +CBDC +protocol-based startup +Open Music Initiative +data ownership +blockchain registry +property rights +solar energy +smart meters +localized power +supply chain +quasi-private digital money +public blockchain +BitFury +Corda",https://ocw.mit.edu/courses/sloan-school-of-management/15-395-entrepreneurship-without-borders-fall-2016 +15.401,Finance Theory I,Fall,2008,present value relations; fixed income securities; equities; forward and futures contracts; options; risk and return; risk analytics; portfolio theory; CAPM; APT; capital budgeting; efficient markets,https://ocw.mit.edu/courses/sloan-school-of-management/15-401-finance-theory-i-fall-2008 +15.402,Finance Theory II,Spring,2003,financial; business decisions; corporate finance; corporate strategy; capital structure; debt; equity; company valuation; cash flow; investment projects; risk management; corporate governance; financial management; financial statements; financial analysis,https://ocw.mit.edu/courses/sloan-school-of-management/15-402-finance-theory-ii-spring-2003 +15.414,Financial Management,Summer,2003,finance; corporate finance; capital markets; managerial decisions; financial assets; risk management; financial derivatives; expected return; risk; dividend policy; empirical research; futures; options markets; valuation; budgeting; portfolio theory,https://ocw.mit.edu/courses/sloan-school-of-management/15-414-financial-management-summer-2003 +15.431,Entrepreneurial Finance,Spring,2011,entrepreneurship; entrepreneurial finance; venture capital; discounted cash flow; real option valuation; initial public offering; deal structure; angels; private equity,https://ocw.mit.edu/courses/sloan-school-of-management/15-431-entrepreneurial-finance-spring-2011 +15.433,Investments,Spring,2003,"Financial theory, empirical evidence, investment decisions, portfolio theory, equilibrium models of security prices, capital asset pricing model, arbitrage pricing theory, empirical behavior of security prices, market efficiency, performance evaluation, behavioral finance",https://ocw.mit.edu/courses/sloan-school-of-management/15-433-investments-spring-2003 +15.450,Analytics of Finance,Fall,2010,"financial econometrics; statistical inference; dynamic optimization; Monte Carlo simulation; stochastic (Itô) calculus; portfolio management, risk management; proprietary trading; derivative pricing; generalized method of moments; Black-Scholes model ",https://ocw.mit.edu/courses/sloan-school-of-management/15-450-analytics-of-finance-fall-2010 +15.483,"Consumer Finance: Markets, Product Design, and FinTech",Spring,2018,"consumer finance +economic models +financial behavior +diminishing marginal utility +risk aversion +portfolio choice +Behavioral biases +financial decisions +financial decisions +regulation +competition +correcting products +mistake profit +financial coaching +behavioral economics +financial advice +selling advice +risk-based pricing +consumer credit +credit cards +credit card regulation +consumer insurance +insurance markets +Peer to peer lending +securitized products +ABS +student loans +personal loans +CMBS +RMBS +CLO +crisis +Fintech +China +Bitcoin +Blockchain +payment technologies +cryptocurrency +cryptocurrencies +public ledgers",https://ocw.mit.edu/courses/sloan-school-of-management/15-483-consumer-finance-markets-product-design-and-fintech-spring-2018 +15.501,Introduction to Financial and Managerial Accounting,Spring,2004,financial and managerial reporting; basic accounting; basic concepts of financial reporting; exchange of resources,https://ocw.mit.edu/courses/sloan-school-of-management/15-501-introduction-to-financial-and-managerial-accounting-spring-2004 +15.511,Financial Accounting,Summer,2004,financial accounting; analyzing financial statements; measuring corporate performance; making business decisions; valuing companies; corporate finance; business economics; cash flow discounting; risk; valuation; balance sheet; income statement; accounting process; statement of cash flows; receivables; revenue recognition; inventories; liabilities; contingencies; debt; taxes; investments; financial bookkeeping; assets; stockholder equity,https://ocw.mit.edu/courses/sloan-school-of-management/15-511-financial-accounting-summer-2004 +15.514,Financial and Managerial Accounting,Summer,2003,"management, accounting, finance, financial, managerial economics, tax reports, accounting reports, annual reports, record keeping, system creation, project creation, decision making",https://ocw.mit.edu/courses/sloan-school-of-management/15-514-financial-and-managerial-accounting-summer-2003 +15.515,Financial Accounting,Fall,2003,acquisitions; finances; financial accounting; balancing the books; accountants; accrual accounting; cash basis; financial statements; bookkeeping; income statement; balance sheet; retained earnings; fiscal period; statement of cash flows; statement of owners' equity; financial ratios; profits and losses; recognizing revenue; doubtful accounts; income; expenses; analyzing financial records; LIFO; FIFO; cost of goods sold; depreciation; taxes; securities; debt; valuation; valuing a company;,https://ocw.mit.edu/courses/sloan-school-of-management/15-515-financial-accounting-fall-2003 +15.518,Taxes and Business Strategy,Fall,2002,"tax. finance, decision making, planning, arbitrage, investment, analysis, compensation, stock option, capital, dividend, merger, acquisition, law, reform, stragegy",https://ocw.mit.edu/courses/sloan-school-of-management/15-518-taxes-and-business-strategy-fall-2002 +15.521,Management Accounting and Control,Spring,2003,"management, accounting, accounting information, organizational economics , managerial economics, internal accounting systems,",https://ocw.mit.edu/courses/sloan-school-of-management/15-521-management-accounting-and-control-spring-2003 +15.535,Business Analysis Using Financial Statements,Spring,2003,business analysis; financial statements; finance; valuation techniques; accounting reports; value; economics; financial report; investments; asset value; investment valuation; accounting analysis; balence sheet,https://ocw.mit.edu/courses/sloan-school-of-management/15-535-business-analysis-using-financial-statements-spring-2003 +15.561,Information Technology Essentials,Spring,2005,technology concepts; information technology; IT; IS; computer-based systems; networks; distributed computing; WWW; hardware; software tools; relational databases; security; cryptography; enterprise applications; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-561-information-technology-essentials-spring-2005 +15.564,Information Technology I,Spring,2003,computers; future developments; networks; distributed computing; programming languages; firewall; e-business; computer architecture; operating systems; software development; database; user interface; telecommunication; data transmission; local area network; wireless network; internet; world wide web; digital security,https://ocw.mit.edu/courses/sloan-school-of-management/15-564-information-technology-i-spring-2003 +15.566,Information Technology as an Integrating Force in Manufacturing,Spring,2003,"information technology, business, manufacturing, strategy, information systems, networks, distributed computing, software development, web, enterprise application, security, database, operating system, electronic commerce, business to business",https://ocw.mit.edu/courses/sloan-school-of-management/15-566-information-technology-as-an-integrating-force-in-manufacturing-spring-2003 +15.567,"The Economics of Information: Strategy, Structure and Pricing",Fall,2010,Digitization; pricing; bundling; social networks; search engines; targeted advertising; personalization; network externalities; open source; organizational structure; business strategy; information; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-567-the-economics-of-information-strategy-structure-and-pricing-fall-2010 +15.571,Generating Business Value from Information Technology,Spring,2009,IT governance; information technology portfolio; information technology investment; information technology planning; IT architecture; outsourcing; CIO; business strategy; IT infrastructure; enterprise architecture; ebusiness models; information technology,https://ocw.mit.edu/courses/sloan-school-of-management/15-571-generating-business-value-from-information-technology-spring-2009 +15.575,Research Seminar in IT and Organizations: Economic Perspectives,Spring,2004,business organizations; economic theory; stakeholders; information technology; nature of economic competition; new ways of organizing work; roles of information and technology organizational forms; new organizational forms; organizations,https://ocw.mit.edu/courses/sloan-school-of-management/15-575-research-seminar-in-it-and-organizations-economic-perspectives-spring-2004 +15.598,IT and Business Transformation,Spring,2003,"information technology, transformation, strategy, management, implementation, e-business infrastructure",https://ocw.mit.edu/courses/sloan-school-of-management/15-598-it-and-business-transformation-spring-2003 +15.599,Workshop in IT: Collaborative Innovation Networks,Fall,2011,collaborative innovation networks; social networks; social marketing; Web; swarm creativity; predictive analytics; Web trends; Facebook; email; Web mining; social network analysis; trend predictions; viral marketing; global virtual collaboration ,https://ocw.mit.edu/courses/sloan-school-of-management/15-599-workshop-in-it-collaborative-innovation-networks-fall-2011 +15.615,Law for the Entrepreneur and Manager,Spring,2003,"corporate managers, corporate, law, technical legal knowledge, consultants, companies, business law",https://ocw.mit.edu/courses/sloan-school-of-management/15-615-law-for-the-entrepreneur-and-manager-spring-2003 +15.616,Innovative Businesses and Breakthrough Technologies - The Legal Issues,Fall,2004,contracts; liability; regulation; business law; employment; corporations; in-depth treatment of the legal issues relating to breakthrough technologies; legal framework of R&D; commercialization of new high-technology products; start-ups; liability and regulatory implications of new products and innovative business models; national and international intellectual property; intellectual property; industries; information technology; communications; life sciences,https://ocw.mit.edu/courses/sloan-school-of-management/15-616-innovative-businesses-and-breakthrough-technologies-the-legal-issues-fall-2004 +15.617,The Law of Corporate Finance and Financial Markets,Spring,2004,corporate finance; financial markets; finance law; corporate law; business law; contracts; liability; regulation; employment; mergers; acquisitions; M&A; international financial markets; venture capital; private equity; corporate financial structure; antitrust; bankruptcy; reorganization; financial products; financial services; financial liability; courts; legal action; taxes; tax law; deal structures; purchase agreement; buying companies; purchasing company; joint ventures; publicly-held corporations; public offerings; commercial lending; hedge fund building; reorganization,https://ocw.mit.edu/courses/sloan-school-of-management/15-617-the-law-of-corporate-finance-and-financial-markets-spring-2004 +15.649,The Law of Mergers and Acquisitions,Spring,2003,"employment, non-US companies, employment-related issues, legal implications of key roles and deal structures, legal concerns of financial sponsors, publicly-held company, deals involving distressed and hi-tech companies, antitrust concerns, allegations of misconduct",https://ocw.mit.edu/courses/sloan-school-of-management/15-649-the-law-of-mergers-and-acquisitions-spring-2003 +15.660,Strategic HR Management,Spring,2003,"human resource management, human assets, reward systems, performance management, high-performance human resource systems, training and development, recruitment, retention, equal employment opportunity laws, work-force diversity, union-management, human resources",https://ocw.mit.edu/courses/sloan-school-of-management/15-660-strategic-hr-management-spring-2003 +15.665,Power and Negotiation,Spring,2014,"negotiation, distributive bargaining, integrative, communication, coalition, multiparty, opportunities, difficult conversations, build relationships, reflect",https://ocw.mit.edu/courses/sloan-school-of-management/15-665-power-and-negotiation-spring-2014 +15.667,Negotiation and Conflict Management,Spring,2001,negotiation; conflict; persuasion; bargaining; negotiating strategy; power; distributive; integrative; mixed motive; creating solutions; conflict management systems; negotiator; ethics; advocate; job hiring; gender and culture differences; dispute prevention; conflict resolution; systems approach; complaint handling; conciliation; mediation; arbitration; investigation; negotiating with difficult people,https://ocw.mit.edu/courses/sloan-school-of-management/15-667-negotiation-and-conflict-management-spring-2001 +15.668,People and Organizations,Fall,2010,organizations;organizational analysis; teamwork; organizational structure; negotiations; simulations; recruitment negotiations; leadership; managers; innovation; corporate responsibility; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-668-people-and-organizations-fall-2010 +15.676,"Work, Employment, and Industrial Relations Theory",Spring,2008,labor markets; neo-classical labor economics; institutional labor economics; human resource management; negotiations theory; employment relations; collective bargaining; institutional labor market; internal labor market,https://ocw.mit.edu/courses/sloan-school-of-management/15-676-work-employment-and-industrial-relations-theory-spring-2008 +15.761,Introduction to Operations Management,Spring,2013,process analysis; capacity analysis; innovation; inventory management; production; supply chain design; sustainability; operational risk; quality management; revenue management; pricing; queuing; process re-engineering; Toyota; Amazon; CVS; McDonald's; Burger King; Hewlett-Packard; Sport Obermeyer;Walmart,https://ocw.mit.edu/courses/sloan-school-of-management/15-761-introduction-to-operations-management-spring-2013 +15.764,The Theory of Operations Management,Spring,2004,operations management; customer-focused operation systems; customer focus; direct-to-consumer business model; life-cycle management; customer-driven operations; operational practices; distribution systems; customer choice models; assemble-to-order production systems; customer service centers; forecast evolution models; warehouse systems; inventory policies; procurement; managing customer relationships; consumer behavior,https://ocw.mit.edu/courses/sloan-school-of-management/15-764-the-theory-of-operations-management-spring-2004 +15.768,"Management of Services: Concepts, Design, and Delivery",Fall,2010,operations management; service sector; case studies; operations strategy; process design; service models; operations frameworks; retailing; data mining; disruptive models; supply chain; organizational change,https://ocw.mit.edu/courses/sloan-school-of-management/15-768-management-of-services-concepts-design-and-delivery-fall-2010 +15.769,Operations Strategy,Spring,2003,"operations, reengineering, process design, manufacturing, stragegy, supply chain, three dimensional concurrent engineering, charles fine, clockspeed, product development",https://ocw.mit.edu/courses/sloan-school-of-management/15-769-operations-strategy-spring-2003 +15.769,Operations Strategy,Fall,2010,Operations strategy; value chain dynamics; process technology decisions; competition; supplier management; manufacturing; service operations; competition; outsourcing; globalization,https://ocw.mit.edu/courses/sloan-school-of-management/15-769-operations-strategy-fall-2010 +15.778,Management of Supply Networks for Products and Services,Summer,2004,competitiveness of products and services; global economy; product life-cycles; differentiation; diversification; cost-transparency; accountability; supply chain; success of supply networks,https://ocw.mit.edu/courses/sloan-school-of-management/15-778-management-of-supply-networks-for-products-and-services-summer-2004 +15.795,Seminar in Operations Management,Fall,2002,"technology development, operations management, roadmap, innovation, bottleneck, corporate intent, value chain, nanotechnology, bioninformatics, neurotechnology, imaging, diagnostics",https://ocw.mit.edu/courses/sloan-school-of-management/15-795-seminar-in-operations-management-fall-2002 +15.810,Marketing Management,Fall,2004,Use 15.810 F01 keywords.,https://ocw.mit.edu/courses/sloan-school-of-management/15-810-marketing-management-fall-2004 +15.810,Marketing Management,Fall,2010,marketing; pricing; promotion; product distribution; competitive analysis; EVC-based strategy; International market; market strategy; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-810-marketing-management-fall-2010 +15.810,"Marketing Management: Analytics, Frameworks, and Applications",Fall,2015,"marketing ideas; product strategy; advertising; communications, promotion, distribution; price; pricing; customer needs; company skills; competition; collaborators; context in marketing and product development; 5C's; financial services; consumer products; software; auto-mobiles; airline services; not-for-profit eye clinics; e-commerce",https://ocw.mit.edu/courses/sloan-school-of-management/15-810-marketing-management-analytics-frameworks-and-applications-fall-2015 +15.818,Pricing,Spring,2010,pricing strategy; economic value analysis; price elasticities; price customization; pricing complementary products; pricing in platform markets; competitive price responses,https://ocw.mit.edu/courses/sloan-school-of-management/15-818-pricing-spring-2010 +15.821,Listening to the Customer,Fall,2002,"pricing, observation, sequence, marketing research, quantitative, data analysis, segmentation, perceptual mapping, cluster, statistics",https://ocw.mit.edu/courses/sloan-school-of-management/15-821-listening-to-the-customer-fall-2002 +15.822,Strategic Marketing Measurement,Fall,2002,"marketing research, quantitative, data analysis, segmentation, perceptual mapping, cluster, statistics",https://ocw.mit.edu/courses/sloan-school-of-management/15-822-strategic-marketing-measurement-fall-2002 +15.834,Marketing Strategy,Spring,2003,"marketing, corporate strategy, competitive advantage, business, entrepreneur, product managment, investment analysis, technology, consumer, small firm, cross selling, umbrella branding, customer intelligence",https://ocw.mit.edu/courses/sloan-school-of-management/15-834-marketing-strategy-spring-2003 +15.835,Entrepreneurial Marketing,Spring,2002,"entrepreneurship, marketing, strategy, pricing, distribution, customer relationship, preference, venture",https://ocw.mit.edu/courses/sloan-school-of-management/15-835-entrepreneurial-marketing-spring-2002 +15.840,Special Seminar in Marketing: Marketing Management,Spring,2004,marketing management; marketing analysis; market research; competitive analysis; marketing science; creating consumer value; indentifying customer needs; understand purchasing process; forming target segments; product positioning; advertising; advertisements; product distribution; e-commerce; customer lifetime value; pricing; diffusion; customer satisfaction; product life cyclce; branding; brands,https://ocw.mit.edu/courses/sloan-school-of-management/15-840-special-seminar-in-marketing-marketing-management-spring-2004 +15.871,Introduction to System Dynamics,Fall,2013,"system dynamics, systems thinking, models, business dynamics",https://ocw.mit.edu/courses/sloan-school-of-management/15-871-introduction-to-system-dynamics-fall-2013 +15.872,System Dynamics II ,Fall,2013,"system dynamics, systems thinking, models, business dynamics",https://ocw.mit.edu/courses/sloan-school-of-management/15-872-system-dynamics-ii-fall-2013 +15.875,Applications of System Dynamics,Spring,2004,system dynamics process; modeling; business consulting; managerial policy-making; team project; standard method; process consultation; system consultation; system processes; modeling loops; analyzing loops; diffusion model; problem solving; reference modes; momentum policies; causal loop; client consultations; client consulting; molecules of structure; system dynamics models,https://ocw.mit.edu/courses/sloan-school-of-management/15-875-applications-of-system-dynamics-spring-2004 +15.879,Research Seminar in System Dynamics,Spring,2014,"system dynamics, systems thinking, models, business dynamics, system dynamics modeling applied to corporate strategy, modeling software, project management, modeling in the real world, policy issues. bullwhip effect",https://ocw.mit.edu/courses/sloan-school-of-management/15-879-research-seminar-in-system-dynamics-spring-2014 +15.902,Strategic Management I,Fall,2006,strategic management; delta project; corporate; business; functional strategies; business management; business processes; efficiency; business model; strategic planning,https://ocw.mit.edu/courses/sloan-school-of-management/15-902-strategic-management-i-fall-2006 +15.904,Strategic Management II,Fall,2005,strategic management; delta project; corporate; business; functional strategies; business management; business processes; efficiency; business model; strategic planning,https://ocw.mit.edu/courses/sloan-school-of-management/15-904-strategic-management-ii-fall-2005 +15.912,Technology Strategy,Fall,2008,disruptive technology; strategy; models; analysis; competition; change; organizational competence; vertical integration; S-curves; organizational strategy; market evolution; market dynamics; simple rules; worse before better; standards; tipping; complementary assets; capturing value; value chain; network effects; market share; innovation,https://ocw.mit.edu/courses/sloan-school-of-management/15-912-technology-strategy-fall-2008 +15.960,New Executive Thinking Social-Impact Technology Projects,Fall,2017,"Sloan Fellows +innovators +global needs +healthcare +energy +environment +low-income markets +new technology +scale +sustainability +quality +underserved markets +impact +farming +agriculture +lending +peer-to-peer +micro-investing +entrepreneurship +data analytics +systems thinking +design +behavioral insights +AI +blockchain +industry analysis +business models +agriculture +education +water +cities +health +environment +resources +farming +lenders",https://ocw.mit.edu/courses/sloan-school-of-management/15-960-new-executive-thinking-social-impact-technology-projects-fall-2017-spring-2018 +15.963,"Organizations as Enacted Systems: Learning, Knowing and Change",Fall,2002,"organizations, contemporary businesses, sensemaking, learning, knowing, change. organizations as enacted systems, human interaction, shaping",https://ocw.mit.edu/courses/sloan-school-of-management/15-963-organizations-as-enacted-systems-learning-knowing-and-change-fall-2002 +15.963,Management Accounting and Control,Spring,2007,financial accounting; managerial accounting; cost management; management control; cost structure; product costing; manufacturing costs; absorption costing; cost allocation; organizational architecture; transfer pricing; budgeting; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-963-management-accounting-and-control-spring-2007 +15.963,Advanced Strategy,Spring,2008,competitive advantage; first mover advantage; organizational competencies; relational contracts; worse before better; high performing firms; toyota; southwest airlines; wal-mart; sustained performance; strategy; sloan business school cases,https://ocw.mit.edu/courses/sloan-school-of-management/15-963-advanced-strategy-spring-2008 +15.965,Technology Strategy for System Design and Management,Spring,2009,innovation; strategy; open source; demand opportunity; technology strategy; life-cycles; product development; business ecosystems; disruptive technologies; standards; marketing; open innovation; system design; value capture; business implementation,https://ocw.mit.edu/courses/sloan-school-of-management/15-965-technology-strategy-for-system-design-and-management-spring-2009 +15.967,Managing and Volunteering In the Non-Profit Sector,Spring,2005,non-profit; non-profit sector; STRIVE; HR; human resources; the diocese; NAACP; management; volunteering;,https://ocw.mit.edu/courses/sloan-school-of-management/15-967-managing-and-volunteering-in-the-non-profit-sector-spring-2005 +15.968,The Sociology of Strategy,Spring,2005,strategy; sociology; management; organization theory; firm performance; competition; market interaction; organizational capabilities; diffusion or transfer; knowledge sharing; strategic change; strategic management; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-968-the-sociology-of-strategy-spring-2005 +15.969,Dynamic Leadership: Using Improvisation in Business,Fall,2004,advanced exercises in the techniques of improvisation; leadership; improv; public speaking; speaking; speech; business situations,https://ocw.mit.edu/courses/sloan-school-of-management/15-969-dynamic-leadership-using-improvisation-in-business-fall-2004 +15.972,Professional Seminar in Sustainability,Spring,2010,sustainability; green economy; NHL; entrepreneurship; Stonyfield Farm; non-profit organizations; Ceres; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-972-professional-seminar-in-sustainability-spring-2010 +15.974,Leadership Lab,Spring,2003,"leadership, ethics, corporate responsibility, social innovation, organizational change, business, rapid prototyping, collaboration",https://ocw.mit.edu/courses/sloan-school-of-management/15-974-leadership-lab-spring-2003 +15.974,Practical Leadership,Fall,2004,leadership capabilities; self-assessment; interactive seminar; reflection; coaching; real-time feedback,https://ocw.mit.edu/courses/sloan-school-of-management/15-974-practical-leadership-fall-2004 +15.975,U-Lab: Leading Profound Innovation for a More Sustainable World,Fall,2010,presencing; Theory U; innovation; capitalism; leadership; listening; empathy; creativity; sustainability; U-process,https://ocw.mit.edu/courses/sloan-school-of-management/15-975-u-lab-leading-profound-innovation-for-a-more-sustainable-world-fall-2010 +15.978,Leadership Tools and Teams: A Product Development Lab,Spring,2007,leadership team; leadership tool; leadership; x-team; distributed leadership; leadership development; team; lead; management skills; leadership development tool,https://ocw.mit.edu/courses/sloan-school-of-management/15-978-leadership-tools-and-teams-a-product-development-lab-spring-2007 +15.988,System Dynamics Self Study,Fall,1998,System Dynamics; Computer Modeling; Feedback; Feedback Loops; S-Shaped Growth; Model Validity; Transferability of Structures; Oscillation; Sensitivity Analysis; System Dynamics in Education; Generic Structures; Computer Models,https://ocw.mit.edu/courses/sloan-school-of-management/15-988-system-dynamics-self-study-fall-1998-spring-1999 +15.990,Architecture and Communication in Organizations,Fall,2003,using space; space design for business; space planning; office buildings; architectural design; business communication; distributed work; workplace design; work stations; communication; team work; architecture of knowledge; offices; cubicles,https://ocw.mit.edu/courses/sloan-school-of-management/15-990-architecture-and-communication-in-organizations-fall-2003 +15.992,S-Lab: Laboratory for Sustainable Business,Spring,2008,"sustainability, sustainable business, ecological footprint, world population, biocapacity, carbon, emissions, globalization, innovation, development, business strategy, global warming, green buildings, climate change, limits to growth, design.",https://ocw.mit.edu/courses/sloan-school-of-management/15-992-s-lab-laboratory-for-sustainable-business-spring-2008 +15.996,Cross-Cultural Leadership,Fall,2004,"""effective"" leadership across cultures; skills and behaviors; effective leadership characteristics; one culture; different culture; specific characteristics; different cultures; frameworks for assessing how to approach a work assignment in a different culture",https://ocw.mit.edu/courses/sloan-school-of-management/15-996-cross-cultural-leadership-fall-2004 +15.997,Practice of Finance: Advanced Corporate Risk Management,Spring,2009,risk; corporate finance; risk management; hedging; derivatives; trading operations; pricing risk; liability management; financial policy; valuation; discounted cash flow; asset management; transaction hedging; market volatility; foreign currency derivatives; interest rate risk; liability structure; strategic management; Modigliani-Miller Theory of hedging; dynamic models; monte carlo simulation; random walk model; binomial tree; mispricing; risk neutral pricing,https://ocw.mit.edu/courses/sloan-school-of-management/15-997-practice-of-finance-advanced-corporate-risk-management-spring-2009 +16.00,Introduction to Aerospace Engineering and Design,Spring,2003,"aerospace engineering, aerospace design, aeronautics, astronautics, lighter-than-air (LTA) vehicle design, physics, mathematics, chemistry",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-00-introduction-to-aerospace-engineering-and-design-spring-2003 +16.001,Unified Engineering: Materials and Structures,Fall,2021,,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-001-unified-engineering-materials-and-structures-fall-2021 +16.01,"Unified Engineering I, II, III, & IV",Fall,2005,"Unified; Unified Engineering; aerospace; CDIO; C-D-I-O; conceive; design; implement; operate; team; team-based; discipline; materials; structures; materials and structures; computers; programming; computers and programming; fluids; fluid mechanics; thermodynamics; propulsion; signals; systems; signals and systems; systems problems; fundamentals; technical communication; graphical communication; communication; reading; reseach; experimentation; personal response system; prs; active learning + +First law; first law of thermodynamics; thermo-mechanical; energy; energy conversion; aerospace power systems; propulsion systems; aerospace propulsion systems; heat; work; thermal efficiency; forms of energy; energy exchange; processes; heat engines; engines; steady-flow energy equation; energy flow; flows; path-dependence; path-independence; reversibility; irreversibility; state; thermodynamic state; performance; ideal cycle; simple heat engine; cycles; thermal pressures; temperatures + +linear static networks; loop method; node method; linear dynamic networks; classical methods; state methods; state concepts; dynamic systems; resistive circuits; sources; voltages; currents; Thevinin; Norton; initial value problems; RLC networks; characteristic values; characteristic vectors; transfer function + +ada; ada programming; programming language; software systems; programming style; computer architecture; program language evolution; classification; numerical computation; number representation systems; assembly; SimpleSIM; RISC; CISC; operating systems; single user; multitasking; multiprocessing; domain-specific classification; recursive; execution time; + +fluid dynamics; fluids; physical properties of a fluid; fluid flow; mach; reynolds; conservation; conservation principles; conservation of mass; conservation of momentum; conservation of energy; continuity; inviscid; steady flow; simple bodies; airfoils; wings; channels; aerodynamics; forces; moments; + +equilibrium; freebody diagram; free-body; free body; planar force systems; equipollent systems; equipollence; support reactions; reactions; static determinance; determinate systems; truss analysis; trusses; method of joints; method of sections; statically indeterminate; three great principles; 3 great principles; indicial notation; rotation of coordinates; coordinate rotation; stress; extensional stress; shear stress; notation; plane stress; stress equilbrium; stress transformation; mohr; mohr's circle; principal stress; principal stresses; extreme shear stress; strain; extensional strain; shear strain; strain-displacement; compatibility; strain transformation; transformation of strain; mohr's circle for strain; principal strain; extreme shear strain; uniaxial stress-strain; material properties; classes of materials; bulk material properties; origin of elastic properties; structures of materials; atomic bonding; packing of atoms; atomic packing; crystals; crystal structures; polymers; estimate of moduli; moduli; composites; composite materials; modulus limited design; material selection; materials selection; measurement of elastic properties; stress-strain; stress-strain relations; anisotropy; orthotropy; measurements; engineering notation; Hooke; Hooke's law; general hooke's law; equations of elasticity; boundary conditions; + +multi-disciplinary; models; engineering systems; experiments; investigations; experimental error; design evaluation; evaluation; trade studies; effects of engineering; social context; engineering drawings +",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-01-unified-engineering-i-ii-iii-iv-fall-2005-spring-2006 +16.050,Thermal Energy,Fall,2002,"energy exchange, propulsion, power, second law, thermodynamics, reversible process, irreversible process, irreversibility, lost work, first law, cycles, energy transfer, heat exchange, energy conversion, entropy",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-050-thermal-energy-fall-2002 +16.06,Principles of Automatic Control,Fall,2012,"classical control systems, feedback control systems, bode plots, time-domain and frequency-domain performance measures; stability, root locus method; nyquist criterion, frequency-domain design, state space methods",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-06-principles-of-automatic-control-fall-2012 +16.07,Dynamics,Fall,2009,rigid body dynamics; inertial navigation; Fundamentals of Newtonian mechanics; coordinate systems; relative motion; impulse and momentum; orbital mechanics; central force motion,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-07-dynamics-fall-2009 +16.100,Aerodynamics,Fall,2005,aerodynamics; airflow; air; body; aircraft; aerodynamic modes; aero; forces; flow; computational; CFD; aerodynamic analysis; lift; drag; potential flows; imcompressible; supersonic; subsonic; panel method; vortex lattice method; boudary layer; transition; turbulence; inviscid; viscous; euler; navier-stokes; wind tunnel; flow similarity; non-dimensional; mach number; reynolds number; integral momentum; airfoil; wing; stall; friction drag; drag; induced drag; wave drag; pressure drag; fluid element; shear strain; normal strain; vorticity; divergence; substantial derviative; laminar; displacement thickness; momentum thickness; skin friction; separation; velocity profile; 2-d panel; 3-d vortex; thin airfoil; lifting line; aspect ratio; twist; camber; wing loading; roll moments; finite volume approximation; shocks; expansion fans; shock-expansion theory; transonic; critical mach number; wing sweep; Kutta condition; team project; blended-wing-body; computational fluid dynamics;,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-100-aerodynamics-fall-2005 +16.120,Compressible Flow,Spring,2003,compressible fluid dynamics; fluid dynamics; external flows; internal flows; quasi-on-dimensional; quasi-1D; channel flow; multi-dimensional flows; nozzles; diffusers; inlets; loss generation; interactions; aerodynamic shapes; subsonic; supersonic; transonic; hypersonic; shock waves; vortices; disturbance behavior; unsteady; speed of sound; isentropic flows; non-isentropic flows; potential flows; rotational flows; shaft work; heat addition; mass addition; flow states; flow regime; velocity non-uniformities; density non-uniformities; fluid system components; lift; drag; continuum flow; shock strength; characteristics.,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-120-compressible-flow-spring-2003 +16.121,Analytical Subsonic Aerodynamics,Fall,2017,,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-121-analytical-subsonic-aerodynamics-fall-2017 +16.13,Aerodynamics of Viscous Fluids,Fall,2003,aerodynamics; viscous fluids; viscosity; fundamental theorem of kinematics; convection; vorticity; strain; Eulerian description; Lagrangian description; conservation of mass; continuity; conservation of momentum; stress tensor; newtonian fluid; vorticity; circulation; Navier-Stokes; similarity; dimensional analysis; thin shear later approximation; TSL coordinates; boundary conditions; shear later categories; local scaling; Falkner-Skan flows; solution techniques; finite difference methods; Newton-Raphson; integral momentum equation; Thwaites method; integral kinetic energy equation; dissipation; asymptotic perturbation; displacement body; transpiration; form drag; stall; interacting boundary layer theory; stability; transition; small-perturbation; Orr-Somemerfeld; temporal amplification; spatial amplification; Reynolds; Prandtl; turbulent boundary layer; wake; wall layers; inner variables; outer variables; roughness; Clauser; Dissipation formula; integral closer; turbulence modeling; transport models; turbulent shear layers; compressible then shear layers; compressibility; temperature profile; heat flux; 3D boundary layers; crossflow; lateral dilation; 3D separation; constant-crossflow; 3D transition;,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-13-aerodynamics-of-viscous-fluids-fall-2003 +16.20,Structural Mechanics,Fall,2002,"solid mechanics, high-technology structures, Structural design considerations, three-dimensional elasticity theory; stress, strain, anisotropic materials, heating effects, torsion theory, Bending, shear, Buckling, stability phenomena, structural dynamics",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-20-structural-mechanics-fall-2002 +16.21,Techniques for Structural Analysis and Design ,Spring,2005,analysis techniques; complex structures; material properties; structural design; failure; longevity; Energy principles; structural analysis; statically-indeterminate structures; solid continua; Crack formation; fracture mechanics; failure modes,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-21-techniques-for-structural-analysis-and-design-spring-2005 +16.225,Computational Mechanics of Materials,Fall,2003,"Computational Mechanics, Computation, Mechanics, Materials, numerical methods, numerical, nonlinear continuum response, continuum response, continuum, deformation, elasticity, inelasticity, dynamics, Variational formulation, variational constitutive updates, finite element , discretization, error estimation, constrained problems, time integration, convergence analysis, programming.",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-225-computational-mechanics-of-materials-fall-2003 +16.30,Estimation and Control of Aerospace Systems,Spring,2004,estimation of aerospace systems; control of aerospace systems; control systems; frequency domain; state space; control law design; Nyquist diagram; Bode plot; state feedback; state estimation; dynamic control; nonlinearities; nonlinearity; control design; computer-aided control design; feedback control system,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-30-estimation-and-control-of-aerospace-systems-spring-2004 +16.30,Feedback Control Systems,Fall,2010,control design; control analysis; state-space methods; linear systems; estimation filters; dynamic output feedback; full state feedback; state estimation; output feedback; nonlinear analysis; model uncertainty; robustness,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-30-feedback-control-systems-fall-2010 +16.322,Stochastic Estimation and Control,Fall,2004,"probability, stochastic estimation, estimation, random variables, random processes, state space, Wiener filter, control system design, estimation, Kalman filter",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-322-stochastic-estimation-and-control-fall-2004 +16.323,Principles of Optimal Control,Spring,2008,nonlinear optimization; dynamic programming; HJB Equation; calculus of variations; constrained optimal control; singular arcs; stochastic optimal control; LQG robustness; feedback control systems; model predictive control; line search methods; Lagrange multipliers; discrete LQR,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-323-principles-of-optimal-control-spring-2008 +16.333,Aircraft Stability and Control,Fall,2004,"aircraft static stability, static equilibrium, aircraft dynamics, aircraft longitudinal modes, aircraft lateral modes, aircraft control, classical control, state space control",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-333-aircraft-stability-and-control-fall-2004 +16.346,Astrodynamics,Fall,2008,space navigation; two body problem; boundary value problem; Kepler; astrodynamics; orbital transfer; satellite; hyperbolic orbits; planetary flybys; hypergeometric functions; flight guidance; three body problem; Clohessy-Wiltshire equation; Hodograph plane; Battin-vaughan formulation;atmospheric drag; disturbing function; ,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-346-astrodynamics-fall-2008 +16.36,Communication Systems Engineering,Spring,2009,digital communications; networking; information theory; sampling; quantization; coding; modulation; signal detection; data networking; multiple access; packet transmission; routing; aerospace communication; aircraft communication; satellite communication; deep space communication; communication systems haykin; computer networks tanenbaum; communication systems engineering proakis; sampling theorem; entropy; signal detection in noise; delay models,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-36-communication-systems-engineering-spring-2009 +16.400,Human Factors Engineering,Fall,2011,human factors; attention and workload; manual control; automation; decision making; situational awareness; anthropometry; environmental ergonomics; space physiology; research methods; space bioastronautics; fatigue; Circadian rhythms; response selection; control of movement,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-400-human-factors-engineering-fall-2011 +16.410,Principles of Autonomy and Decision Making,Fall,2010,state space search; constraints; planning; model based reasoning; global path planning; mathematical programming; hidden markov models; dynamic programming; machine learning; game theory,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-410-principles-of-autonomy-and-decision-making-fall-2010 +16.422,Human Supervisory Control of Automated Systems,Spring,2004,"human supervisory control, dynamic systems, complex dynamic systems, automation, automated systems, decision processes, man-machine, supervisory functions, human-centered, systems engineering design, semi-structured models, tast analysis, function allocation, memory, attention, classical decision theory, signal detection, uncertainty, naturalistic decision making, workload, situation awareness, aircraft displays, flight management systems, human error, reliability, cooperative decision support, adaptive automation, alerting systems, command and control, air traffic control, unmanned space vehicles, automobile systems, telemedicine, telerobotics, medical interface design, nuclear control plants, process control plants",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-422-human-supervisory-control-of-automated-systems-spring-2004 +16.459,Bioengineering Journal Article Seminar,Fall,2011,"bioastronautics, human factors, human factors engineering, operator performance, automation, human automation interaction, performance enhancement, safety design, spaceflight, impact of spaceflight on humans, intracranial pressure, vision change, astronaut health, astronaut safety, fatigue, sleep restriction, ",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-459-bioengineering-journal-article-seminar-fall-2011 +16.485,Visual Navigation for Autonomous Vehicles,Fall,2020,"autonomous vehicles, SLAM, Visual-Inertial Navigation, geometric control, Trajectory Optimization, 2D Computer Vision, Place Recognition, Visual Odometry",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-485-visual-navigation-for-autonomous-vehicles-vnav-fall-2020 +16.50,Introduction to Propulsion Systems,Spring,2012,"gas turbines, propulsion, rockets, rocket engines, air-breathing engines, turbomachines, aeroengines, turbines, aircraft engines, turbofans, thrusters, combustion turbine, turbojets, turboprops, chemical propulsion, electrical propulsion, rocket nozzles,",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-50-introduction-to-propulsion-systems-spring-2012 +16.512,Rocket Propulsion,Fall,2005,"chemical rocket propulsion systems for launch, orbital, and interplanetary flight; Modeling of solid propellant; liquid-bipropellant; hybrid rocket engines; thermochemistry; prediction of specific impulse; nozzle flows including real gas and kinetic effects; structural constraints; propellant feed systems; turbopumps; combustion processes in solid, liquid, and hybrid rockets; cooling; heat sink; ablative; +",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-512-rocket-propulsion-fall-2005 +16.522,Space Propulsion,Spring,2015,"space propulsion, rocket propulsion, spacecraft propulsion requirements, propulsion, space mission analysis, monopropellant thrusters, arcjets, ion engines, hall thrusters, electromagnetic plasma acceleration, electrothermal augmentation, electrostatic thrusters, magnetoplasmadynamic thrusters, electrospray propulsion, electrodynamic tethers, space power",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-522-space-propulsion-spring-2015 +16.540,Internal Flows in Turbomachines,Spring,2006,internal fluid motions in turbomachines; propulsion systems; ducts and channels; fluid machinery; fundamentals of rotational flows; loss sources and loss accounting in fluid devices; unsteady internal flow and flow instability; flow in rotating passages; swirling flow; generation of streamwise vorticity and three-dimensional flow; non-uniform flow; fluid components,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-540-internal-flows-in-turbomachines-spring-2006 +16.55,Ionized Gases,Fall,2014,"Ionized gases, plasma physics, motion of charges, drift, adiabatic invariants, collision theory, kinetic theory, H theorem, entropy, Maxwellian distribution, Boltzmann equation, plasma sheath, electrostatic probe, orbital motion limit, equilibrium statistical mechanics, radiation transport",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-55-ionized-gases-fall-2014 +16.61,Aerospace Dynamics,Spring,2003,"aerospace dynamics, Newtonian dynamics, +3D motion, gyroscopic, rotational, dynamics, +coordinate transformations, Lagrangian, motion, aircraft ,flight, stability, spacecraft",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-61-aerospace-dynamics-spring-2003 +16.621,Experimental Projects I,Spring,2003,"experiment, experimental project, laboratory, measurement, report writing, oral presentation, design, proposal, hypothesis, communication",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-621-experimental-projects-i-spring-2003 +16.622,Experimental Projects II,Fall,2003,"experiment, experimental project, laboratory, measurement, report writing, oral presentation, design, proposal, hypothesis, communication",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-622-experimental-projects-ii-fall-2003 +16.682,Prototyping Avionics,Spring,2006,engineering design; rapid prototyping; manufacturing; testing; system components; complex structural parts; hand sketching; CAD; CAD modeling; CAE; CAE analysis; CAM programming; CNC; CNC machining; computer aided design; computer aided; structual testing; multiobjective design; optimization; computational methods; tools; design process; design competition; active learning; hands-on; human creativity; holistic; solidworks; finite element; FEM; FEM analysis; COSMOS; omax; presentation; CDIO;,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-682-prototyping-avionics-spring-2006 +16.682,Technology in Transportation,Spring,2011,"technology; transportation; +energy in transportation; internal combustion engines; road vehicle engineering; machine elements; hybrids; electricity and magnetism; shipping; fluid dynamics; aircraft types and history; GPS; GIS; radar. ",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-682-technology-in-transportation-spring-2011 +16.687,Private Pilot Ground School,IAP,2019,"flight training, FAA Private Pilot Knowledge Exam, aerodynamics, navigation, aircraft performance, aircraft ownership and maintenance, flight planning, small UAS operations, multi-engine and jets",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-687-private-pilot-ground-school-january-iap-2019 +16.72,Air Traffic Control,Fall,2006,air traffic control; air traffic control systems; systems-analysis; capacity; safety; surveillance; NAS; ARTS; navigation subsystem technology; aircraft guidance and control; communications; collision avoidance systems; sequencing and spacing; terminal areas; NGATS;,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-72-air-traffic-control-fall-2006 +16.810,Engineering Design and Rapid Prototyping,IAP,2005,engineering design; rapid prototyping; manufacturing; testing; system components; complex structural parts; hand sketching; CAD; CAD modeling; CAE; CAE analysis; CAM programming; CNC; CNC machining; computer aided design; computer aided; structual testing; multiobjective design; optimization; computational methods; tools; design process; design competition; active learning; hands-on; human creativity; holistic; solidworks; finite element; FEM; FEM analysis; COSMOS; omax; presentation; CDIO;,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-810-engineering-design-and-rapid-prototyping-january-iap-2005 +16.810,Engineering Design and Rapid Prototyping,IAP,2007,engineering design; rapid prototyping; manufacturing; testing; system components; complex structural parts; hand sketching; CAD; CAD modeling; CAE; CAE analysis; CAM programming; CNC; CNC machining; computer aided design; computer aided; structual testing; multiobjective design; optimization; computational methods; tools; design process; design competition; active learning; hands-on; human creativity; holistic; solidworks; finite element; FEM; FEM analysis; COSMOS; omax; presentation; CDIO;,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-810-engineering-design-and-rapid-prototyping-january-iap-2007 +16.812,The Aerospace Industry,Spring,2004,"aerospace industry, current events, lean, lean enterprise, lean aerospace initiative, aerospace history, value creation, reflective thinking, career interests, class discussions, student journal, evolution of aerospace, cold war legacy, lean thinking",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-812-the-aerospace-industry-spring-2004 +16.842,Fundamentals of Systems Engineering,Fall,2015,"systems engineering, PDR-level design, Cansat Competition, V-model, META approach, stakeholder analysis, requirements definition, system architecture and concept generation, trade-space exploration and concept selection, design definition and optimization, system integration and interface management, system safety.",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-842-fundamentals-of-systems-engineering-fall-2015 +16.851,Satellite Engineering,Fall,2003,"satellites, satellite engineering, subsystems, satellite design, launch systems, space environment, payloads, orbital mechanics, spacecraft mission design, spacecraft, attitude determination, attitude control, propulsion, thermal systems, ground systems, optics, payloads, autonomy, integrated concurrent engineering, power subsystems, GPS, navigation, avionics, ISS operations, satellite tool kit, STK",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-851-satellite-engineering-fall-2003 +16.881,Robust System Design,Summer,1998,"robust system design, quality characteristics, product development, noise factors, parameter design, active control, rational tolerances",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-881-robust-system-design-summer-1998 +16.886,Air Transportation Systems Architecting,Spring,2004,"Air transportation, air transport, air transportation systems, product definition, air transportation industry, system case study, very large transport aircraft, supersonic business jet, next generation cargo system, business plan, system specifications document",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-886-air-transportation-systems-architecting-spring-2004 +16.982,Bio-Inspired Structures,Spring,2009,biomimetics; nanotechnology; smart structures; morphing structures; material properties; nanostructures; self-assembly; structural behavior; nanoparticles; integrative design; bioactive material; nanomanufacturing; smart materials; biosensors; multifunctional materials; bio-inspired structures;,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-982-bio-inspired-structures-spring-2009 +17.148,Political Economy of Globalization,Spring,2006,Political science; economy; globalization; europe; politics; international; industrialized countries; deomocracy; 19th century; 20th century; policy; state; society.,https://ocw.mit.edu/courses/political-science/17-148-political-economy-of-globalization-spring-2006 +17.181,"Sustainability: Political Economy, Science, and Policy +",Fall,2016,grwoth; sustainability; cyberspace; social mechanisms; cognitive factors; production; consumption; technology; firms markers; climate change; sustainable development; solution stategies; dilemmas; global accord; alternative futures; ,https://ocw.mit.edu/courses/political-science/17-181-sustainability-political-economy-science-and-policy-fall-2016 +17.196,Globalization,Fall,2005,"international economy;domestic politics; economy; and society,; globalization; wages; inequality; social safety nets; production; innovation; developed countries; developing countries; democracy.",https://ocw.mit.edu/courses/political-science/17-196-globalization-fall-2005 +17.20,Introduction to the American Political Process,Spring,2004,"united states, american, politics, government, voting, institutions, policy, legislation, elections, campaigns, public opinion, political interests, welfare, analysis",https://ocw.mit.edu/courses/political-science/17-20-introduction-to-the-american-political-process-spring-2004 +17.20,Introduction to American Politics ,Spring,2013,American politics; The Constitution; politicians; Congress; the Presidency; bureaucracy; judiciary; federalism; public opinion; political parties; partisanship; choice; campaigns; elections; policy; political geography; polarization; extremism; organized interests; economic inequality; race; immigration; multiculturalism ,https://ocw.mit.edu/courses/political-science/17-20-introduction-to-american-politics-spring-2013 +17.200,Graduate Seminar in American Politics I: Political Behavior,Fall,2016,"politics, American politics, political behavior, public opinion, political parties, political communication, political media, voting, voting behavior, campaigns, political campaigns",https://ocw.mit.edu/courses/political-science/17-200-graduate-seminar-in-american-politics-i-political-behavior-fall-2016 +17.20,Introduction to the American Political Process,Fall,2020,"democracy +electoral college +campaign finance +elections +voting rights +The Constitution +Congress +parties +state politics +The Presidency +gender politics +carceral state +racial divide +Donald Trump +immigration",https://ocw.mit.edu/courses/political-science/17-20-introduction-to-the-american-political-process-fall-2020 +17.202,Graduate Seminar in American Politics II,Spring,2010,"American politics, Congress, President, courts, Bureaucracy, political parties, political interest groups",https://ocw.mit.edu/courses/political-science/17-202-graduate-seminar-in-american-politics-ii-spring-2010 +17.251,Congress and the American Political System I,Fall,2016,"congress, united states congress, politics, american politics, house of representatives, senate, united states government, legislative branch, congressional behavior, federal government, 2016 congressional election",https://ocw.mit.edu/courses/political-science/17-251-congress-and-the-american-political-system-i-fall-2016 +17.261,Congress and the American Political System II,Fall,2005,"Political science; congress; American; system; theory; legislature; sociological models; economic models; legislative behavior; floor decision-making; committee behavior; political parties; relations; Federal government; elections. +",https://ocw.mit.edu/courses/political-science/17-261-congress-and-the-american-political-system-ii-fall-2005 +17.262,Congress and the American Political System II,Spring,2023,, +17.263,"American Elections +",Fall,2020,"elections +electoral politics +American Electorate +political parties +candidates +polls +campaign finance +campaign strategies +media +Presidential campaigns +Congressional campaigns +state and local campaigns +voter participation",https://ocw.mit.edu/courses/political-science/17-263-american-elections-fall-2020 +17.265,Public Opinion and American Democracy,Spring,2007,public opinion; politics; public policy-making; political psychology; political behavior; american democracy; war; economic and social policies; campaigns; elections; government,https://ocw.mit.edu/courses/political-science/17-265-public-opinion-and-american-democracy-spring-2007 +17.269,"Race, Ethnicity, and American Politics",Spring,2017,"race; ethnicity; American politics; political science immigration; Census measurement; multiracial; racial discrimination; voter ID laws; sociology; history; economics, voting rights; political system; policy, protest; mobilization; advertising; media; campaign strategy; diversity; voter turnout;electoral districting; Carceral State; Shelby; ",https://ocw.mit.edu/courses/political-science/17-269-race-ethnicity-and-american-politics-spring-2017 +17.271,"Mass Incarceration in the United States +",Fall,2020,"United States +incarceration +race +prison +crime +laws +reform +public opinion +police +elections",https://ocw.mit.edu/courses/political-science/17-271-mass-incarceration-in-the-united-states-fall-2020 +17.317,U.S. Social Policy,Spring,2006,United States social policy; U.S. policymaking process; political institutions; policy elites; media; mass public; American exceptionalism; Congress; U.S. courts; representative government and participation; policy in practice,https://ocw.mit.edu/courses/political-science/17-317-u-s-social-policy-spring-2006 +17.40,"American Foreign Policy: Past, Present, Future",Fall,2017,"U.S. foreign economic policy +World War I +World War II +Cold War +Korean War +national security +War on Terror +Foreign economic policy +Cuban Missile Crisis +Indochina War +Al Qaeda +Donald Trump +Nuclear weapons +national security +defense +international politics +containment +human rights +ISIS +Islamic State + + +",https://ocw.mit.edu/courses/political-science/17-40-american-foreign-policy-past-present-and-future-fall-2017 +17.407,Chinese Foreign Policy,Fall,2005,China; chinese; foreign; policy; international relations; People’s Republic of China; foreign relations; Cold War; contemporary; diplomatic; security; economic; 1949; conflict; cooperation;behavior; competing explanations; key events; political science; history; international relations theory.,https://ocw.mit.edu/courses/political-science/17-407-chinese-foreign-policy-fall-2005 +17.407,Chinese Foreign Policy: International Relations and Strategy,Spring,2009,"China, strategy, military, mao zedong, the Art of War, ancient chinese thought, conflict, international relations, foreign policy, modern China, contemporary China, chinese literature, Chinese military history, Chinese intellectualy history",https://ocw.mit.edu/courses/political-science/17-407-chinese-foreign-policy-international-relations-and-strategy-spring-2009 +17.408,Chinese Foreign Policy,Fall,2013,Chinese foreign policy; international relations; Korean War; ideology; Yalu; Mao; Nehru; bipolarity; nuclear weapons; territorial sovereignty; strategic weapons; nationalism; security; economic policies; World Trade Organization; economic integration; social state; multilateralism; regional security; ,https://ocw.mit.edu/courses/political-science/17-408-chinese-foreign-policy-fall-2013 +17.410,"Globalization, Migration, and International Relations",Spring,2006,globalization; migration; international relations; political science; environment; public policy; transnational organization; sustainable development; global change; government; technology; security; civil society; political theory,https://ocw.mit.edu/courses/political-science/17-410-globalization-migration-and-international-relations-spring-2006 +17.418,Field Seminar: International Relations Theory,Fall,2011,"international relations, security, anarchy, power, identity, domestic policy,war, conflict, military, peace, cooperation, compliance, democracy, politics, unipolarity, nuclear proliferation, rationalism, international",https://ocw.mit.edu/courses/political-science/17-418-field-seminar-international-relations-theory-fall-2011 +17.42,Causes and Prevention of War,Spring,2018,"Peloponnesian War; +Seven Year War; +World War I; +World War II; +Korea; +Arab-Israel conflict; +United States; +Iraq; +al-Qaeda; +ISIS; +Religion and war; +German unification; +Hitler; +Pacific War; +nuclear weapons; +nuclear strategy; +Cold War; +Middle East;",https://ocw.mit.edu/courses/political-science/17-42-causes-and-prevention-of-war-spring-2018 +17.428,American Foreign Policy: Theory and Method,Fall,2004,American foreign policy; history; political theory; methodology; research; contemporary politics; controversies; evaluation; social science; archival research; case study,https://ocw.mit.edu/courses/political-science/17-428-american-foreign-policy-theory-and-method-fall-2004 +17.433,International Relations of East Asia,Spring,2011,International relations; East Asia; great powers; nuclear weapons states; largest economies; world politics; Cold War; competition; conflict superpowers; post-Cold War era; global economy; balance; power; cooperation; theory; political science; history.,https://ocw.mit.edu/courses/political-science/17-433-international-relations-of-east-asia-spring-2011 +17.436,Territorial Conflict ,Fall,2004,"International Relations; territorial conflict; states; war; violence; political geography; history; qualitative; quantitative; methods; political science; nationalism; homelands; revisionism; expansion; Empirics, Boundary Management; Diversion; Domestic Mobilization; Anarchy; Power.",https://ocw.mit.edu/courses/political-science/17-436-territorial-conflict-fall-2004 +17.441,International Politics and Climate Change,Fall,2007,"international politics, climate change, biodiversity, Kyoto Protocol, Tragedy of the Commons, economics, environment, human population, international relations, global, United Nations (UN), environmental cooperation, sustainable energy, sustainability, Intergovernmental Panel on Climate Change (IPCC), environmental assessment",https://ocw.mit.edu/courses/political-science/17-441-international-politics-and-climate-change-fall-2007 +17.445,International Relations Theory in the Cyber Age,Fall,2015,international relations; cyber age; globalization; security; realism; neorealism; governance; institutionalism; neo-institutionalism; constructivism; lateral pressure; cyberpolitics; war; international conflict; global agenda; international cooperation; peace; global politics; power; cyberspace; systems; international organization; cyber security; world politics; networks;,https://ocw.mit.edu/courses/political-science/17-445-international-relations-theory-in-the-cyber-age-fall-2015 +17.447,"Cyberpolitics in International Relations: Theory, Methods, Policy",Fall,2011,"international relations; internet, cyberspace; globalization; cybersecurity; spam; cyberthreats; international governance; international law +",https://ocw.mit.edu/courses/political-science/17-447-cyberpolitics-in-international-relations-theory-methods-policy-fall-2011 +17.462,Innovation in Military Organizations,Fall,2005,Political science; security studies; innovation; military organizations; war; history; organization theory; empirical study; land warfare; battleships; airpower; submarines; cruise; ballistic; missiles; armor; military affairs; strategic; tactical; counterinsurgency; Vietnam; Revolution in Military Affairs; RMA,https://ocw.mit.edu/courses/political-science/17-462-innovation-in-military-organizations-fall-2005 +17.473,"The Politics of Nuclear Proliferation: Nuclear History, Strategy, and Statecraft +",Fall,2015,nuclear proliferation; strategy; statecraft; world politics; global community; nuclear weapons; foreign policy; international relations; rogue states; non-state; deterrence; containment; atomic age; bomb scare; Second World War; Manhattan Project; Hiroshima; nuclear power; nuclear age; nonproliferation; early Cold War; the Berlin Crisis; the Cuban Missile Crisis; Detente; nuclear arms control; nuclear balance; Euromissile Crisis; Nuclear Suppliers Group; parity; Dr. Strangelove; terrorism; global zero;U.S. policy; national security; nucelar dynamics;,https://ocw.mit.edu/courses/political-science/17-473-the-politics-of-nuclear-proliferation-nuclear-history-strategy-and-statecraft-fall-2015 +17.478,Great Power Military Intervention,Fall,2013,military intervention; post Cold War; internal conflict; Kurds; Iraq; Somalia; Bosnia; Serbia; Kosovo; Libya; Rwanda; Darfur; Sudan; United States; civil war; political strategies; failing states; foreign policy; NATO; genocide; refugee; sanctions; political reconstruction; peacekeeping; humanitarian intervention; the Balkans; Gaddafi; preventive diplomacy;,https://ocw.mit.edu/courses/political-science/17-478-great-power-military-intervention-fall-2013 +17.480,Understanding Military Operations,Spring,2017,"Political science +military +operations +war +weapon +information processing +technologies +organizational hierarchy +military doctrine +armed warfare +strategic bombing +naval warfare +World War II +Cold War +Strategic Mobility +ISR Politics +IRS Sensors and Networks +Tactical Mobility",https://ocw.mit.edu/courses/political-science/17-480-understanding-military-operations-spring-2017 +17.482,U.S. Military Power,Spring,2015,"united states, us military, military, non-nuclear, adversaries, military action, defense, strategy, campaign analysis, airpower, battle of the bulge, intelligence, military operations, naval power, power projection, guadalcanal, desert storm, operation iraqi freedom, afghanistan, iraq, counter-insurgency, humanitarian military intervention, kosovo, nuclear age, nuclear proliferation, american defense planning, ground campgin, air campaign, missile targeting, logistics-centric, limited war, surface warfare, anti-submarine warfare, israel/lebanon war, operation allied force, libya, ",https://ocw.mit.edu/courses/political-science/17-482-u-s-military-power-spring-2015 +17.484,Comparative Grand Strategy and Military Doctrine,Fall,2004,Strategy; grand; comparative; United States; Great Britian; France; Germany; Russia; Europe; nineteenth century; twentieth century; political; military; security; doctrine; organizations; nationalism; international; World War I; World War II; land warfare; methods; history; case study,https://ocw.mit.edu/courses/political-science/17-484-comparative-grand-strategy-and-military-doctrine-fall-2004 +17.486,Japan and East Asian Security,Fall,2016,Iapan; Asia; China; security; economic policy; United States; Korea; politics; foreign policy; international relations; technology; military; Tokyo; bilateral trade; global warming; terrorism; ,https://ocw.mit.edu/courses/political-science/17-486-japan-and-east-asian-security-fall-2016 +17.50,"Introduction to Comparative Politics +",Fall,2022,"state; +public goods; +representative democracy; +liberalism; +street-level bureaucrats; +government; +economic development; +national identity; +immigration; +politics; +technology; +liberation technology;autocracies; +Arab Spring; +polarization; +external defense; +law enforcement; +criminal justice +outsourcing +critical infrastructures; +power grid; +water systems; +currency;",https://ocw.mit.edu/courses/political-science/17-50-introduction-to-comparative-politics-fall-2022 +17.504,Ethnic Politics I,Fall,2003,Political Science; ethinic; politics; theories; ethnicity; dependent variable; ethnic identities; motivating power; independent variable; political; economic; outcomes; Graduate students.,https://ocw.mit.edu/courses/political-science/17-504-ethnic-politics-i-fall-2003 +17.506,Ethnic Politics II,Spring,2007,measurement; ethnic diversity; fluidity; identity; social identity theory; mechanisms of group comparison; memory; death; stigma; prejudice; contact hypothesis; cascade models; identity simulation,https://ocw.mit.edu/courses/political-science/17-506-ethnic-politics-ii-spring-2007 +17.509,Social Movements in Comparative Perspective,Spring,2005,Political science; social movements; comparative; collective action; twentieth century; United States; civil rights; unemployed workers; welfare rights; pro-choice; pro-life; gay rights; success; failures. ,https://ocw.mit.edu/courses/political-science/17-509-social-movements-in-comparative-perspective-spring-2005 +17.522,Politics and Religion,Fall,2006,social science; institutions; ideology; policymaking; state-building; democracy; regime change; conflict; war; political process; nationalism; terrorism; social movment; modernization; secularization; church-state,https://ocw.mit.edu/courses/political-science/17-522-politics-and-religion-fall-2006 +17.523,Ethnicity and Race in World Politics,Fall,2005,"ethnic, ethnicity, race, politics, racial, racial politics, ethnic politics, mobilization, identities, gender, class, economic, international human rights, human rights, ethnic identity, africa, asia, latin america, europe, united states, darfur, sudan, bosnia, rwanda, sovereignty",https://ocw.mit.edu/courses/political-science/17-523-ethnicity-and-race-in-world-politics-fall-2005 +17.524,Nationalism,Fall,2004,"nationalist thought, nationalist practice, nationalism, political science, national consciousness, identity, nations, nation-states, nationalist ideologies, nationalist movements, modern politics, state-building, economic modernization, democratization, religious conflict. ",https://ocw.mit.edu/courses/political-science/17-524-nationalism-fall-2004 +17.537,Politics and Policy in Contemporary Japan,Spring,2009,"Japan, politics, policy, contemporary Japan, electoral politics, interest group politics, party politics, bureaucratic politics, social policy, foreign policy, defense policy, energy policy, science and technology policy, industrial policy, trade policy",https://ocw.mit.edu/courses/political-science/17-537-politics-and-policy-in-contemporary-japan-spring-2009 +17.541,Japanese Politics and Society,Fall,2008,"Japan, history, economy, technology, education, workplace, community, civil society, nationalism, capitalism, government, universities, schools, martial arts, labor, workers, managers, consumers, religion, management",https://ocw.mit.edu/courses/political-science/17-541-japanese-politics-and-society-fall-2008 +17.559,Comparative Security and Sustainability,Fall,2004,security; sustainability; international relations; comparative approaches; constraints; options; strategies; policy choice; developing and industrial nations; decision; trade-offs; inter-temporal effects; technology; design systems; ,https://ocw.mit.edu/courses/political-science/17-559-comparative-security-and-sustainability-fall-2004 +17.561,European Politics,Fall,2020,"politics +economy +Britain +Germany +Scandinavia +Denmark +Sweden +capitalism +welfare state +parliamentary democracies +Brexit +",https://ocw.mit.edu/courses/political-science/17-561-european-politics-fall-2020 +17.565,"Israel: History, Politics, Culture, Identity",Spring,2019,"Israel +Palestine +Zionist movement +The Holocaust +religion +economy +cinema +Israeli Diaspora +globalization +The Haredi +PLO +The Nakba +The Mizrahim +politics +culture +identity",https://ocw.mit.edu/courses/political-science/17-565-israel-history-politics-culture-identity-spring-2019 +17.568,Comparative Politics and International Relations of the Middle East,Spring,2017,"authoritarianism +democratization +Islamism +terrorism +foreign occupation +state-building +Arab uprisings +Middle East +political violence +sectarianism +gender +Arab Spring +religion +The Syrian Conflict +elections",https://ocw.mit.edu/courses/political-science/17-568-comparative-politics-and-international-relations-of-the-middle-east-spring-2017 +17.581,"Riots, Rebellions, Revolutions",Spring,2013,social action; rational choice; riots; rebellions; revolutions; rationality; j-curve; Southeast Asia; peasant movement; Vietnam; politics; insurgency; civil war; ethnicity; race riot; urban riot; Rodney King; relative deprivation; Spilerman; racial disturbances; protest; nationalist violence; USSR; Balkans; ethnic polarization; Kosovo; Arab Spring; Mali,https://ocw.mit.edu/courses/political-science/17-581-riots-rebellions-revolutions-spring-2013 +17.582,Civil War,Spring,2010,Political science; social science; civil war; origins; duration; termination; conflict;; World Bank; Identity; fear; greed; death; intervention; peace; ,https://ocw.mit.edu/courses/political-science/17-582-civil-war-spring-2010 +17.584,Civil-Military Relations,Spring,2003,Civil; Military; relations; mechanisms; civilian control; Lasswell; Huntington; Finer; case studies; states; civilian rule; society; United States; Soviet Union; Great Purge; Latin America; Turkey; Pakistan; Japan; Africa; Multiethnic States. ,https://ocw.mit.edu/courses/political-science/17-584-civil-military-relations-spring-2003 +17.586,"Warlords, Terrorists, and Militias: Theorizing on Violent Non-State Actors",Spring,2009,terrorism; non-state actors; state-sponsored terrorism; suicide terrorism; militias; warlords; terrorists; insurgents; terror networks; political violence; collective action; terrorist strategies; Mujahideen; jihad; hamas; al-Qaida; Hezbollah; counterterrorism; ,https://ocw.mit.edu/courses/political-science/17-586-warlords-terrorists-and-militias-theorizing-on-violent-non-state-actors-spring-2009 +17.588,Field Seminar in Comparative Politics,Fall,2013,comparative politics; Aristotle; political research; regimes; Marxist model; class alliances; democracy; pluralism; economic growth; party formation; political elites; interest groups; constitutional reform; political system; constitutional choice; leadership; state formation; modernization; ; political institution; embedded autonomy; dead capital; nationalism; electoral behavior; clientelism; patronage politics; corruption; self-government,https://ocw.mit.edu/courses/political-science/17-588-field-seminar-in-comparative-politics-fall-2013 +17.801,Political Science Scope and Methods,Fall,2017,"political science; +research method; +social science; +ethnography; +content analysis; +survey research; +observational data; +libraries; +field research; +political research; +empirical research; +data gathering; + + + + +",https://ocw.mit.edu/courses/political-science/17-801-political-science-scope-and-methods-fall-2017 +17.810,Game Theory,Spring,2021,"game theoretic analysis +political behavior +game theory +microeconomic theory +Nash Equilibrium +preferences +utility representation +form games +static games +dynamic games +repeated games +bargaining +rational choice +social choice +",https://ocw.mit.edu/courses/political-science/17-810-game-theory-spring-2021 +17.871,Political Science Laboratory,Spring,2012,Political science; quantitative tools; research; statistics; social science; empirical questions; STATA,https://ocw.mit.edu/courses/political-science/17-871-political-science-laboratory-spring-2012 +17.905,Forms of Political Participation: Old and New,Spring,2005,community; public life; social network; norms; association; civil society; international relations; politics; democracy; social capital; state; democracy; NGO; globalization; power; corruption; gender; citizen; rebellion; trust; participation; empowerment.,https://ocw.mit.edu/courses/political-science/17-905-forms-of-political-participation-old-and-new-spring-2005 +17.914,"International Politics in the New Century - via Simulation, Interactive Gaming, and 'Edutainment'",IAP,2005,Workshop; political science; politics; world; visualization; techniques; interactive; gaming; edutainment; interactive tools; video; web-based games; blogs; simulations; international; ; twenty-first century. ,https://ocw.mit.edu/courses/political-science/17-914-international-politics-in-the-new-century-via-simulation-interactive-gaming-and-edutainment-january-iap-2005 +17.918,New Global Agenda: Exploring 21st Century Challenges through Innovations in Information Technologies,IAP,2006,Political science; global; Twenty-first Century; innovation; challenges; information technology; workshop; international politics; international relations; global governance; communication; education; democratization; alternative futures; solutions.,https://ocw.mit.edu/courses/political-science/17-918-new-global-agenda-exploring-21st-century-challenges-through-innovations-in-information-technologies-january-iap-2006 +17.951,Special Graduate Topic in Political Science: Public Opinion,Spring,2004,"political science, public opinion, voting, elections, empirical research, analysis, ideology, american, society, media, public policy, foreign policy, democracy, theory",https://ocw.mit.edu/courses/political-science/17-951-special-graduate-topic-in-political-science-public-opinion-spring-2004 +17.951,"Intelligence: Practice, Problems and Prospects",Spring,2005,Political science; security studies; U.S. Intelligence Community; national security; policymakers; future role; 9/11; Iraq; national intelligence; National Security Act of 1947.,https://ocw.mit.edu/courses/political-science/17-951-intelligence-practice-problems-and-prospects-spring-2005 +17.951,Special Graduate Topic in Political Science: Political Behavior,Fall,2005,mass and elite political behavior in the United States; political participation; political inequality; elections; voting behavior; political organizations,https://ocw.mit.edu/courses/political-science/17-951-special-graduate-topic-in-political-science-political-behavior-fall-2005 +17.951,"Nuclear Weapons in International Politics: Past, Present and Future",Spring,2009,"nuclear weapons, war, politics, World War II, Soviet Union, Cold War, Great Britain, France, China, India, Israel, Pakistan, North Korea, nuclear proliferation, nuclear disarmament, security",https://ocw.mit.edu/courses/political-science/17-951-nuclear-weapons-in-international-politics-past-present-and-future-spring-2009 +17.953,"U.S. Budgets for National Security +",Fall,2010,United States; national defense; homeland security; military operations; budget; military forces; systems; policy; strategy; spending; terrorism; military pay; military benefits; federal spending; infrastructure; readiness; alternative; defense; Iraq war; foreign aid; national security; defense budget,https://ocw.mit.edu/courses/political-science/17-953-u-s-budgets-for-national-security-fall-2010 +17.955,"Civil Society, Social Capital, and the State in Comparative Perspective",Fall,2004,"social capital, civil society, social networks, community norms, associational activities, state, democracy, government, economic development, social welfare, democratization, pluralism, public goods provision, state capacity, international politics, globalization, social sanctions, political participation, social movements, civic engagement, politics, political science, ethnic conflict, social justice",https://ocw.mit.edu/courses/political-science/17-955-civil-society-social-capital-and-the-state-in-comparative-perspective-fall-2004 +18.01,Single Variable Calculus,Fall,2005,differentiation and integration of functions of one variable; limits; continuity; differentiation rules; extremum problems;definite and indefinite integration; fundamental theorem of calculus; elementary; techniques of integration; approximation of definite integrals; improper integrals; l'Hôpital's rule,https://ocw.mit.edu/courses/mathematics/18-01-single-variable-calculus-fall-2005 +18.01,Single Variable Calculus,Fall,2006,differentiation and integration of functions of one variable; limits; continuity; differentiation rules; extremum problems;definite and indefinite integration; fundamental theorem of calculus; elementary; techniques of integration; approximation of definite integrals; improper integrals; l'Hôpital's rule,https://ocw.mit.edu/courses/mathematics/18-01-single-variable-calculus-fall-2006 +18.01,Calculus I: Single Variable Calculus,Fall,2020,"Differentiation +Integration +Coordinate Systems +Infinite Series +Limit Laws +Continuity +Intermediate Value Theorem +Derivatives +Approximations +Curve Sketching +Optimization +Related Rates", +18.014,Calculus with Theory,Fall,2010,"axioms for the real numbers; the Riemann integral; limits, theorems on continuous functions; derivatives of functions of one variable; the fundamental theorems of calculus; Taylor's theorem; infinite series, power series, rigorous treatment of the elementary functions.",https://ocw.mit.edu/courses/mathematics/18-014-calculus-with-theory-fall-2010 +18.02,Multivariable Calculus,Spring,2006,calculus; calculus of several variables; vector algebra; determinants; matrix; matrices; vector-valued function; space motion; scalar function; partial differentiation; gradient; optimization techniques; double integrals; line integrals; exact differential; conservative fields; Green's theorem; triple integrals; surface integrals; divergence theorem Stokes' theorem; applications; ,https://ocw.mit.edu/courses/mathematics/18-02-multivariable-calculus-spring-2006 +18.02,Multivariable Calculus,Fall,2007,calculus; calculus of several variables; vector algebra; determinants; matrix; matrices; vector-valued function; space motion; scalar function; partial differentiation; gradient; optimization techniques; double integrals; line integrals; exact differential; conservative fields; Green's theorem; triple integrals; surface integrals; divergence theorem Stokes' theorem; applications; ,https://ocw.mit.edu/courses/mathematics/18-02-multivariable-calculus-fall-2007 +18.022,Calculus of Several Variables,Fall,2010,vector algebra; determinant; matrix; matrices; vector-valued functions; space motion; scalar functions; partial differentiation; gradient; optimization techniques; double integrals; line integrals; exact differentials; conservative fields; Green's theorem; triple integrals; surface integrals; divergence theorem; Stokes' theorem; geometry; vector fields; linear algebra; ,https://ocw.mit.edu/courses/mathematics/18-022-calculus-of-several-variables-fall-2010 +18.024,Multivariable Calculus with Theory,Spring,2011,"linear algebra, vector integral calculus, Calculus of several variables. Vector algebra in 3-space, determinants, matrices. Vector-valued functions of one variable, space motion. Scalar functions of several variables: partial differentiation, gradient, optimization techniques. Double integrals and line integrals in the plane; exact differentials and conservative fields; Green's theorem and applications, triple integrals, line and surface integrals in space, Divergence theorem, Stokes' theorem; applications.",https://ocw.mit.edu/courses/mathematics/18-024-multivariable-calculus-with-theory-spring-2011 +18.03,Differential Equations,Spring,2010,Ordinary Differential Equations; ODE; modeling physical systems; first-order ODE's ; Linear ODE's; second order ODE's; second order ODE's with constant coefficients; Undetermined coefficients ; variation of parameters; Sinusoidal signals; exponential signals; oscillations; damping; resonance; Complex numbers and exponentials; Fourier series; periodic solutions; Delta functions; convolution; Laplace transform methods; Matrix systems; first order linear systems; eigenvalues and eigenvectors; Non-linear autonomous systems; critical point analysis ; phase plane diagrams.,https://ocw.mit.edu/courses/mathematics/18-03-differential-equations-spring-2010 +18.031,System Functions and the Laplace Transform,Spring,2019,"Laplace transform +unit impulse response +step function +delta function +convolution +system function +pole diagram",https://ocw.mit.edu/courses/mathematics/18-031-system-functions-and-the-laplace-transform-spring-2019 +18.034,Honors Differential Equations,Spring,2004,First order equations; separation; initial value problems; Systems; linear equations; independence of solutions; undetermined coefficients; Singular points; periodic orbits for planar systems.,https://ocw.mit.edu/courses/mathematics/18-034-honors-differential-equations-spring-2004 +18.034,Honors Differential Equations,Spring,2009,Quadrature; Maximum Principle; Laplace Transform; Existence Theory; Autonomous System; Lyapunov; Limit Cycles; Fourier Series; Boundary Value Problems; ,https://ocw.mit.edu/courses/mathematics/18-034-honors-differential-equations-spring-2009 +18.04,Complex Variables with Applications,Fall,1999,,https://ocw.mit.edu/courses/mathematics/18-04-complex-variables-with-applications-fall-1999 +18.04,Complex Variables with Applications ,Spring,2018,"Complex algebra and functions, analyticity, contour integration, Cauchy's theorem, singularities, Taylor and Laurent series, residues, evaluation of integrals, multivalued functions, potential theory in 2D, Fourier analysis and Laplace transforms",https://ocw.mit.edu/courses/mathematics/18-04-complex-variables-with-applications-spring-2018 +18.05,Introduction to Probability and Statistics,Spring,2022,"probability +statistics +models +combinatorics +variance +random variable +discrete probability distribution +continuous probability distribution +Bayes distribution +statistical estimation +statistical testing +confidence interval +linear regression", +18.06,Linear Algebra,Spring,2010,matrix theory; linear algebra; systems of equations; vector spaces; determinants; eigenvalues; similarity; positive definite matrices; least-squares approximations; stability of differential equations; networks; Fourier transforms; Markov processes,https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra-spring-2010 +18.065,"Matrix Methods in Data Analysis, Signal Processing, and Machine Learning",Spring,2018,"data analysis, +signal processing, +image processing +machine learning, +linear algebra, +computation, +singular value decomposition, +least squares, +weighted least squares, +covariance matrices, +correlation matrices, +directed graphs, +undirected graphs, +matrix factorizations, +neural nets",https://ocw.mit.edu/courses/mathematics/18-065-matrix-methods-in-data-analysis-signal-processing-and-machine-learning-spring-2018 +18.075,Advanced Calculus for Engineers,Fall,2004,Functions of complex variable; calculus of residues; Ordinary differential equations; Bessel and Legendre functions; Sturm-Liouville theory; partial differential equations.,https://ocw.mit.edu/courses/mathematics/18-075-advanced-calculus-for-engineers-fall-2004 +18.085,Computational Science and Engineering I,Fall,2008,"linear algebra, networks, Lagrange multipliers, differential equations of equilibrium, Laplace's equation, potential flow, boundary-value problems, Fourier series, discrete Fourier transform, convolution",https://ocw.mit.edu/courses/mathematics/18-085-computational-science-and-engineering-i-fall-2008 +18.085,Computational Science and Engineering (I) ,Summer,2020,"linear algebra +networks +structures +finite difference +finite element +Laplace's equation +potential flow +boundary-value problems +Fourier series +discrete Fourier transform +convolution +",https://ocw.mit.edu/courses/mathematics/18-085-computational-science-and-engineering-i-summer-2020 +18.086,Mathematical Methods for Engineers II,Spring,2006,"Scientific computing: Fast Fourier Transform, finite differences, finite elements, spectral method, numerical linear algebra. Complex variables and applications. Initial-value problems: stability or chaos in ordinary differential equations, wave equation versus heat equation, conservation laws and shocks, dissipation and dispersion. Optimization: network flows, linear programming. ",https://ocw.mit.edu/courses/mathematics/18-086-mathematical-methods-for-engineers-ii-spring-2006 +18.091,Mathematical Exposition,Spring,2005,oral presentation; mathematics writing; mathematics presentation;,https://ocw.mit.edu/courses/mathematics/18-091-mathematical-exposition-spring-2005 +18.098,Street-Fighting Mathematics,IAP,2008,"extreme-cases reasoning, dimensional analysis, discretization, drag, fluid mechanics, pendulum, pictorial proofs, analogy, operators, summation, square roots, logarithms, musical intervals, taking out the big part, integration, differentiation",https://ocw.mit.edu/courses/mathematics/18-098-street-fighting-mathematics-january-iap-2008 +18.101,Analysis II,Fall,2005,Differentiable map; inverse function theorem;implicit function theorem; Riemann integral; change of variables; manifolds; differential forms Stokes' theorem;,https://ocw.mit.edu/courses/mathematics/18-101-analysis-ii-fall-2005 +18.102,Introduction to Functional Analysis,Spring,2009,"linear spaces, metric spaces, normed spaces, Banach spaces, Lebesgue integrability, Lebesgue integrable functions, null functions, Monotonicity, Fatou's Lemma, Hilbert spaces, Baire's theorem, Bessel's inequality, compact sets, weak convergence, weak compactness, Fourier series, Dirichlet problem, harmonic oscillator, Fourier transform",https://ocw.mit.edu/courses/mathematics/18-102-introduction-to-functional-analysis-spring-2009 +18.102,Introduction to Functional Analysis,Spring,2021,"normed spaces, completeness, functionals, Hahn-Banach theorem, duality, operators, Lebesgue measure, measurable functions, integrability, completeness of Lp spaces, Hilbert space, compact and self-adjoint operators, spectral theorem", +18.103,Fourier Analysis,Fall,2013,"Fourier series, Fourier analysis, partial sums, waves, Boolean rings, Hilbert Space, Orthonormal bases, Lp theory, Fourier integrals, measure, central limit theorem, brownian motion, Lebesgue integral, periodic functions, Fourier coefficients, Parseval's formula, Bernoulli sequence, random walks, probability theory, Lebesgue measure",https://ocw.mit.edu/courses/mathematics/18-103-fourier-analysis-fall-2013 +18.104,Seminar in Analysis: Applications to Number Theory,Fall,2006,Infinitude of the primes; Summing powers of integers; Bernoulli polynomials; sine product formula; $\zeta(2n)$ ; Fermat's Little Theorem ; Fermat's Great Theorem ; Averages of arithmetic functions ; arithmetic-geometric mean; Gauss' theorem ; Wallis's formula ; Stirling's formula; prime number theorem ; Riemann's hypothesis; Euler's proof of infinitude of primes; Density of prime numbers;Euclidean algorithm ;Golden Ratio ,https://ocw.mit.edu/courses/mathematics/18-104-seminar-in-analysis-applications-to-number-theory-fall-2006 +18.112,Functions of a Complex Variable,Fall,2008,functions of one complex variable; Cauchy's theorem;holomorphic functions; meromorphic functions; residues; contour integrals; conformal mapping; Infinite series and products; the gamma function; the Mittag-Leffler theorem; Harmonic functions;Dirichlet's problem; The Riemann mapping theorem; The Riemann Zeta function. ,https://ocw.mit.edu/courses/mathematics/18-112-functions-of-a-complex-variable-fall-2008 +18.117,Topics in Several Complex Variables,Spring,2005,Harmonic theory; complex manifolds; Hodge decomposition theorem; Hard Lefschetz theorem; Vanishing theorems; deformation of complex manifolds; uniformization of complex manifolds;,https://ocw.mit.edu/courses/mathematics/18-117-topics-in-several-complex-variables-spring-2005 +18.125,Measure and Integration,Fall,2003,Lebesgue integral; convergence theorems; Lebesgue measure in Rn; Lpspaces; Radon-Nikodym Theorem; Lebesgue Differentiation Theorem; Fubini Theorem; Hausdorff measure; Area and Coarea Formulas.,https://ocw.mit.edu/courses/mathematics/18-125-measure-and-integration-fall-2003 +18.152,Introduction to Partial Differential Equations,Fall,2005,"Harmonic functions, Harnack inequality, gradient estimate, Hopf Maximum Principle, +Poincare Inequalities, +Cacciopolli Inequality, Dirichlet problem, Campanato's lemma, Morrey's lemma, Moser's Approach",https://ocw.mit.edu/courses/mathematics/18-152-introduction-to-partial-differential-equations-fall-2005 +18.152,Introduction to Partial Differential Equations,Fall,2011,"diffusion; elliptic; hyperbolic; partial differential equation; +Initial and boundary value problems for ordinary differential equations; Sturm-Liouville theory and eigenfunction expansions; initial value problems; wave equation;heat equation; Dirichlet problem; Laplace operator and potential theory; Black-Scholes equation; water waves; scalar conservation laws; first order equations ",https://ocw.mit.edu/courses/mathematics/18-152-introduction-to-partial-differential-equations-fall-2011 +18.155,Differential Analysis,Fall,2004,elliptic; hyperbolic; parabolic differential operators; Lebesgue integration; Distributions; Fourier transform; Homogeneous distributions; Asymptotic methods,https://ocw.mit.edu/courses/mathematics/18-155-differential-analysis-fall-2004 +18.156,Differential Analysis,Spring,2004,"Sobolev spaces; Fredholm alternative; Variable coefficient elliptic, parabolic and hyperbolic linear partial differential equations; Variational methods; Viscosity solutions of fully nonlinear partial differential equations.",https://ocw.mit.edu/courses/mathematics/18-156-differential-analysis-spring-2004 +18.156,Differential Analysis II: Partial Differential Equations and Fourier Analysis,Spring,2016,elliptic PDE; dispersive PDE; Fourier analysis; Fourier transform; Fourier inversion theorem; Plancherel theorem; Schauder inequality; Strichartz inequality; Sobolev spaces; Gauss circle problem.,https://ocw.mit.edu/courses/mathematics/18-156-differential-analysis-ii-partial-differential-equations-and-fourier-analysis-spring-2016 +18.175,Theory of Probability,Spring,2014,Laws of large numbers; central limit theorems for sums of independent random variables; conditioning and martingales; Brownian motion and elements of diffusion theory; functional limit theorems. ,https://ocw.mit.edu/courses/mathematics/18-175-theory-of-probability-spring-2014 +18.177,Universal Random Structures in 2D,Fall,2015,"continuum random tree, stable Levy tree, stable looptree, Gaussian free field, Schramm-Loewner evolution, percolation, +uniform spanning tree, loop-erased random walk, Ising model, FK cluster model, +conformal loop ensemble, Brownian loop soup, random planar map, Liouville +quantum gravity, Brownian map, Brownian snake, difu usion limited aggregation, +fi rst passage percolation, and dielectric breakdown model, imaginary geometry, quantum zipper, peanosphere, quantum Loewner evolution.",https://ocw.mit.edu/courses/mathematics/18-177-universal-random-structures-in-2d-fall-2015 +18.212,Algebraic Combinatorics,Spring,2019,"enumeration methods, permutations, partitions, partially ordered sets and lattices, Young tableaux, graph theory, matrix tree theorem, electrical networks, convex polytopes",https://ocw.mit.edu/courses/mathematics/18-212-algebraic-combinatorics-spring-2019 +18.217,Graph Theory and Additive Combinatorics,Fall,2019,"graph theory +additive combinatorics +Ramsey theory +Schur’s theorem +Mantel’s theorem +Turán’s theorem +Erdős-Stone-Simonovits theorem +Kővári-Sós-Turán theorem +Szemerédi’s graph regularity lemma +triangle counting lemma +triangle removal lemma +Roth’s theorem +hypergraph removal lemma +Green-Tao theorem +martingale convergence theorem +Freiman’s theorem +Ruzsa triangle inequality +Ruzsa covering lemma +Balog-Szémeredi-Gowers theorem +Szemerédi-Trotter theorem",https://ocw.mit.edu/courses/mathematics/18-217-graph-theory-and-additive-combinatorics-fall-2019 +18.218,"Topics in Combinatorics: Analysis of Boolean Functions +",Spring,2021,, +18.226,Probabilistic Method in Combinatorics,Fall,2020,"probabilistic method +Ramsey numbers +Lovász Local Lemma +hypergraph colorings +balancing vectors +sum-free sets +second Moment Method +Chernoff bound +Moser-Tardos algorithm +Janson’s inequalities +Harris-FKG inequality +Martingale convergence +Azuma’s inequality +entropy methods +occupancy method",https://ocw.mit.edu/courses/mathematics/18-226-probabilistic-method-in-combinatorics-fall-2020 +18.238,Geometry and Quantum Field Theory,Fall,2002,perturbative quantum field theory; classical field theory; free quantum theories; Feynman diagrams; Renormalization theory; Local operators; Operator product expansion; Renormalization group equation;,https://ocw.mit.edu/courses/mathematics/18-238-geometry-and-quantum-field-theory-fall-2002 +18.303,Linear Partial Differential Equations,Fall,2006,diffusion; Laplace equations; Poisson; wave equations; separation of variables; Fourier series; Fourier transforms; eigenvalue problems;Green's function; Heat Equation; Sturm-Liouville Eigenvalue problems; quasilinear PDEs; Bessel functions,https://ocw.mit.edu/courses/mathematics/18-303-linear-partial-differential-equations-fall-2006 +18.303,Linear Partial Differential Equations: Analysis and Numerics,Fall,2014,diffusion; Laplace equations; Poisson; wave equations; separation of variables; Fourier series; Fourier transforms; eigenvalue problems;Green's function; Heat Equation; Sturm-Liouville Eigenvalue problems; quasilinear PDEs; Bessel functionsORDS,https://ocw.mit.edu/courses/mathematics/18-303-linear-partial-differential-equations-analysis-and-numerics-fall-2014 +18.304,Undergraduate Seminar in Discrete Mathematics,Spring,2015,"discrete math, discrete mathematics, presentations, student presentations, oral communication, combinatorics, graph theory, discrete mathematics, Proofs from the Book; mathematics communication",https://ocw.mit.edu/courses/mathematics/18-304-undergraduate-seminar-in-discrete-mathematics-spring-2015 +18.305,Advanced Analytic Methods in Science and Engineering,Fall,2004,"elementary methods complex analysis; ordinary differential equations; partial differential equations; expansions around regular irregular singular points; asymptotic evaluation integrals, regular perturbations; WKB method; multiple scale method; boundary-layer techniques.",https://ocw.mit.edu/courses/mathematics/18-305-advanced-analytic-methods-in-science-and-engineering-fall-2004 +18.306,Advanced Partial Differential Equations with Applications,Fall,2009,partial differential equations (pde); nonlinear pde. Diffusion; dispersion; Initial and boundary value problems; Characteristics and shocks; Separation of variables; transform methods; Green's functions; Asymptotics; geometrical theory; Dimensional analysis; self-similarity; traveling waves; Singular perturbation and boundary layers; Solitons; Variational methods; Free-boundary problems,https://ocw.mit.edu/courses/mathematics/18-306-advanced-partial-differential-equations-with-applications-fall-2009 +18.307,Integral Equations ,Spring,2006,integral equations; applied mathematics; Volterra equation; Fredholm equation; Fredholm theory; Hilbert-Schmidt theorem; Wiener-Hopf Method; partial differential equations; Hilbert Problem; singular integral equations; Cauchy type; inverse scattering transform; group theory; fluid mechanics;solid mechanics; acoustics; quantum mechanics; ,https://ocw.mit.edu/courses/mathematics/18-307-integral-equations-spring-2006 +18.310,Principles of Discrete Applied Mathematics,Fall,2013,"probability, probability theory counting, pigeonhole principle, Van der Waerden's theorem, Chernoff bounds, counting, coding, sampling, random sampling, Catalan families, generating functions, chord diagrams, linear programming, simplex method, Zero-Sum matrix, network flows, maximum flow problem, sorting algorithms, QUICKSORT, median finding, sorting networks, Batcher's algorithm, Euclid's algorithm, Chinese Remainder Theorem, cryptography, RSA code, primaility testing, FFT, Fast Fourier Transform, Shannon's coding theorems,Lempel-Ziv codes, linear codes, hamming code",https://ocw.mit.edu/courses/mathematics/18-310-principles-of-discrete-applied-mathematics-fall-2013 +18.311,Principles of Applied Mathematics,Spring,2014,"partial differential equation, hyperbolic equations, dimensional analysis, perturbation methods, hyperbolic systems, diffusion and reaction processes, continuum models, equilibrium models, continuous applied mathematics, traffic flow, fluids, elasticity, granular flows, continuum limit,conservation laws, quasi-equilibrium; kinematic waves, characteristics, simple waves, shocks; diffusion (linear and nonlinear); numerical solution of wave equations; finite differences, consistency, stability; discrete and fast Fourier transforms; spectral methods; transforms and series (Fourier, Laplace), sonic booms, Mach cone, caustics, lattices, dispersion, group velocity",https://ocw.mit.edu/courses/mathematics/18-311-principles-of-applied-mathematics-spring-2014 +18.314,Combinatorial Analysis ,Fall,2014,"Enumeration; Generating functions; Recurrence relations; Construction of Bijections; Graph Theory; Network Algorithms; Extremal Combinatorics. +",https://ocw.mit.edu/courses/mathematics/18-314-combinatorial-analysis-fall-2014 +18.315,"Combinatorial Theory: Introduction to Graph Theory, Extremal and Enumerative Combinatorics",Spring,2005,enumerative combinatorics; algebraic combinatorics; partition identities; young tableaux bijections; spanning trees; random generation of combinatorial objects;,https://ocw.mit.edu/courses/mathematics/18-315-combinatorial-theory-introduction-to-graph-theory-extremal-and-enumerative-combinatorics-spring-2005 +18.315,Combinatorial Theory: Hyperplane Arrangements,Fall,2004,Combinatorial Theory; Hyperplane Arrangements; intersection poset; Matroids; geometric lattices; Broken circuits;modular elements; supersolvability; Finite fields,https://ocw.mit.edu/courses/mathematics/18-315-combinatorial-theory-hyperplane-arrangements-fall-2004 +18.318,Topics in Algebraic Combinatorics,Spring,2006,algebraic combinatorics;matrix-tree theorem ;linear algebra; commutative algebra; exterior algebra ; counting faces of simplicial complexes; tilings; Young's lattice; Shannon capacity; Fisher inequality; Hadamard matrices; f-vectors ; Sperner Property; -Binomial Coeffcients,https://ocw.mit.edu/courses/mathematics/18-318-topics-in-algebraic-combinatorics-spring-2006 +18.319,Geometric Combinatorics ,Fall,2005,discrete geometry; computational geometry; convex partitions; binary space partitions; art gallery problems; Planar graphs; pseudo-triangulations; encompassing graphs; geometric graphs; crossing numbers; extremal graph theory; Gallai-Sylvester problems.,https://ocw.mit.edu/courses/mathematics/18-319-geometric-combinatorics-fall-2005 +18.325,Topics in Applied Mathematics: Waves and Imaging,Fall,2015,waves; imaging; radar imaging; seismic imaging;Radon transform; backprojection; reflection seismology; computerized tomography; synthetic aperture radar,https://ocw.mit.edu/courses/mathematics/18-325-topics-in-applied-mathematics-waves-and-imaging-fall-2012 +18.327,"Wavelets, Filter Banks and Applications",Spring,2003,"Discrete-time filters: convolution; Fourier transform;lowpass and highpass filters. + +Sampling rate change operations: upsampling and downsampling; fractional sampling; interpolation. + +Filter Banks: time domain (Haar example) and frequency domain; conditions for alias cancellation and no distortion. + +Filter Banks (contd.): perfect reconstruction; halfband filters and possible factorizations. + +Modulation and polyphase representations: Noble identities; block Toeplitz matrices and block z-transforms; polyphase examples. + +Matlab wavelet toolbox. + +Orthogonal filter banks: paraunitary matrices; orthogonality condition (Condition O) in the time domain, modulation domain and polyphase domain. + +Maxflat filters: Daubechies and Meyer formulas. Spectral factorization. + +Multiresolution Analysis (MRA): requirements for MRA; nested spaces and complementary spaces; scaling functions and wavelets. + +Refinement equation: iterative and recursive solution techniques; infinite product formula; filter bank approach for computing scaling functions and wavelets. + +Orthogonal wavelet bases: connection to orthogonal filters; orthogonality in the frequency domain. Biorthogonal wavelet bases. + +Mallat pyramid algorithm + +Accuracy of wavelet approximations (Condition A); vanishing moments; polynomial cancellation in filter banks. + +Smoothness of wavelet bases: convergence of the cascade algorithm (Condition E); splines. Bases vs. frames + . +Signal and image processing: finite length signals; boundary filters and boundary wavelets; wavelet compression algorithms. + +Lifting: ladder structure for filter banks; factorization of polyphase matrix into lifting steps; lifting form of refinement equationSec + +Wavelets and subdivision: nonuniform grids; multiresolution for triangular meshes; representation and compression of surfaces. + +Numerical solution of PDEs: Galerkin approximation; wavelet integrals (projection coefficients, moments and connection coefficients); convergence. Subdivision wavelets for integral equations. Compression and convergence estimates + +M-band wavelets: DFT filter banks and cosine modulated filter banks. Multiwavelets.",https://ocw.mit.edu/courses/mathematics/18-327-wavelets-filter-banks-and-applications-spring-2003 +18.330,Introduction to Numerical Analysis,Spring,2004,"Root finding, interpolation; approximation functions; integration; differential equations; direct iterative methods; linear algebra.",https://ocw.mit.edu/courses/mathematics/18-330-introduction-to-numerical-analysis-spring-2004 +18.330,Introduction to Numerical Analysis,Spring,2012,series expansions; root finding; interpolation; Fourier transform; approximation functions; least-squares approximation; principal component analysis.,https://ocw.mit.edu/courses/mathematics/18-330-introduction-to-numerical-analysis-spring-2012 +18.336,Numerical Methods for Partial Differential Equations,Spring,2009,"advection equation, heat equation, wave equation, Airy equation, convection-diffusion problems, KdV equation, hyperbolic conservation laws, Poisson equation, Stokes problem, Navier-Stokes equations, Fourier approaches. +",https://ocw.mit.edu/courses/mathematics/18-336-numerical-methods-for-partial-differential-equations-spring-2009 +18.357,Interfacial Phenomena ,Fall,2010,"fluid dynamics, flui dmechanics, interfacial phenomena, water-repellency, surfactants, Marangoni flows, capillary origami and contact line dynamics; tears of wine",https://ocw.mit.edu/courses/mathematics/18-357-interfacial-phenomena-fall-2010 +18.366,Random Walks and Diffusion,Fall,2006,"Discrete and continuum modeling of diffusion processes in physics, chemistry, and economics, central limit theorems, continuous-time random walks, Levy flights, correlations, extreme events, mixing, renormalization, and percolation.",https://ocw.mit.edu/courses/mathematics/18-366-random-walks-and-diffusion-fall-2006 +18.369,Mathematical Methods in Nanophotonics,Spring,2008,linear algebra; eigensystems for Maxwell's equations; symmetry groups; representation theory; Bloch's theorem; numerical eigensolver methods; time and frequency-domain computation; perturbation theory; coupled-mode theories; waveguide theory; adiabatic transitions; Optical phenomena; photonic crystals; band gaps; anomalous diffraction; mechanisms for optical confinement; optical fibers; integrated optical devices;,https://ocw.mit.edu/courses/mathematics/18-369-mathematical-methods-in-nanophotonics-spring-2008 +18.408,"Topics in Theoretical Computer Science: Probabilistically Checkable Proofs +",Fall,2022,"Cook-Levin theorem +sum-check protocol +low-degree testing +PCP theorem +PCP construction +aggregation of queries +Label-cover problem +set-cover problem +parallel repetition theorem", +18.409,Behavior of Algorithms,Spring,2002,"Condition number; largest singluar value of a matrix; Smoothed analysis; Gaussian elimination; Growth factors of partial and complete pivoting; GE of graphs with low bandwidth or small separators; Spectral Partitioning of planar graphs; spectral paritioning of well-shaped meshes; spectral paritioning of nearest neighbor graphs; Turner's theorem; bandwidth of semi-random graphs.; McSherry's spectral bisection algorithm; Linear Programming; von Neumann's algorithm; primal and dual simplex methods, and duality Strong duality theorem ; Renegar's condition numbers.",https://ocw.mit.edu/courses/mathematics/18-409-behavior-of-algorithms-spring-2002 +18.409,Topics in Theoretical Computer Science: An Algorithmist's Toolkit,Fall,2009,"Spectral graph theory; Iterative methods for linear algebra; Convex geometry ;Lattices and basis reduction ;LPs and SDPs for approximating NP-hard problems ; Graph Laplacians ; Cheeger inequalities ; Fritz John’s theorem ; +Brunn-Minkowski inequalities; isoperimetric inequalities ; breaking cryptosystems",https://ocw.mit.edu/courses/mathematics/18-409-topics-in-theoretical-computer-science-an-algorithmists-toolkit-fall-2009 +18.409,Algorithmic Aspects of Machine Learning,Spring,2015,"Machine learning, nonnegative matrix factorization, tensor decomposition, tensor rank, border rank, sparse coding, sparse recovery, learning mixture model, matrix completion",https://ocw.mit.edu/courses/mathematics/18-409-algorithmic-aspects-of-machine-learning-spring-2015 +18.413,Error-Correcting Codes Laboratory,Spring,2004,iterative decoding; error-correcting codes; Turbo Codes; Low-Density Parity-Check Codes; serially concatenated codes; aid code design; iterative decoding algorithms; Belief Propagation Serially-Concatenated codes; EXIT charts; Density Evolution,https://ocw.mit.edu/courses/mathematics/18-413-error-correcting-codes-laboratory-spring-2004 +18.417,Introduction to Computational Molecular Biology,Fall,2004,basic computational methods cell on a molecular level; sequence alignment algorithms; dynamic programming; hashing; suffix trees; Gibbs sampling; genetic and physical mapping; genome sequencing; assembly; and annotation; RNA expression and secondary structure; protein structure and folding; and molecular interactions and dynamics.,https://ocw.mit.edu/courses/mathematics/18-417-introduction-to-computational-molecular-biology-fall-2004 +18.433,Combinatorial Optimization,Fall,2003,linear programming; combinatorial optimization; network flow; matching theory; matroid optimization; approximation algorithms for NP-hard problems,https://ocw.mit.edu/courses/mathematics/18-433-combinatorial-optimization-fall-2003 +18.440,Probability and Random Variables,Spring,2014,"Probability spaces, random variables, distribution functions. Binomial, geometric, hypergeometric, Poisson distributions. Uniform, exponential, normal, gamma and beta distributions. Conditional probability, Bayes theorem, joint distributions. Chebyshev inequality, law of large numbers, and central limit theorem.",https://ocw.mit.edu/courses/mathematics/18-440-probability-and-random-variables-spring-2014 +18.443,Statistics for Applications,Fall,2003,hypothesis testing and estimation; confidence intervals;chi-square tests; nonparametric statistics; analysis of variance; regression; correlation.,https://ocw.mit.edu/courses/mathematics/18-443-statistics-for-applications-fall-2003 +18.443,Statistics for Applications,Fall,2006,hypothesis testing and estimation; confidence intervals;chi-square tests; nonparametric statistics; analysis of variance; regression; correlation.,https://ocw.mit.edu/courses/mathematics/18-443-statistics-for-applications-fall-2006 +18.443,Statistics for Applications,Spring,2015,"hypothesis testing, hypothesis estimation, confidence intervals, chi-square tests, nonparametric statistics, analysis of variance, regression, correlation, decision theory, Bayesian statistics",https://ocw.mit.edu/courses/mathematics/18-443-statistics-for-applications-spring-2015 +18.445,Introduction to Stochastic Processes,Spring,2015,"probability, Stochastic Processes, Markov chains, random walks, martingales, Galton-Watsom tree, probability, linear algebra",https://ocw.mit.edu/courses/mathematics/18-445-introduction-to-stochastic-processes-spring-2015 +18.465,Topics in Statistics: Nonparametrics and Robustness,Spring,2005,"Rank Tests; Robustness; M-estimation; Multivariate robustness; VC combinatorics; Nonparametric classification +",https://ocw.mit.edu/courses/mathematics/18-465-topics-in-statistics-nonparametrics-and-robustness-spring-2005 +18.465,Topics in Statistics: Statistical Learning Theory,Spring,2007,"machine learning algorithms; boosting; support +vector machines; neural networks; Vapnik- Chervonenkis theory; concentration inequalities in product +spaces; empirical process theory.",https://ocw.mit.edu/courses/mathematics/18-465-topics-in-statistics-statistical-learning-theory-spring-2007 +18.600,Probability and Random Variables,Fall,2019,"Probability spaces, random variables, distribution functions. Binomial, geometric, hypergeometric, Poisson distributions. Uniform, exponential, normal, gamma and beta distributions. Conditional probability, Bayes theorem, joint distributions. Chebyshev inequality, law of large numbers, and central limit theorem",https://ocw.mit.edu/courses/mathematics/18-600-probability-and-random-variables-fall-2019 +18.650,Statistics for Applications ,Fall,2016,"statistics +regression +parametric inference +parametric hypothesis +Bayesian statistics +principal component analysis",https://ocw.mit.edu/courses/mathematics/18-650-statistics-for-applications-fall-2016 +18.655,Mathematical Statistics ,Spring,2016,"Least Squares, Root-finding, Coordinate Ascent, Newton-Raphson, Bayes Procedures, Robustness Criteria, Neyman-Pearson Lemma, Confidence Bounds, Confidence Intervals, Asymptotic Normality, Gaussian Linear Models",https://ocw.mit.edu/courses/mathematics/18-655-mathematical-statistics-spring-2016 +18.657,"Mathematics of Machine Learning + ",Fall,2015,"Binary Classification, Concentration inequalities, VC theory, VC inequality, Gradient Descent, Mirror Descent, Stochastic Bandits, Adversarial bandits, Linear bandits, Blackwell's approachability",https://ocw.mit.edu/courses/mathematics/18-657-mathematics-of-machine-learning-fall-2015 +18.700,Linear Algebra,Fall,2013,linear algebra; vector space; system of linear equations; bases; linear independence; matrices; determinant; eigenvalue; inner product; quadratic form; Spectral Theorem,https://ocw.mit.edu/courses/mathematics/18-700-linear-algebra-fall-2013 +18.701,Algebra I,Fall,2010,"Group Theory, Linear Algebra, and Geometry,groups, vector spaces, linear transformations, symmetry groups, bilinear +forms, and linear groups.",https://ocw.mit.edu/courses/mathematics/18-701-algebra-i-fall-2010 +18.702,Algebra II,Spring,2011,"Sylow theorems, Group Representations, definitions, unitary representations, characters, Schur's Lemma, +Rings: Basic Definitions, homomorphisms , fractions, Factorization, unique factorization, Gauss' Lemma, explicit factorization, maximal ideals, +Quadratic Imaginary Integers, Gauss Primes, quadratic integers, ideal factorization, ideal classes,Linear Algebra over a Ring, free modules, integer matrices, generators and relations, structure of abelian groups, Rings: Abstract Constructions, relations in a ring, adjoining elements, Fields: Field Extensions, algebraic elements, degree of field extension, ruler and compass, symbolic adjunction, finite fields, Fields: Galois Theory, the main theorem, cubic equations, symmetric functions, primitive elements, quartic equations, quintic equations",https://ocw.mit.edu/courses/mathematics/18-702-algebra-ii-spring-2011 +18.703,Modern Algebra,Spring,2013,algebra; group theory; finite groups; ring theory; unique factorization; Euclidean rings; field theory; finite fields,https://ocw.mit.edu/courses/mathematics/18-703-modern-algebra-spring-2013 +18.704,Seminar in Algebra and Number Theory: Rational Points on Elliptic Curves,Fall,2004,Rational points on elliptic curves,https://ocw.mit.edu/courses/mathematics/18-704-seminar-in-algebra-and-number-theory-rational-points-on-elliptic-curves-fall-2004 +18.704,Seminar in Algebra and Number Theory: Computational Commutative Algebra and Algebraic Geometry ,Fall,2008," Computational algebra, algebraic geometry, Geometry, Algebra, Algorithms, Groebner Bases, Elimination Theory, Algebra-Geometry Dictionary, Polynomial Functions, Rational Functions, Geometric Theorem Proving, Invariant Theory of Finite Groups, Projective Algebraic Geometry ",https://ocw.mit.edu/courses/mathematics/18-704-seminar-in-algebra-and-number-theory-computational-commutative-algebra-and-algebraic-geometry-fall-2008 +18.705,Commutative Algebra,Fall,2008,"rings, ideals, modules, chain conditions, integral, localization, decomposition, dedekind domain, tensor, dimension theory, Zorn's lemma, hilbert theorem, DVR, normalization, artin ring, nakayama's lemma, zerodivisors, noether, nullsetellensatz,",https://ocw.mit.edu/courses/mathematics/18-705-commutative-algebra-fall-2008 +18.706,Noncommutative Algebra,Spring,2023,, +18.712,Introduction to Representation Theory,Fall,2010,"finite dimensional algebras, Quiver Representations, series Representations, finite groups, representation theory, Lie algebras, Tensor products, density theorem, Jordan-H¨older theorem, Krull-Schmidt theorem, Maschke’s Theorem,Frobenius-Schur indicator, Frobenius divisibility, Burnside’s Theorem",https://ocw.mit.edu/courses/mathematics/18-712-introduction-to-representation-theory-fall-2010 +18.725,Algebraic Geometry,Fall,2003,algebraic varieties over algebraically closed field; complex algebraic varieties; complex analytic varieties; curves and surfaces.,https://ocw.mit.edu/courses/mathematics/18-725-algebraic-geometry-fall-2003 +18.725,Algebraic Geometry,Fall,2015,"algebraic geometry, Zariski topology, Product Topology, Affine Varieties, Projective Varieties, Noether Normalization, Affine Morphisms, Finite Morphisms, Sheaves, Bezout’s Theorem, Kahler Differentials, Canonical Bundles, Riemann-Hurwitz Formula, Chevalley’s Theorem, Bertini’s Theorem",https://ocw.mit.edu/courses/mathematics/18-725-algebraic-geometry-fall-2015 +18.726,Algebraic Geometry,Spring,2009,category theory; sheaves; abelian sheaves; shcemes; morphisms; projective morphisms; differentials; divisors; homological algebra; algebraic geometry; cohomology; quasicoherent sheaves; projective spaces; hilbert polynomials; gaga; serre duality; cohen-macaulay schemes; riemann-roch; etale cohomology,https://ocw.mit.edu/courses/mathematics/18-726-algebraic-geometry-spring-2009 +18.727,Topics in Algebraic Geometry: Intersection Theory on Moduli Spaces,Spring,2006,"intersection theory; moduli spaces; geometry of homogeneous varieties; Deligne-Mumford moduli spaces; stable curves; Kontsevich moduli spaces; stable maps; Littlewood-Richardson rules; Grassmannians; divisor theory; cohomology; +Brill-Noether theory; limit linear series; ample cones;effective cones; Gromov-Witten invariants; simple homogeneous varieties; Kontsevich moduli spaces;",https://ocw.mit.edu/courses/mathematics/18-727-topics-in-algebraic-geometry-intersection-theory-on-moduli-spaces-spring-2006 +18.727,Topics in Algebraic Geometry: Algebraic Surfaces ,Spring,2008,linear equivalence; algebraic equivalence; numerical equivalence; birational; rational; maps; surfaces; ruled surfaces; rational surfaces; linear systems; castelnuovo's criterion; rationality; picard; albanese; classification; K3; elliptic; Kodaira dimension; bielliptic; ,https://ocw.mit.edu/courses/mathematics/18-727-topics-in-algebraic-geometry-algebraic-surfaces-spring-2008 +18.735,"Double Affine Hecke Algebras in Representation Theory, Combinatorics, Geometry, and Mathematical Physics",Fall,2009,dunkl operators; cherednik; affine algebra; representation theory; hecke; knizknik-zamoldchikov; orbifolds; calogero-moser space; hilbert scheme; algebra; macdonald-mehta integral; integrable system; ,https://ocw.mit.edu/courses/mathematics/18-735-double-affine-hecke-algebras-in-representation-theory-combinatorics-geometry-and-mathematical-physics-fall-2009 +18.755,Introduction to Lie Groups,Fall,2004,manifolds; Lie groups; exponential mapping; Lie algebras; Homogeneous spaces; transformation groups; Adjoint representation; Covering groups; Automorphism groups; Invariant differential forms; cohomology of Lie groups; homogeneous spaces.,https://ocw.mit.edu/courses/mathematics/18-755-introduction-to-lie-groups-fall-2004 +18.769,Topics in Lie Theory: Tensor Categories,Spring,2009,"monoidal functors, tensor, pivotal, spherical, MacLane's, Grthendieck, module categories, braided tensor, Muger centralizer, symmetric categories, deligne's theorem, radford formula, squared norms, global dimensions, cohomology, oceanu ridigity, robenius-perron, lifting theory",https://ocw.mit.edu/courses/mathematics/18-769-topics-in-lie-theory-tensor-categories-spring-2009 +18.781,Theory of Numbers,Spring,2012,primes; divisibility; fundamental theorem of arithmetic; gcd; Euclidean algorithm; congruences; Chinese remainder theorem; Hensel's lemma; primitive roots; quadratic residues; reciprocity; arithmetic functions; Diophantine equations; continued fractions,https://ocw.mit.edu/courses/mathematics/18-781-theory-of-numbers-spring-2012 +18.782,Introduction to Arithmetic Geometry ,Fall,2013,algebra; number theory; diophantine equations; algebraic geometry; plane conics; elliptic curves; hyperelliptic curves; abelian varieties; Tate-Shafarevich group ,https://ocw.mit.edu/courses/mathematics/18-782-introduction-to-arithmetic-geometry-fall-2013 +18.783,Elliptic Curves,Spring,2021,"elliptic curves +number theory +cryptography +point-counting +isogenies +pairings +theory of complex multiplication +integer factorization +primality proving +elliptic curve cryptography +modular curves +Fermat's Last Theorem",https://ocw.mit.edu/courses/mathematics/18-783-elliptic-curves-spring-2021 +18.785,Number Theory I,Fall,2021,"Absolute values +Discrete valuations +localization +Dedekind domains +Etale algebras +Dedekind extensions +Ideal Norm +Dedekind-Kummer Theorem +Galois extensions +Artin map +complete fields +Valuation rings +Hensel's lemmas +Krasner's lemma +Minkowski bound +Dirichlet's unit theorm +Riemann's Zeta function +Ray Class +Ring of Adeles +Idele group +Chebotarev density theorem +Global fields +Tate cohomology +Artin reciprocity", +18.786,Topics in Algebraic Number Theory,Spring,2006,algebraic number theory; number fields; class numbers; Dirichlet's units theorem; cyclotomic fields; local fields; valuations;decomposition and inertia groups; ramification; basic analytic methods; basic class field theory,https://ocw.mit.edu/courses/mathematics/18-786-topics-in-algebraic-number-theory-spring-2006 +18.786,Topics in Algebraic Number Theory,Spring,2010,"number fields, dedekind domain, prime ideal, class group, lattice method ",https://ocw.mit.edu/courses/mathematics/18-786-topics-in-algebraic-number-theory-spring-2010 +18.786,Number Theory II: Class Field Theory,Spring,2016,"Class Field Theory (CFT), +Hilbert Symbols, +Hilbert's Theory, +norm group, +tame ramification, +tame cohomology, +Herbrand quotients, +Homotopy, +Vanishing Theory, +Kummer Theory, +Brauer group, +Artin and Brauer Reciprocity",https://ocw.mit.edu/courses/mathematics/18-786-number-theory-ii-class-field-theory-spring-2016 +18.821,Project Laboratory in Mathematics,Spring,2013,"mathematics, research, communication, writing, presenting, LaTeX, teamwork",https://ocw.mit.edu/courses/mathematics/18-821-project-laboratory-in-mathematics-spring-2013 +18.900,Geometry and Topology in the Plane,Spring,2023,"Geometry +Topology +Polygons +Integer Polygons +Billiards +Phase Space +Principal Frequency +Loops +Immersed Loops +Algebraic Curves +2D Complexes +Hyperbolic Geometry +Curved Geometry", +18.901,Introduction to Topology,Fall,2004,topology; topological spaces; continuous functions; connectedness; compactness; separation axioms; function spaces; metrization theorems; embedding theorems; the fundamental group.,https://ocw.mit.edu/courses/mathematics/18-901-introduction-to-topology-fall-2004 +18.904,Seminar in Topology,Spring,2011,student lectures; math writing; topology; fundamental group; covering spaces; communication; oral communication; mathematical writing,https://ocw.mit.edu/courses/mathematics/18-904-seminar-in-topology-spring-2011 +18.905,Algebraic Topology I,Fall,2016,"Algebraic Topology; homology; CW complexes; Homological algebra; Cohomology; Poincare duality; Homotopy Invariance; Eilenberg-Steenrod Axioms; Topological Genealogy; Künneth theorem; Tor functors; tensor product; Čech"" Cohomology",https://ocw.mit.edu/courses/mathematics/18-905-algebraic-topology-i-fall-2016 +18.906,Algebraic Topology II ,Spring,2020,"homotopy +cohomology +classifying spaces +spectral sequences cofibrations +serre fibrations +Steenrod operations +cohomology operations +cobordism ",https://ocw.mit.edu/courses/mathematics/18-906-algebraic-topology-ii-spring-2020 +18.915,Graduate Topology Seminar: Kan Seminar,Fall,2014,"mathematics, topology, Kan Seminar, Dan Kan,communication, presenting",https://ocw.mit.edu/courses/mathematics/18-915-graduate-topology-seminar-kan-seminar-fall-2014 +18.917,Topics in Algebraic Topology: The Sullivan Conjecture ,Fall,2007,The Sullivan Conjecture ; Steenrod Operations; Adem Relations; Admissible Monomials ; Free Unstable Modules ; Gabriel-Kuhn-Popesco; Injectivity of the cohomology of BV ;Generating Analytic Functors ; Tensor products and algebras ; The Dual Steenrod Algebra ; The Frobenius ; Finiteness Conditions ;Lannes' T-functor ; Free E-infinity Algebras ;p-adic Homotopy Theory ; Atomicity ;The Arithmetic Square ; Quaternionic Projective Space ; The Nil-Filtration ;The Krull Filtration ,https://ocw.mit.edu/courses/mathematics/18-917-topics-in-algebraic-topology-the-sullivan-conjecture-fall-2007 +18.950,Differential Geometry,Fall,2008,"Differential Geometry, geometry of plane curves, hypersurfaces, Geometry of lengths and distances",https://ocw.mit.edu/courses/mathematics/18-950-differential-geometry-fall-2008 +18.965,Geometry of Manifolds,Fall,2004,Differentiable manifolds; vector fields forms; Lie groups; DeRham theorem; Riemannian manifolds.,https://ocw.mit.edu/courses/mathematics/18-965-geometry-of-manifolds-fall-2004 +18.966,Geometry of Manifolds,Spring,2007,Differential forms; Lie groups; DeRham; Riemannian manifolds; curvature; Hodge; Hodge theory; manifolds; Riemannian geometry; holonomy; symplectic geometry; complex geometry; Hodge-Kahler theory; smooth manifold topology,https://ocw.mit.edu/courses/mathematics/18-966-geometry-of-manifolds-spring-2007 +18.969,Topics in Geometry,Fall,2006,"generalized geometry, Dirac geometry, Gerbes, B-fields, Courant algebroids, sigma models, baby String theory, linear algebra, pure spinors, Riemannian structures, Hodge star, integrability, Dirac structures, Lie algebroids and bialgebroids,holomorphic bundles, Picard group, +Kodaira-Spencer-Kuranishi deformation theory, +Kahler geometry, Hermitian geometry, +Calabi-Yau structures, D-branes.",https://ocw.mit.edu/courses/mathematics/18-969-topics-in-geometry-dirac-geometry-fall-2006 +18.969,Topics in Geometry: Mirror Symmetry,Spring,2009,"mirror symmetry, deformation, hodge theory, pseudoholomorphic, gromov-witten, cohomology, yukawa, monodromy, picard-fuchs, lagrangian floer theory, homology, SYZ conjecture, submanifolds, K3 surfaces, matrices",https://ocw.mit.edu/courses/mathematics/18-969-topics-in-geometry-mirror-symmetry-spring-2009 +18.994,Seminar in Geometry,Fall,2004,Minimal Surfaces; Differential Geometry of Curves and Surfaces; Calculus on Manifolds; Complex Analysis; Scientific Graphics,https://ocw.mit.edu/courses/mathematics/18-994-seminar-in-geometry-fall-2004 +18.996,Topics in Theoretical Computer Science - Internet Research Problems,Spring,2002,,https://ocw.mit.edu/courses/mathematics/18-996-topics-in-theoretical-computer-science-internet-research-problems-spring-2002 +18.996,Random Matrix Theory and Its Applications,Spring,2004,Random matrix theory; Matrix Jacobians; Wishart Matrices; Wigner's Semi-Circular laws; Matrix beta ensembles; free probability.,https://ocw.mit.edu/courses/mathematics/18-996-random-matrix-theory-and-its-applications-spring-2004 +18.997,Topics in Combinatorial Optimization,Spring,2004,"combinatorial optimization; Ear decompositions. +Nonbipartite matching. +Gallai-Milgram and Bessy-Thomasse theorems on partitioning/covering graphs by directed paths/cycles. +Minimization of submodular functions. +Matroid intersection. Polymatroid intersection. +Jump systems. +Matroid union. +Matroid matching, path matchings. +Packing trees and arborescences. +Packing directed cuts and the Lucchesi-Younger theorem. +Submodular flows and the Edmonds-Giles theorem. +Graph orientation. +Connectivity tree and connectivity augmentation. +Multicommodity flows.",https://ocw.mit.edu/courses/mathematics/18-997-topics-in-combinatorial-optimization-spring-2004 +20.020,Introduction to Biological Engineering Design,Spring,2009,biology; chemistry; synthetic biology; project; biotech; genetic engineering; GMO; ethics; biomedical ethics; genetics; recombinant DNA; DNA; gene sequencing; gene synthesis; biohacking; computational biology; iGEM; BioBrick; systems biology;,https://ocw.mit.edu/courses/biological-engineering/20-020-introduction-to-biological-engineering-design-spring-2009 +20.102,Macroepidemiology (BE.102),Spring,2005,disease; mortality; cancer; cerebrovascular disease; diabetes; infectious disease; risk; inherited risk; environmental risk; population genetics; mutation; public health; malignancy; statistics,https://ocw.mit.edu/courses/biological-engineering/20-102-macroepidemiology-be-102-spring-2005 +20.109,Laboratory Fundamentals in Biological Engineering,Fall,2007,"biological engineering, biology, bioengineering, DNA, PCR, RNA, polymerase chain reaction, systems engineering, DNA engineering, protein engineering, bio-material engineering, restriction map, lipofection, screening library, bacterial photography, device characterization, biological parts, openwetware",https://ocw.mit.edu/courses/biological-engineering/20-109-laboratory-fundamentals-in-biological-engineering-fall-2007 +20.109, Laboratory Fundamentals in Biological Engineering,Spring,2010,"biology; bioengineering; biotechnology; RNA engineering, protein engineering, biomaterial engineering; assay; lab protocol;",https://ocw.mit.edu/courses/biological-engineering/20-109-laboratory-fundamentals-in-biological-engineering-spring-2010 +20.180,Biological Engineering Programming,Spring,2006,"biological engineering problems, structured computer programming skills, theory and practice of complex systems design, theory and design of complex systems construction, synthetic biology.",https://ocw.mit.edu/courses/biological-engineering/20-180-biological-engineering-programming-spring-2006 +20.181,Computation for Biological Engineers,Fall,2006,Phylogenetic Inference ;Molecular Modeling; Protein Design; Discrete Reaction Event Network Modeling; Python; genetics; DNA sequence; genomics; gene sequencing; UPGMA; Newick notation; parsimony; downpass; uppass; jukes-cantor; invertase; genetic memory;,https://ocw.mit.edu/courses/biological-engineering/20-181-computation-for-biological-engineers-fall-2006 +20.201,Mechanisms of Drug Actions,Fall,2013,"drugs, medicine, pharmaceutical,pharmacology, toxicology, drug actions, therapeutics, histology, pathophysiology, drug therapy, drug transporters, drug metabolism, drug toxicity, drug development, uptake, transport, case study, biochemistry, Pharmacokinetics, Pharmacogenetics, Omeprazole, antibiotics, Oncology, Statins, Sarilumab ",https://ocw.mit.edu/courses/biological-engineering/20-201-mechanisms-of-drug-actions-fall-2013 +20.219,Becoming the Next Bill Nye: Writing and Hosting the Educational Show,IAP,2015,"STEM, video, education, entertainment, edutainment, camera, film, production, host, Bill Nye, science, technology, math, engineering, Hank Green",https://ocw.mit.edu/courses/biological-engineering/20-219-becoming-the-next-bill-nye-writing-and-hosting-the-educational-show-january-iap-2015 +20.309,Biological Engineering II: Instrumentation and Measurement,Fall,2006,,https://ocw.mit.edu/courses/biological-engineering/20-309-biological-engineering-ii-instrumentation-and-measurement-fall-2006 +20.320,Analysis of Biomolecular and Cellular Systems,Fall,2012,"biological engineering, kinase, PyMOL, PyRosetta, MATLAB, Michaelis-Menten, bioreactor, bromodomain, protein-ligand interactions, titration analysis, fractional separation, isothermal titration calorimetry, ITC, mass spectrometry, MS, co-immunoprecipitation, Co-IP, Forster resonance energy transfer, FRET, primary ligation assay, PLA, surface plasmon resonance, SPR, enzyme kinetics, kinase engineering, competitive inhibition, epidermal growth factor receptor, mitogen-activated protein kinase, MAPK, genome editing, Imatinib, Gleevec, Glivec, drug delivery, kinetics of molecular processes, dynamics of molecular processes, kinetics of cellular processes, dynamics of cellular processes, intracellular scale, extracellular scale, and cell population scale, biotechnology applications, gene regulation networks, nucleic acid hybridization, signal transduction pathways, cell populations in tissues, cell populations in bioreactors, experimental methods, quantitative analysis, computational modeling",https://ocw.mit.edu/courses/biological-engineering/20-320-analysis-of-biomolecular-and-cellular-systems-fall-2012 +20.440,Analysis of Biological Networks (BE.440),Fall,2004,"systems, networks, biochemistry, biology, chemistry, chemotaxis, lactation, interferon, response, DNA, replication, translation, transcription, RNA, IFN, signals, signaling, cellular, receptor",https://ocw.mit.edu/courses/biological-engineering/20-440-analysis-of-biological-networks-be-440-fall-2004 +20.442,Molecular Structure of Biological Materials (BE.442),Fall,2005,protein; hydration; amino acid; ECM; extracellular matrix; peptide; helix; DNA; RNA; biomaterial; biotech; biotechnology; nanomaterial; beta-sheet; beta sheet; molecular structure; bioengineering; silk; biomimetic; self-assembly; keratin; collagen; adhesive; GFP; fluorescent; polymer; lipid;,https://ocw.mit.edu/courses/biological-engineering/20-442-molecular-structure-of-biological-materials-be-442-fall-2005 +20.450,Molecular and Cellular Pathophysiology (BE.450),Spring,2005,tissue; organ; injury; infection; inflammation; immunity; cancer; pathophysiology; hepatocellular; carcinoma; HCC; chronic-active; hepatitis; virus; Robbins; Cotran; Pathologic; Disease,https://ocw.mit.edu/courses/biological-engineering/20-450-molecular-and-cellular-pathophysiology-be-450-spring-2005 +22.01,Introduction to Nuclear Engineering and Ionizing Radiation,Fall,2016,ionizing radiation; natural radiation; half-life; radioactive decay; dose calculation; radiation protection; radiation shielding; hormesis; nuclear power; nuclear energy; biological effects of radiation; food irradiation; radiation risk; radioactive dating ,https://ocw.mit.edu/courses/nuclear-engineering/22-01-introduction-to-nuclear-engineering-and-ionizing-radiation-fall-2016 +22.011,"Nuclear Engineering: Science, Systems and Society",Spring,2020,"nuclear engineering +nuclear power +nuclear energy +nuclear radiation +Op-Ed +ionizing radiation +nuclear medicine +fission energy +scientific communication +technical notes",https://ocw.mit.edu/courses/nuclear-engineering/22-011-nuclear-engineering-science-systems-and-society-spring-2020 +22.012,Seminar: Fusion and Plasma Physics,Spring,2006,plasma physics; fusion engineering; fusion power; contemporary magnetic confinement schemes; Plasma Science and Fusion Center; ITER,https://ocw.mit.edu/courses/nuclear-engineering/22-012-seminar-fusion-and-plasma-physics-spring-2006 +22.02,Introduction to Applied Nuclear Physics,Spring,2012,radiation; nuclear structure; quantum theory; quantum mechanics; nuclear reaction; nuclear fission; nuclear fusion; radioactive decay,https://ocw.mit.edu/courses/nuclear-engineering/22-02-introduction-to-applied-nuclear-physics-spring-2012 +22.033,Nuclear Systems Design Project,Fall,2011,nuclear energy; reactor design; design optimization; biofuel; carbon sequestration,https://ocw.mit.edu/courses/nuclear-engineering/22-033-nuclear-systems-design-project-fall-2011 +22.05,Neutron Science and Reactor Physics,Fall,2009,reactor physics; neutron;reactor layout; binding energy; fission; neutron cross-sections; liquid drop model; neutron life cycle; criticality; accidents; neutron flux; neutron current; neutron diffusion theory; elastic neutron scattering; group diffusion method; subcritical multiplication; point kinetics; dynamic period equation; inhour equation; shutdown margin,https://ocw.mit.edu/courses/nuclear-engineering/22-05-neutron-science-and-reactor-physics-fall-2009 +22.058,Principles of Medical Imaging,Fall,2002,"general imaging principles, linear optics, ray tracing, Linear Imaging Systems, Space Invariance, Pin-hole camera, Fourier Transformations, Modulation Transfer Functions, Fourier convolution, Sampling, Nyquist, counting statistics, additive noise, optical imaging, Radiation types, Radiation detection, photon detection, spectra, attenuation, Planar X-ray imaging, Projective Imaging, X-ray CT, Coherent Imaging & Ultrasound, microscopy, k-space, NMR pulses, f2-D gradient, spin echoes, 3-D methods of MRI, volume localized spectroscopy",https://ocw.mit.edu/courses/nuclear-engineering/22-058-principles-of-medical-imaging-fall-2002 +22.06,Engineering of Nuclear Systems,Fall,2010,nuclear power overview; accelerators; reactor physics review; thermal parameters; PWR; BWR; reactor design; thermal analysis of fuel; ideal gas and incompressible fluid models; single phase coolant heat transfer; pure substance model; two-phase coolant flow and heat transfer; power cycles; nuclear safety.,https://ocw.mit.edu/courses/nuclear-engineering/22-06-engineering-of-nuclear-systems-fall-2010 +22.091,Nuclear Reactor Safety,Spring,2008,,https://ocw.mit.edu/courses/nuclear-engineering/22-091-nuclear-reactor-safety-spring-2008 +22.101,Applied Nuclear Physics,Fall,2003,"nuclear physics; nuclear reaction; nucleus; nuclear radiation; quantum mechanics; deuteron bound-state wave function and energy; n-p scattering cross-section; transition probability per unit time; barrier transmission probability; Binding energy, nuclear stability; Interactions of charged particles, neutrons, and gamma rays with matter; Radioactive decay; energetics.",https://ocw.mit.edu/courses/nuclear-engineering/22-101-applied-nuclear-physics-fall-2003 +22.101,Applied Nuclear Physics,Fall,2006,nuclear concepts; nuclear physics; nuclear radiations; matter; types of reactions; single-collision phenomena; cross sections; effects of many collisions; Quantum mechanics,https://ocw.mit.edu/courses/nuclear-engineering/22-101-applied-nuclear-physics-fall-2006 +22.103,Microscopic Theory of Transport,Fall,2003,molecular view; transport phenomena; theory; models; computations;simulations; micro/macro coupling,https://ocw.mit.edu/courses/nuclear-engineering/22-103-microscopic-theory-of-transport-fall-2003 +22.105,Electromagnetic Interactions,Fall,2005,electrostatics; coulomb's law; gauss's law; potentials; laplace equations; poisson equations; capacitors; resistors; child-langmuir law; magnetostatics; ampere's law; biot-savart law; magnets; inductors; superconducting magnets; single particle motion; lorentz force; quasi-statics; faraday's law; maxwell equations; plane waves; reflection; refraction; klystrons; gyrotrons; lienard-wiechert potentials; thomson scattering; compton scattering; synchrotron radiation; bremsstrahlung radiation; cerenkov radiation,https://ocw.mit.edu/courses/nuclear-engineering/22-105-electromagnetic-interactions-fall-2005 +22.106,Neutron Interactions and Applications ,Spring,2010,"Neutron Interaction;Neutron Elastic Scattering: Thermal Motion; Chemical Binding Effects;Particle Simulations I; Monte Carlo Basics Monte Carlo in Statistical Physics and Radiation Transport;The Neutron Transport Equation;Neutron Slowing Down;Neutron Diffusion; Particle Simulation Methods; Basic Molecular Dynamics;Direct Simulation of Melting; Multiscale Materials Modeling;Thermal Neutron Scattering +;Dynamic Structure Factor in Neutron Inelastic Scattering",https://ocw.mit.edu/courses/nuclear-engineering/22-106-neutron-interactions-and-applications-spring-2010 +22.14,Materials in Nuclear Engineering,Spring,2015,"radiation materials science, radiation damage to materials, radiation induced segregation, void swelling, radiation induced hardening, radiation induced embrittlement, nuclear power plant, phase diagram, defects, deformation, radiation effects, irradiation",https://ocw.mit.edu/courses/nuclear-engineering/22-14-materials-in-nuclear-engineering-spring-2015 +22.15,Essential Numerical Methods,Fall,2014,"MATLAB, Octave, numerical methods, numerical analysis, computational methods, differential equations, approximation, finite difference, iteration",https://ocw.mit.edu/courses/nuclear-engineering/22-15-essential-numerical-methods-fall-2014 +22.251,Systems Analysis of the Nuclear Fuel Cycle ,Fall,2009,"nuclear fuel; core design criteria; in-core aspects; nuclear fuel cycle; fuel cycle & operations +economics; fast reactors; +CANDU physics; fuel cycle; coupled reactor analysis; fuel manufacturing and design; thorium fuel cycles. +",https://ocw.mit.edu/courses/nuclear-engineering/22-251-systems-analysis-of-the-nuclear-fuel-cycle-fall-2009 +22.312,Engineering of Nuclear Reactors,Fall,2015,power; nuclear reactor; energy; thermodynamics; heat generation and removal; coolant flow; single-phase coolant flow; two-phase coolant flow; reactor design; structural mechanics,https://ocw.mit.edu/courses/nuclear-engineering/22-312-engineering-of-nuclear-reactors-fall-2015 +22.38,"Probability And Its Applications To Reliability, Quality Control, And Risk Assessment",Fall,2005,risk; uncertainty; nuclear accident; disaster; meltdown; probability; risk assessment; PRA; probabalistic risk assessment; NUREG-1150; WASH-1400; failure; applied probability; applied statistics; system performance; MTBF; decision; hazard; fault tree analysis; event tree analysis;,https://ocw.mit.edu/courses/nuclear-engineering/22-38-probability-and-its-applications-to-reliability-quality-control-and-risk-assessment-fall-2005 +22.39,"Integration of Reactor Design, Operations, and Safety",Fall,2006,nuclear reactor; nuclear power; NRC; PWR; pressurized water reactor; GFR; LWR; light water reactor; nuclear safety; meltdown; nuclear risk; PRA; probabalistic risk assessment; risk assessment; thermal; hydraulic; nuclear fuel; nuclear waste; accident; radiation; radioactivity; nuclear plant; cooling; Seabrook; fission; uranium; half-life; plutonium; economics of nuclear power; materials slection;IRIS,https://ocw.mit.edu/courses/nuclear-engineering/22-39-integration-of-reactor-design-operations-and-safety-fall-2006 +22.51,Quantum Theory of Radiation Interactions,Fall,2012,quantum mechanics; closed system dynamics; composite systems; entanglement; mixed states; open quantum systems; quantum harmonic oscillator; perturbation theory; scattering; interaction with matter,https://ocw.mit.edu/courses/nuclear-engineering/22-51-quantum-theory-of-radiation-interactions-fall-2012 +22.615,MHD Theory of Fusion Systems,Spring,2007,magnetohydrodynamics; plasma; transport theory; Boltzmann-Maxwell equations; tokamaks; MHD equilibria; poloidal field design; MHD stability theory; Energy Principle; interchange instability; ballooning modes; second region of stability; external kink modes; MHD instabilities,https://ocw.mit.edu/courses/nuclear-engineering/22-615-mhd-theory-of-fusion-systems-spring-2007 +22.616,Plasma Transport Theory,Fall,2003,Plasmas; magnetic confinement fusion; Fokker-Planck collision operator; collisional relaxation and equilibrium; Lorentz gas; Brownian motion; alpha particles; runaway electrons; Braginskii formulation; tokamak; Pfirsch-Schluter; regimes of collisionality,https://ocw.mit.edu/courses/nuclear-engineering/22-616-plasma-transport-theory-fall-2003 +22.903,Photon and Neutron Scattering Spectroscopy and Its Applications in Condensed Matter,Spring,2005,"Nuclear engineering; photon; neutron; scattering; spectroscopy; neutron sources; photon sources; neutron scattering theory; light and X-ray scattering theory; linear response theory; inelastic neutron scattering spectroscopy; quasielastic neutron scattering spectroscopy; photon correlation spectroscopy; inelastic X-ray scattering spectroscopy. +",https://ocw.mit.edu/courses/nuclear-engineering/22-903-photon-and-neutron-scattering-spectroscopy-and-its-applications-in-condensed-matter-spring-2005 +22.920,A Hands-On Introduction to Nuclear Magnetic Resonance,IAP,1997,"nuclear spin, magnetic resonance, rotating frame, RF pulses, Bloch's equations, magnetic field gradients, k-space, diffusion, spin echoes, NMR imaging in 2D, slice selection, flow studies, NMR spectroscopy, chemical shifts, spin-spin couplings, Two dimensional NMR methods, COSY experiment",https://ocw.mit.edu/courses/nuclear-engineering/22-920-a-hands-on-introduction-to-nuclear-magnetic-resonance-january-iap-1997 +22.921,Nuclear Power Plant Dynamics and Control ,IAP,2006,"reactor; nuclear reactor; radiation; feedback; light-water reactor; neutron; reactor operation; +reactor startup; reactor shutdown; reactor emergency; pressurized water reactor; PWR; BWR; criticality; reactor design;",https://ocw.mit.edu/courses/nuclear-engineering/22-921-nuclear-power-plant-dynamics-and-control-january-iap-2006 +24.00,Problems of Philosophy,Fall,2019,"God +free will +good +bad +race +gender +ethics +faith +subjectivism +objectivism +panpsychism +determinism +moral responsibility +personal identity +meaning of life +time travel +",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-00-problems-of-philosophy-fall-2019 +24.01,Classics of Western Philosophy,Spring,2016,"Plato, Aristotle, Descartes, Cavendish, Hume, Kant, god, existence of god, Socrates, Margaret Cavendish, John Stuart Mill, W.E.B. Du Bois, Simone de Beauvoir, utilitarianism, slavery, women's rights",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-01-classics-of-western-philosophy-spring-2016 +24.02,Moral Problems and the Good Life,Fall,2008,pleasure; desire; satisfaction; objectivity; environmentalism; animal rights; immortality; egoism; skepticism; relativism; toleration; utilitarianism; deontology; virtue; moral theory; global justice; equality; social justice; race; gender; poverty; sex; welfare; freedom; death penalty; gay marriage; sexuality; pornography; free speech; hate speech; equality; racism,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-02-moral-problems-and-the-good-life-fall-2008 +24.03,Good Food: The Ethics and Politics of Food Choices,Spring,2017,"food, ethics, hunger, human welfare, weight, agriculture, poverty, ecology, locavore, vegan, vegetarian, speciesism, activism, junk food, gender, sexism, animal welfare, nutrition, society, politics, famine, morality, crops, eating, meat, addictive food, geopolitics, cosmopolitanism, social status, obesity, weight stigma, fast food, health, food deserts, waste, organic, environment",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-03-good-food-ethics-and-politics-of-food-spring-2017 +24.09,Minds and Machines,Fall,2011,Searle; AI; Turing Test;dualism; behaviorism; identity theory; Kripke;functionalism; intentionality; externalism; perception;self-knowledge; knowledge argument; Chalmers; Nagel;panprotopsychism; mysterianism; consciousness; rene descartes; mind; brain; causal theory; pain; relief; meaning; individualism; qualia; mind-body problem;free will,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-09-minds-and-machines-fall-2011 +24.111,Philosophy of Quantum Mechanics,Spring,2005,relativity; particle; approximation technique; scientific inquiry; experiment; observation; quantum theory; quantum mechanics.,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-111-philosophy-of-quantum-mechanics-spring-2005 +24.118,Paradox and Infinity,Spring,2019,"infinite cardinalities +Omega-Sequence Paradoxes +time travel +Newcomb's Problem +probability +The Banach-Tarski Theorem +computability +Gödel's Theorem",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-118-paradox-and-infinity-spring-2019 +24.120,Moral Psychology,Spring,2009,"action, motivation, social psychology, sociology, belief, desire, moral motivation, sympathy, empathy, intention, will, addiction, resolution, rationality, identification, autonomy, egoism, altruism, intentions, Humean theory of motivation, willing, wanting, waiting, weakness, Akrasia, self-control, temptation, self-regulation, free will, self-deception, moral psychology, empirical work, autism, ethical judgment, moral luck, virtue",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-120-moral-psychology-spring-2009 +24.131,Ethics of Technology,Spring,2023,"ethics +technology +social media +privacy +algorithmic justice +online manipulation +echo chambers +censorship +freedom of speech", +24.191,"Ethics in Your Life: Being, Thinking, Doing (or Not?)",Spring,2015,ethics; global poor; homeless; disenfranchised; death penalty; prison; Examined Life; famine; affluence; morality; racial profiling; justice system; criminal punishment; deterrence; military spending; federal spending; farming; gaming,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-191-ethics-in-your-life-being-thinking-doing-or-not-spring-2015 +24.200,Ancient Philosophy,Fall,2004,Philosophy; ancient; Greek western; philosophical; scientific; tradition; themes; nature; law; justice; knowledge; virtue; happiness; death; analysis; arguments; text. ,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-200-ancient-philosophy-fall-2004 +24.209,Philosophy In Film and Other Media,Spring,2004,Philosophy; Film; Cinema; Narrative; Linguistics; Literature; Opera; Feeling; Cognition; Arts; Thematic,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-209-philosophy-in-film-and-other-media-spring-2004 +24.211,Theory of Knowledge,Spring,2014,epistemology; theory of knowledge; skepticism; common sense; Descartes; closure of knowledge; Dretske; sensitivity; dogmatism; bootstrapping; default entitlement; certainty; contextualism; practical interest; Vogel; Russell; lottery paradox; Hawthornel; Putnam; brains in a vat; semantic externalism,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-211-theory-of-knowledge-spring-2014 +24.213,Philosophy of Film,Fall,2004,"Philosophy; seminar; analysis; film; art; meaning; formal structure; aesthetic; problems; appearance; reality; literary; visual effects; communication; alienation; technology; Beauty and the Beast; Welles; Orson; Citizen Kane; Allen; Woody; The Purple Rose of Cairo; Visconti; Luchino; Death in Venice; Renoir; Jean; The Rules of the Game; Hitchcock; Alfred; The 39 Steps; Lindstrom; Megahey; BBC Television; The Magnificent Ambersons; The +Crime of Monsieur Lange; Le Roi d'Yvetot.",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-213-philosophy-of-film-fall-2004 +24.222,"Decisions, Games, and Rational Choice",Spring,2008,"decisions, games, rational choice, causal decision theory, social choice theory, Nash equilibrium, voting, game theory, dictatorial games, non-dictatorial games",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-222-decisions-games-and-rational-choice-spring-2008 +24.230,Meta-ethics,Fall,2015,"moral statements, morality, ethics, ethical inquiry, scientific inquiry, right and wrong, moral realism, plato, naturalism, moral anti-realism, non-cognitivism, reason",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-230-meta-ethics-fall-2015 +24.231,Ethics,Fall,2009,"ethics, euthyphro, Plato, goodness, non-naturalism, G. E. Moore, non-cognitivism, Alfred Jules Ayer, David Brink, cognitivism, Gilbert Harman, Nicholas Sturgeon, observation, morality, moral relativism, Philippa Foot, David Lyons, incoherence, ethical relativism, John Stuart Mill, utilitarianism, Robert Nozick, Derek Parfit, Alastair Norcross, philosophy, Bernard Williams, James Lenman, consequentialism, cluelessness, Peter Singer, act-utilitarianism, John Rawls, rules, Thomas Nagel, famine, affluence, Nomy Arpaly, moral worth, Susan Wolf, moral saints, Peter van Inwagen, free will, determinism, Harry Frankfurt, moral responsibility, moral luck",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-231-ethics-fall-2009 +24.236,Topics in Social Theory and Practice: Race and Racism,Fall,2014,"race; racism; gender; citizenship; ethnicity; class; injustice; racial profiling; reparations; eliminativism; social identity; oppression; justice; cultural appropriation; commodity fetishism; prisons; intersectionality +",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-236-topics-in-social-theory-and-practice-race-and-racism-fall-2014 +24.241,Logic I,Fall,2009,sentential logic; predicate logic; mathematical induction; meta-theory,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-241-logic-i-fall-2009 +24.242,Logic II,Spring,2004,Logic; theory of computability; Kurt Gödel; theorem; system; true; arithmetical; statements; axiomatic basis; proving; truths of arithmetic; history applications; technique; Church’s theorem; algorithm; formula; valid; predicate calculus; Tarski’s theorem; Gödel’s second incompleteness theorem.,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-242-logic-ii-spring-2004 +24.244,Modal Logic,Spring,2015,"W. V. Quine's modal logic, Lewis's S1 and S2, propositional modal logic, completeness, frames and models, tense logic, combining modality and tense, epistemic logic, quantified modal logic",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-244-modal-logic-spring-2015 +24.251,Introduction to Philosophy of Language,Fall,2011,Meaning and reference; empiricist theories; psychological theories; truth-conditional theories; pretense and attitude ascriptions; hidden indexical theory; implicature theory; pragmatic theory,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-251-introduction-to-philosophy-of-language-fall-2011 +24.261,Philosophy of Love in the Western World,Fall,2004,Philosophy; seminar; love; sex; literature; film; readings; classic myths; analysis; marriage; romance; tragedy; Don Juan; Shaw; George Bernard; Pygmalion.,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-261-philosophy-of-love-in-the-western-world-fall-2004 +24.262,"Feeling and Imagination in Art, Science, and Technology",Spring,2004,Feeling; Imagination; Creativity; Art; Science; Technology; Philosophy; Psychology; Process; Discovery; Invention; Emotion; Idealization; Consummation; Aesthetic Values; Affective; Cognitive; Human Nature; Literature,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-262-feeling-and-imagination-in-art-science-and-technology-spring-2004 +24.263,The Nature of Creativity,Fall,2005,Philosophy; creativity; creation; emotion; discovery; invention; experience; evolution; affective computing; meaning; aesthetics.,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-263-the-nature-of-creativity-fall-2005 +24.264,Film as Visual and Literary Mythmaking,Fall,2005,Philosophy; film; myth; literature; visual; literary; classic; Western world; problems.,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-264-film-as-visual-and-literary-mythmaking-fall-2005 +24.900,Introduction to Linguistics,Fall,2012,language; linguistics; syntax; phonetics; consonants; vowels; McGurk effect; phonology; phoneme; allophone; lexicon; affixes; topicalization; pronunciation; semantics; truth conditions; synchronic; diachronic; language families; Ebonics; dialect,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-900-introduction-to-linguistics-fall-2012 +24.900,Introduction to Linguistics,Spring,2022,"morphology +phonetics +phonology +syntax +semantics +endangered languages +language acquisition +sign language +historical linguistics",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-900-introduction-to-linguistics-spring-2022 +24.901,Language and Its Structure I: Phonology,Fall,2010,phonetics; phonology; tone and intonation; alternations; chain shift; vowel morphology; sociolinguistic variables;,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-901-language-and-its-structure-i-phonology-fall-2010 +24.902,Language and its Structure II: Syntax,Fall,2003,linguistics; syntax; language structure; theory,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-902-language-and-its-structure-ii-syntax-fall-2003 +24.902,Language and its Structure II: Syntax,Fall,2015,"linguistics; syntax; language structure; theory, binding theory, syntactic movement, wh-movement, verbs, tense, A-movement, specifiers, complementizers, theta-roles, subcategorization, covert movement",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-902-language-and-its-structure-ii-syntax-fall-2015 +24.903,Language and its Structure III: Semantics and Pragmatics ,Spring,2005,semantic theory; pragmatic theory; form and meaning in natural languages; Ambiguities of structure and of meaning; Compositionality. Word meaning; Quantification and logical form; indexicality; discourse ;presupposition; Literal meaning vs speaker's meaning; Speech acts; conversational implicature meaning.,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-903-language-and-its-structure-iii-semantics-and-pragmatics-spring-2005 +24.908,Creole Languages and Caribbean Identities,Spring,2017,"Caribbean +Creole +Language +Colonization +Slavery +Creolization +Literature +Identity +Culture +Religion +Music +Haiti +History +Politics +Socioeconomics +Kreyol +Counter-Plantation", +24.910,Topics in Linguistics Theory,Spring,2003,linguistic theory; semantics; typology; preformatics; modality; evidentiality; embedded assertions,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-910-topics-in-linguistics-theory-spring-2003 +24.910,Topics in Linguistic Theory: Laboratory Phonology,Spring,2007,,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-910-topics-in-linguistic-theory-laboratory-phonology-spring-2007 +24.910,Topics in Linguistic Theory: Propositional Attitudes,Spring,2009,"linguistic theory, linguistics, propositional attitudes, semantics, presupposition, sequence of tense, self-locating attitudes, logophors, CP structure, embedded clauses, control, raising, pramatics, evidentials, expressive meaning, conversation, common ground, assertion, embedding verbs",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-910-topics-in-linguistic-theory-propositional-attitudes-spring-2009 +24.912,Black Matters: Introduction to Black Studies,Spring,2017,"black studies +Black Lives Matter +race +racism +class +gender +African American +Caribbean +black +social justice +oppression +Haiti +language +creole +woke +othering +justice +identity +liberation +African American English +profiling +discrimination +code noir +revolution +human rights +independence +slavery +freedom +vodou +culture +civil rights +immigration +politics +equality",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-912-black-matters-introduction-to-black-studies-spring-2017 +24.914,Language Variation and Change,Spring,2019,"language variation +lexical variation +language change +dialects +historical linguistics +sociolinguistics +phonetics +syntax +vowel contrast +vowel merger",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-914-language-variation-and-change-spring-2019 +24.915,Linguistic Phonetics,Fall,2015,"linguistics +phonetics +language +speech +voice +sound +source-filter +acoustics +audition +auditory +analog-to-digital conversion +grammar +quantal theory +vowels +spectral analysis +coarticulation +adaptive dispersion +perception +lexical access +frequency +waveform +spectrogram +eletropalatography +retroflex contrasts +speech chain +articulation +vocal tract +nasal +lateral +fricative +oral +praat +spectrum +spectral representation +pitch +signal +glottis +phonetic grammars +phonetic universals +tone +voiced +voiceless +aspirated +unaspirated +Voice Onset Time +VOT +cross-linguistic variation +larynx +vocal folds +vocal tract +Helmholtz resonator +perturbation theory +lip rounding",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-915-linguistic-phonetics-fall-2015 +24.917,ConLangs: How to Construct a Language,Fall,2018,"conlangs +phonetics +phonology +writing systems +alphabets +morphology +syntax +semantics +historical linguistics +science fiction +fantasy +",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-917-conlangs-how-to-construct-a-language-fall-2018 +24.942,Grammar of a Less Familiar Language,Spring,2003,"grammar, linguistic universals, Kurdish",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-942-grammar-of-a-less-familiar-language-spring-2003 +24.946,Linguistic Theory and the Japanese Language,Fall,2004,Linguistics; Linguistic Theory; Japanese; Language; theoretical linguistics; A-positions; A-chains; A'-positions; A'-chains; Double-object construction; Possessor raising; locational verbs; Binding; External argument; causative construction; reconstruction; word-order permutation.,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-946-linguistic-theory-and-the-japanese-language-fall-2004 +24.947,Language Disorders in Children,Spring,2013,"language disorders; impairment; autism; Fragile X; Rett's Syndrome; Williams Syndrome; Down Syndrome; speech disorder; language development; multilingual children; experimental design; linguistic competence; +",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-947-language-disorders-in-children-spring-2013 +24.949,Language Acquisition I,Fall,2020,"morpho-syntax +semantics +pragmatics +learnability +root infinitives +A-movement +binding +quantification +definites +presupposition +implicatures",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-949-language-acquisition-i-fall-2020 +24.951,Introduction to Syntax,Fall,2003,linguistics; syntax; government ; binding theory; principles; parameters; minimalist program; phrase structure; argument; syntactic expression; passives; unaccusativity; relational grammar; lexical; functional; case; licensing; null bubjects; control; head movement; nonconfigurationality; double objects; psych verbs,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-951-introduction-to-syntax-fall-2003 +24.952,Advanced Syntax,Spring,2007,"syntax; movement; phrase structure, architecture of the grammar; A-bar phenomena; logical form; reconstruction; gapping; Wh-movement; phases; barriers; superiority",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-952-advanced-syntax-spring-2007 +24.954,Pragmatics in Linguistic Theory,Fall,2006,context-dependency; presupposition; implicature; context-change; focus and topic; division of labor; semantics; pragmatics; quantification; definiteness; presupposition projection; conditionals; modality; anaphora,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-954-pragmatics-in-linguistic-theory-fall-2006 +24.954,Pragmatics in Linguistic Theory,Spring,2010,implicatures; presuppositions; free choice disjunction; embedded implicatures,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-954-pragmatics-in-linguistic-theory-spring-2010 +24.960,Syntactic Models,Spring,2006,"architectures; syntax module of grammar; models; ancient and medieval proposals; structuralism; early generative grammar; generative semantics; government-binding theory/minimalism; LFG, HPSG; TAG; functionalist perspectives",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-960-syntactic-models-spring-2006 +24.961,Introduction to Phonology,Fall,2014,phonology; optimality theory; generative grammar; language; linguistic theory; phonetics; SPE model; constraint conjunction; conspiracies; phonotactics; markedness; typology; remote interaction; harmonic serialism; geminates; skeleton; underspecification; contrast constraints; harmony; tone; sonority; phonotactics; weight; metrical grid; rhythm; prosodic morphology,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-961-introduction-to-phonology-fall-2014 +24.962,Advanced Phonology,Spring,2005,Linguistics; phonological phenomena; morphological structure; base-reduplicant identity; cyclicity; level ordering; derived environment effects; opaque rule interactions; morpheme structure constraints; correspondence constraints.,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-962-advanced-phonology-spring-2005 +24.964,Topics in Phonology,Fall,2004,"phonology, language, phonological learning, phonotactics, modeling, grammar, perl, learning, alternations, gradient patterns, linguistics",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-964-topics-in-phonology-fall-2004 +24.964,Topics in Phonology: Phonetic Realization,Fall,2006,contour tones; syllable weight; place assimilation; geminate devoicing; phonetic realization; modular feedforward model; integrated phonetics; phonology; weighted constranints; consonant-vowel coarticulation; segment duration; stop release; gestural coordianation; tonal realization; too many solutions problem,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-964-topics-in-phonology-phonetic-realization-fall-2006 +24.973,Advanced Semantics,Spring,2009,"semantics, logic, meaning, syntactic systems, generative grammar, displacement, intensional semantics, Hintikka's idea, accessibility relations, modality, quantificational theory of modality, material implication analysis, strict implication analysis, tense, conditionals, progressive, perfect, de re, de dicto, raised subjects, scope paradox, overt world variables, restrictors, syntax movement, wh-movement, DP, VP",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-973-advanced-semantics-spring-2009 +24.979,Topics in Semantics: Negative Polarity Items,Fall,2018,"semantics +negative polarity items +focus +presupposition exhaustification quantification +definiteness +indefiniteness +modals +attitudes +comparison +superlatives +entailment",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-979-topics-in-semantics-negative-polarity-items-fall-2018 +1.018J,Ecology I: The Earth System,Fall,2009,"biosphere, geosphere, atmosphere, photosynthesis, respiration, hydrologic cycle, carbon cycle, nitrogen cycles,ecosystems, regulation and abundance of organisms, evolution, natural selection, metabolic diversity, productivity, trophic dynamics, models of population growth, competition, mutualism, predation. ",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-018j-ecology-i-the-earth-system-fall-2009 +1.124J,Foundations of Software Engineering,Fall,2000,modern software development; engineering and information technology; component-based software; C#; .NET; data structures; algorithms for modeling; analysis; visualization; basic problem-solving techniques; web services; management and maintenance of software; sorting; searching; algorithms; numerical simulation techniques; image processing; computational geometry; finite element methods; network methods; e-business applications; classes; objects; inheritance; virtual functions; abstract classes; polymorphism; Java applications; applets; Abstract Windowing Toolkit; Graphics; Threads; Java; C++,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-124j-foundations-of-software-engineering-fall-2000 +1.201J,Introduction to Transportation Systems,Fall,2006,"transportation, technology, environmental, energy, economic development, sustainability, urban structure, land use, equity, transportation components, modes, intermodal combinations, quantitative modeling, strategic regional planning, institutional change analysis, CLIOS, large-scale systems",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-201j-introduction-to-transportation-systems-fall-2006 +1.201J,Transportation Systems Analysis: Demand and Economics,Fall,2008,"transportation, travel demand, organizational models, consumer theory, project finance, intelligent transportation systems, project evaluation, demand modelling, technology, environmental, energy, economic development, sustainability, urban structure, land use, equity, transportation components, intermodal combinations, quantitative modeling, strategic regional planning, institutional change analysis, large-scale systems",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-201j-transportation-systems-analysis-demand-and-economics-fall-2008 +1.203J,Logistical and Transportation Planning Methods ,Fall,2006,logistics; transportation; hypercube models; barrier example; operations research; spatial queues; queueing models; network models; TSP; heuristics; geometrical probabilities; Markov; quantitative techniques; transportation systems analysis; urban service systems; emergency services; random variables; multi-server queueing theory; spatial location theory; network analysis; graph theory; simulation; urban OR,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-203j-logistical-and-transportation-planning-methods-fall-2006 +1.206J,Airline Schedule Planning,Spring,2003,Airline Schedule Planning; Optimization; Operations; Fleet Assignment; Aircraft Maintenance Routing; Crew Scheduling; Passenger Mix; Model Integration; Robustness; Operations Recovery,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-206j-airline-schedule-planning-spring-2003 +1.212J,An Introduction to Intelligent Transportation Systems,Spring,2005,"intelligent transportation systems; ITS; technological systems, institutional aspects of ITS; system architecture; congestion pricing; public partnerships; private partnerships; network models; industrial policy;",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-212j-an-introduction-to-intelligent-transportation-systems-spring-2005 +1.221J,Transportation Systems,Fall,2004,transportation systems; large-scale integrated systems; passenger transportation systems; freight transportation systems; transportation planning; transportation investment; transportation operations; transportation maintenance; system performance; level of service metrics; level of service determinants; design of transportation services; intermodal transportation,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-221j-transportation-systems-fall-2004 +1.223J,"Transportation Policy, Strategy, and Management",Fall,2004,public transportation systems; pollution; infrastructure; government regulation; public policy; strategic planning management; labor relations; maintenance planning; administration; financing; marketing policy; fare policy; management information; decision support systems; transit industry; service provision; private sector; alternative models of decision-making; strategic planning; stakeholder valuation and analysis; government-based regulation and cooperation; transportation enterprise; disaster communications; systems safety; change management; and the impact of globalization;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-223j-transportation-policy-strategy-and-management-fall-2004 +1.224J,Carrier Systems,Fall,2003,carrier systems; design; operation; management; transportation networks; assets; personnel; freight and passengers; models and tools for analyzing; optimization; planning; managing and controlling;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-224j-carrier-systems-fall-2003 +1.225J,Transportation Flow Systems,Fall,2002,transportation; transportation flow systems; traffic; traffic flow; networks; transportation networks; flow modeling; flow operations; deteministic models; probabilistic models; queuing theory; queues; traffic assignment; case studies; cumulative plots; airport runway capacity; runway capacity; road traffic; shortest paths; optimizations; highway control; ramp metering; simulation models; isolated signals; operations; operational problems; air traffic operation; air; road; component,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-225j-transportation-flow-systems-fall-2002 +1.252J,Urban Transportation Planning,Fall,2016,"urban planning, urban transportation, transportation, policy, planning, public transit, traffic engineering, policy analysis, air pollution, social, climate change, land use, traffic, pedestrians traffic calming, infrastructure, Big Dig, civil engineering, environmental engineering, highway finance, environmental and planning regulations, air quality, modal characteristics, information technologies",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-252j-urban-transportation-planning-fall-2016 +1.253J,Transportation Policy and Environmental Limits,Spring,2004,public transportation systems; pollution; infrastructure; government regulation; public policy; strategic planning management; labor relations; maintenance planning; administration; financing; marketing policy; fare policy; management information; decision support systems; transit industry; service provision; private sector;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-253j-transportation-policy-and-environmental-limits-spring-2004 +1.258J,Public Transportation Systems,Spring,2017,public transportation modes; performance monitoring; route and network design; vehicle and crew scheduling; frequency determination; organizational models,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-258j-public-transportation-systems-spring-2017 +1.259J,Transit Management,Fall,2006,public transportation systems; strategic planning management; labor relations; maintenance planning; administration; financing; marketing policy; fare policy; management information; decision support systems; transit industry; service provision; private sector;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-259j-transit-management-fall-2006 +1.264J,"Database, Internet, and Systems Integration Technologies ",Fall,2013,"information technology, software development, data modeling, database, application development, web standards, system integration, security, data communications, good software process, supply chain, transportation, civil engineering",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-264j-database-internet-and-systems-integration-technologies-fall-2013 +1.463J,The Impact of Globalization on the Built Environment,Fall,2009,"management, construction, engineering, architecture, global markets, concessions, partnering, finance, privatization, outsourcing, information technology, international, globalization, greatest construction projects, project delivery system, risk management, megacities, competitiveness",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-463j-the-impact-of-globalization-on-the-built-environment-fall-2009 +1.725J,Chemicals in the Environment: Fate and Transport,Fall,2004,control volumes; mass balance; advective/dispersive transport; chemical equilibria; mass action; electroneutrality; mass conservation; chemical kinetics and partitioning; river transport; lakes and wetlands and estuaries; sediment transport; bottom sediments; paleolimnology; air-water exchange; major ion chemistry of natural waters; D'Arcy's Law;,https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-725j-chemicals-in-the-environment-fate-and-transport-fall-2004 +1.84J,Atmospheric Chemistry,Fall,2013,"photochemistry, specstrocopy, chemical kinetics, stratospheric chemistry, tropospheric chemistry, reactive nitrogen chemistry, oxidized chemistry, aerosol chemistry, atmospheric aqueous chemistry, climate change, acid rain, ozone pollution",https://ocw.mit.edu/courses/civil-and-environmental-engineering/1-84j-atmospheric-chemistry-fall-2013 +10.492-1,Integrated Chemical Engineering Topics I: Process Control by Design,Fall,2004,"process control, heat exchanger network, design, shower process, continuous chemical processes, dynamic simulation, implementation, controllers, feedback structure, material model, energy balance model, linearizing equations, Relative Gain Array, Disturbance Cost, proportional control algorithm, steady-state model, numerical linearization, matrix operations, variable pairing, process simulators, design process, offset phenomenon, RGA, DC, heat recovery scheme",https://ocw.mit.edu/courses/chemical-engineering/10-492-1-integrated-chemical-engineering-topics-i-process-control-by-design-fall-2004 +10.492-2,Integrated Chemical Engineering Topics I: Introduction to Biocatalysis,Fall,2004,"biocatalysis, enzymes, enzyme kinetics, whole cell catalysts, biocatalytic processes, site-directed mutagenesis, cloning, enzyme performance, enzyme specificity, enzyme inhibition, enzyme toxicity, yield, enzyme instability, equilibrium reactions, product solubility, substrate solubility",https://ocw.mit.edu/courses/chemical-engineering/10-492-2-integrated-chemical-engineering-topics-i-introduction-to-biocatalysis-fall-2004 +10.571J,Atmospheric Physics and Chemistry,Spring,2006,physics of the atmosphere; chemistry of the atmosphere; computer codes; Aerosols;Gas; aerosol transport;radiation; emissions;Emissions control technology; air pollution and climate.,https://ocw.mit.edu/courses/chemical-engineering/10-571j-atmospheric-physics-and-chemistry-spring-2006 +10.675J,Computational Quantum Mechanics of Molecular and Extended Systems,Fall,2004,"quantum mechanics, computational quantum mechanics, molecular systems, extended systems, Hartree-Fock theory, density functional theory, DFT, many-electron problem, electron correlation, chemical systems, reactivity, spectroscopic properties, thermodynamics, kinetics, chemical processes, complex hypersurfaces. CPMD, Car-Parrinello Molecular Dynamics",https://ocw.mit.edu/courses/chemical-engineering/10-675j-computational-quantum-mechanics-of-molecular-and-extended-systems-fall-2004 +10.805J,"Technology, Law, and the Working Environment",Spring,2006,"National Labor Relations Act, Occupational Safety and Health Act, Toxic Substances Control Act, state worker's compensation, occupational health and safety, collective bargaining, altering technology in the workplace, job alienation, productivity, organization of work, environmental law, public health, regulation of toxic substances and processes, economics of health and safety, labor and anti-discrimination law, workers' right-to-know",https://ocw.mit.edu/courses/chemical-engineering/10-805j-technology-law-and-the-working-environment-spring-2006 +11.001J,Introduction to Urban Design and Development,Spring,2006,cities; suburbs; metropolitan areas; change; American metropolis; design and development; urban problems; urban design and development; values; ideas and design; designs for new towns; collaboration; redevelopment; growth; sprawl; community development; city design;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-001j-introduction-to-urban-design-and-development-spring-2006 +11.002J,Making Public Policy,Fall,2014,"public policy, politics, policy, advocate, institutions, government, ideology, health care, gun control, federal budget, immigration, same-sex marriage, energy, climate change, reform, capitalism, freedom, agendas, congress, interest groups, public opinion, obamacare, ACA, recession, deficit, debt, fiscal cliff, sequester, executive action, social policy, amendment, federalism, judicial review, renewable energy",https://ocw.mit.edu/courses/urban-studies-and-planning/11-002j-making-public-policy-fall-2014 +11.003J,Methods of Policy Analysis,Spring,2016,"policy, analysis, settlements, cities, urban, properties, government, taxes, politics, public policy, non-profit, private sector, education, social policy, public health policy, defense policy",https://ocw.mit.edu/courses/urban-studies-and-planning/11-003j-methods-of-policy-analysis-spring-2016 +11.013J,American Urban History I,Spring,2010,"American urban history, political machines, police, courts, schools, welfare, prisons, hospitals, universities, electric railways, public authorities, housing, ",https://ocw.mit.edu/courses/urban-studies-and-planning/11-013j-american-urban-history-i-spring-2010 +11.014J,American Urban History II,Fall,2011,"urban planning; urban design; cities; downtown; skyscrapers; buildings; open space; infrastructure; traffic; congestion; ""white flight""; suburban development; urban renewal; urban blight; retail and business centers and districts; zoos; entertainment; ",https://ocw.mit.edu/courses/urban-studies-and-planning/11-014j-american-urban-history-ii-fall-2011 +11.016J,The Once and Future City,Spring,2015,urban context; history; growth; urban development; the city; storytelling; writing; landscape; place; narrative; urban planning; seeing; digital photography; digital editing; community; urban revitalization; neighborhood;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-016j-the-once-and-future-city-spring-2015 +11.126J,Economics of Education,Spring,2007,economics of education; economic aspect; econometric; basic human capital theory; earnings and earnings inequality; statistical issues; rate of return to education; labor market for teachers; impact of computers; demand for worker skills; mid-career training; school choice; educational technology; financial aid;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-126j-economics-of-education-spring-2007 +11.127J,Computer Games and Simulations for Education and Exploration,Spring,2015,"education, computers, computer games, video games, board games, game design, minecraft, kerbal space program, fiasco, dominion, agricola, pandemic, a few acres of snow, chrononauts, apples to apples, learning, gamers, digital games, multiplayer, prototypes",https://ocw.mit.edu/courses/urban-studies-and-planning/11-127j-computer-games-and-simulations-for-education-and-exploration-spring-2015 +11.165J,Urban Energy Systems and Policy,Fall,2022,"transportation +buildings +solar power +renewable energy +electric grids +decarbonization +carbon sinks +sustainability", +11.301J,Introduction to Urban Design and Development,Fall,2016,"urban design, urban development, design, development, city design, cities, Boston, market economics, industrial production, public development, private development, models, urban change, urban planning, shaping cities, urban growth, urban form",https://ocw.mit.edu/courses/urban-studies-and-planning/11-301j-introduction-to-urban-design-and-development-fall-2016 +11.302J,Urban Design Politics,Spring,2010,urban design; urban politics; design politics; political extremes; urban resilience; public housing; architecture; political values; aesthetics; gender politics; power; capitol design; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-302j-urban-design-politics-spring-2010 +11.304J,Site and Infrastructure Systems Planning,Spring,2009,site planning; tama new town; japan; site analysis; grading principles; landscape planning; site inventory and evaluation; earthwork; soils; hydrology; storm water; drainage basins; wetlands; water features; development layout; topography; land use standard; streets; planning studio; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-304j-site-and-infrastructure-systems-planning-spring-2009 +11.308J,Advanced Seminar: Urban Nature and City Design,Fall,2012,"urban nature; city design; urban design; boston, ma; environmental design; landscape architecture; boston, ma; philadelphia, pa; earth; water; air; urban biome; community building; environmental reconstruction; new orleans, la; environmental restoration",https://ocw.mit.edu/courses/urban-studies-and-planning/11-308j-advanced-seminar-urban-nature-and-city-design-fall-2012 +11.309J,Sites in Sight: Photography as Inquiry,Fall,2003,landscape; light; significant detail; place; poetics; narrative; urban planning; seeing; digital photography; digital editing; storytelling; community; urban revitalization; neighborhood;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-309j-sites-in-sight-photography-as-inquiry-fall-2003 +11.309J,Sensing Place: Photography as Inquiry,Fall,2012,photography; landscape; light; significant detail; place; poetics; narrative; urban planning; seeing; digital photography; digital editing; storytelling; community; urban revitalization; neighborhood;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-309j-sensing-place-photography-as-inquiry-fall-2012 +11.310J,Media Technology and City Design and Development,Fall,2002,"workshop, community development in inner-city neighborhoods, internet, digital, teaching tool, media, urban, design",https://ocw.mit.edu/courses/urban-studies-and-planning/11-310j-media-technology-and-city-design-and-development-fall-2002 +11.310J,Media Technology and City Design and Development,Spring,2002,West Philadelphia; Mill Creek; urban environmental design; information technology; public education; city design; community development; inner-city neighborhoods; design and planning; grassroots efforts; neighborhood-based design; West Philadelphia; environmental and community history; planning; community and watershed; WPLP; school and community; interactive design,https://ocw.mit.edu/courses/urban-studies-and-planning/11-310j-media-technology-and-city-design-and-development-spring-2002 +11.328J,"Urban Design Skills: Observing, Interpreting, and Representing the City",Fall,2004,Same keywords as 11.328J F02.,https://ocw.mit.edu/courses/urban-studies-and-planning/11-328j-urban-design-skills-observing-interpreting-and-representing-the-city-fall-2004 +11.332J,Urban Design,Fall,2003,urban planning; community; stakeholders; development; urban growth; MIT; Cambridge; Cambridgeport; institutional mechanisms; housing; universities; town and gown; built form; public space; landscape; path and access systems; parking; density; activity location and intensity; planning; finance; public/private partnerships; parcelization; phasing; multi-disciplinary teams;,https://ocw.mit.edu/courses/urban-studies-and-planning/11-332j-urban-design-fall-2003 +11.337J,Urban Design Policy and Action,Spring,2007,design policy; government; intervention; urban design policy; theory of government intervention; modes of intervention; tools of government; boston civic design commission; tools approach; five tools; ownership; operation; regulation; property rights; incentives; disincentives; information; design review,https://ocw.mit.edu/courses/urban-studies-and-planning/11-337j-urban-design-policy-and-action-spring-2007 +11.337J,Urban Design Policy and Action,Spring,2009,"design policy; government; urban design policy; tools of government; private developers; community groups; political culture; city design; toolkits for urban design; neighborhood design; best practices; new urbanism; neighborhood unit; garden city +",https://ocw.mit.edu/courses/urban-studies-and-planning/11-337j-urban-design-policy-and-action-spring-2009 +11.366J,Planning for Sustainable Development,Spring,2006,sustainable; development; sustainable development; economics; global context; local context; organizational change; innovation; government; university; international justice; technology; climate; public transit; transportation; environment; environmental planning; community planning; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-366j-planning-for-sustainable-development-spring-2006 +11.431J,Real Estate Finance and Investment,Fall,2006,real estate; finance and investment; financial decisions; property development and investment; leasing and property income streams; pro forma analysis; equity valuation; tax analysis; options; risk; financial structuring of real property ownership; pension funds; REITs; banks; life insurance companies; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-431j-real-estate-finance-and-investment-fall-2006 +11.432J,Real Estate Capital Markets,Spring,2007,real estate; real estate investment trust; mortgage backed securities; REIT; CMBS; portfolio theory; CAPM; real estate finance; real estate derivatives; index swaps,https://ocw.mit.edu/courses/urban-studies-and-planning/11-432j-real-estate-capital-markets-spring-2007 +11.433J,Real Estate Economics,Fall,2008,real estate; property; macroeconomic factors; supply and demand; market cycles; land markets; demographic trends; transportation; government regulation; real estate market; demographic analysis; regional growth; residential construction; new home building; commercial construction; retail stores; urban location theory; predicting demand; modeling techniques; urban economics; land use; urban growth; residential development; gentrification; zoning; property taxes; neighboorhood effects,https://ocw.mit.edu/courses/urban-studies-and-planning/11-433j-real-estate-economics-fall-2008 +11.434J,Advanced Topics in Real Estate Finance,Spring,2007,property; real estate; commercial mortgage-backed securities; real estate derivatives; finance; investment; real estate finance; commercial real estate,https://ocw.mit.edu/courses/urban-studies-and-planning/11-434j-advanced-topics-in-real-estate-finance-spring-2007 +11.467J,Property Rights in Transition,Spring,2005,property; property law; international law; ownership; migration; poverty; wealth; power; social values; social classes; regime change; economics; institutional perspectives; real estate; natural resources; sustainability; ,https://ocw.mit.edu/courses/urban-studies-and-planning/11-467j-property-rights-in-transition-spring-2005 +11.479J,Water and Sanitation Infrastructure in Developing Countries,Spring,2007,water; sanitation; infrastructure; developing countries; sustainable technologies; drinking water; human well-being; wastewater; high-income countries; microbial contamination; chemical contamination; arsenic; fluoride; pesticides; petrochemicals; salinity contamination; water supply; sanitation systems; public health; economic factors,https://ocw.mit.edu/courses/urban-studies-and-planning/11-479j-water-and-sanitation-infrastructure-in-developing-countries-spring-2007 +11.481J,Analyzing and Accounting for Regional Economic Growth,Spring,2009,regional growth; political economy; spatial economic analysis; regional economic growth; economics; regional theories; regional planning; regional and urban economics; neoclassical; dispersal economies; regional accounting; social accounting matrices; underground economy; price indices; shift share analyses; energy; determinants of growth,https://ocw.mit.edu/courses/urban-studies-and-planning/11-481j-analyzing-and-accounting-for-regional-economic-growth-spring-2009 +11.482J,Regional Socioeconomic Impact Analyses and Modeling,Fall,2007,regional economic theories; alternative socioeconomic impact assessment models; theoretical modeling; economics; urban planning; linkages; theories; accounts; policies; national and regional economic structures; regional input-output accounts and tables; international employment outsourcing; economic impact; local economy; regional-development issues; investment; REMI; Boston Redevelopment Authority,https://ocw.mit.edu/courses/urban-studies-and-planning/11-482j-regional-socioeconomic-impact-analyses-and-modeling-fall-2007 +11.482J,Regional Socioeconomic Impact Analyses and Modeling,Fall,2008,regional economic theories; alternative socioeconomic impact assessment models; theoretical modeling; economics; urban planning; linkages; theories; accounts; policies; national and regional economic structures; regional input-output accounts and tables; international employment outsourcing; economic impact; local economy; regional-development issues; investment; REMI; Boston Redevelopment Authority,https://ocw.mit.edu/courses/urban-studies-and-planning/11-482j-regional-socioeconomic-impact-analyses-and-modeling-fall-2008 +11.486J,Economic Institutions and Growth Policy Analysis,Fall,2005,economics; economic institutions; growth policy analysis; division of labor; corporations; markets; hierarchy; bureaucracy; street level bureaucracy; firm structure; optimum firm structure; corporate culture; organizational culture; globalism,https://ocw.mit.edu/courses/urban-studies-and-planning/11-486j-economic-institutions-and-growth-policy-analysis-fall-2005 +11.491J,"Economic Development, Policy Analysis, and Industrialization",Fall,2004,"economic growth; technological capabilities; +world technological frontier; innovation; new products; production engineering; project execution; borrowed technology; third world development; industrialization; pre WWII; post WWII; underdevelopment; lending; government regulation",https://ocw.mit.edu/courses/urban-studies-and-planning/11-491j-economic-development-policy-analysis-and-industrialization-fall-2004 +11.943J,"Urban Transportation, Land Use, and the Environment",Spring,2002,"urban transportation, environmental, issues, Latin America, rapid motorization, suburbanization, impacts on +transportation infrastructure and quality of life, public sector management, and improvement, transit systems, air pollution, solutions, transportation",https://ocw.mit.edu/courses/urban-studies-and-planning/11-943j-urban-transportation-land-use-and-the-environment-spring-2002 +11.946J,Beijing Urban Design Studio,Summer,2004,China; Beijing; urban planning; international relations; site planning; building use; services; zoning; urban improvement; reuse; green building; cultural understanding,https://ocw.mit.edu/courses/urban-studies-and-planning/11-946j-beijing-urban-design-studio-summer-2004 +11.S196,Global Freshwater Crisis,Spring,2011,Freshwater; water shortage; water systems; water transfers; dams; pollution; climate change; scarcity; water conflict/cooperation; food security; agriculture,https://ocw.mit.edu/courses/urban-studies-and-planning/11-s196-global-freshwater-crisis-spring-2011 +11.S940,"Development, Planning, and Implementation: The Dialectic of Theory and Practice",Fall,2015,development; planning; theory; implementation; developing nations; cities; economics; industrialization; undeveloped areas; modernism; government; poverty; public administration; public sector; sustainability; ethics,https://ocw.mit.edu/courses/urban-studies-and-planning/11-s940-development-planning-and-implementation-the-dialectic-of-theory-and-practice-fall-2015 +11.S941,"Healthy Cities: Assessing Health Impacts of Policies and Plans +",Spring,2016,"healthy cities, health impacts, health policy, urban planning, health impact assessment methodology, environmental health",https://ocw.mit.edu/courses/urban-studies-and-planning/11-s941-healthy-cities-assessing-health-impacts-of-policies-and-plans-spring-2016 +11.S942,"Wanderings in Psychogeography: Exploring Landscapes of History, Biography, Memory, Culture, Nature, Poetry, Surreality, Fantasy, and Madness +",Fall,2020,"psychogeography +Debord +Situationism +imagination +travelogue +essays +biography +Surrealism +maps +landscape +poetry +photography +film",https://ocw.mit.edu/courses/urban-studies-and-planning/11-s942-wanderings-in-psychogeography-exploring-landscapes-of-history-biography-memory-culture-nature-poetry-surreality-fantasy-and-madness-fall-2020 +11.S943,"Development, Planning, and Implementation: The Dialectic of Theory and Practice +",Fall,2017,"development +planning +urban studies +implementation +theory +practice +policy +modernity +evaluation +assessment + + +",https://ocw.mit.edu/courses/urban-studies-and-planning/11-s943-development-planning-and-implementation-the-dialectic-of-theory-and-practice-fall-2017 +11.S945,Urbanizing China: A Reflective Dialogue,Fall,2013,"China, urbanization, city, hukou, migration, land use, housing, quota, property tax, technology, leasehold, car, transportation, air pollution, environment, low-carbon, energy, policy, market, big data, citizenization, migrant, employment, design, justice, age",https://ocw.mit.edu/courses/urban-studies-and-planning/11-s945-urbanizing-china-a-reflective-dialogue-fall-2013 +11.S945,Equity & Inclusion: Local Policy-Driven Strategies for Economic Development & the Just City,Spring,2019,"equity +economic development +public policy +social justice +environmental justice +urban planning +urban renewal +inclusion +race +gender +neighborhoods +community benefit",https://ocw.mit.edu/courses/urban-studies-and-planning/11-s945-equity-inclusion-local-policy-driven-strategies-for-economic-development-the-just-city-spring-2019 +11.S948,Seeing the City Afresh: Writing About the Modern City,Spring,2018,"city +story +writing +essay +memoir +poetry +literary narrative +flaneur +flaneuse +",https://ocw.mit.edu/courses/urban-studies-and-planning/11-s948-seeing-the-city-afresh-spring-2018 +11.S955,The Sustainability Response to Covid-19,IAP,2021,"transit +coronavirus +covid-19 +pandemic +public transportation +mobility +sustainability +public health +policy +advocacy +clean energy +climate change",https://ocw.mit.edu/courses/urban-studies-and-planning/11-s955-the-sustainability-response-to-covid-19-january-iap-2021 +12.006J,Nonlinear Dynamics: Chaos,Fall,2022,"chaos +nonlinear dynamics +fluid dynamics +nonlinear phenomena +bifurcation theory +free oscillators +forced oscillators +dynamical systems +spectral analysis +Rayleigh-Benard convection +Lorenz equations +strange attractors +Henon attractor +fractal dimension", +12.009J,Theoretical Environmental Analysis,Spring,2015,"natural environment, carbon cycle dynamics, ecosystem structure, stability and complexity, mass extinctions, biosphere-geosphere coevolution, climate change",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-009j-theoretical-environmental-analysis-spring-2015 +12.340x,Global Warming Science,Spring,2020,"global warming +climate system +climate change +climate model +greenhouse gases +atmospheric circulation +oceanic circulation", +12.620J,Classical Mechanics: A Computational Approach,Fall,2008,classical mechanics; computational classical mechanics; structure and interpretation of classical mechanics; phase space; lagrangian; action; variational principles; equation of motion; hamilton principle; rigid bodies; hamiltonian; canonical equations; surfaces of section; canonical transformations; liouville; poincare; birkhoff; kam theorem; invariant curves; resonance; chaos,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-620j-classical-mechanics-a-computational-approach-fall-2008 +12.S56,GPS: Where Are You?,Fall,2008,"Global Positioning System, GPS, geophysics, positions on the Earth, navigation, GPS measurements ",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-s56-gps-where-are-you-fall-2008 +12.S990,Quantifying Uncertainty,Fall,2012,"boundary value problems, Polynomial Chaos, Hierarchical Bayes, Variational Bayes, Particle Filters & Smoothers, Dimensionality Reduction, Sparse Optimization",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/12-s990-quantifying-uncertainty-spring-2012 +14.01SC,Principles of Microeconomics,Fall,2011,Microeconomics; prices; normative economics; positive economics; microeconomic applications;supply; demand; equilibrium; demand shift; supply shift; government interference; elasticity; revenue; empirical economics; consumer theory; preference assumptions; indifference curves; utility functions; marginal utility; budget constraints; marginal rate of transformation; opportunity cost; constrained utility maximization; corner solutions; Engel curves; income effect; substitution effect; Giffin good; labor economics; child labor; producer theory; variable inputs; fixed inputs; firm production functions; marginal rate of technical substitution; returns to scale; productivity; perfect competition; search theory; residual demand; shutdown decisions; market equilibrium; agency problem; welfare economics; consumer surplus; producer surplus; dead weight loss; monopoly; oligopoly; market power; price discrimination; price regulation; antitrust policy; mergers; cartel; game theory; Nash equilibrium; Cournot model; duopoly; non-cooperative competition; Bertrand competition; factor markets; international trade; uncertainty; capital markets; intertemporal choice; real interest rate; compounding; inflation; investment; discount rate; net present value; income distribution; social welfare function; Utilitarianism; Raulsian criteria; Nozickian; commodity egalitarianism; isowelfare curves; social insurance; social security; moral hazard; taxation; EITC; healthcare; PPACA,https://ocw.mit.edu/courses/economics/14-01sc-principles-of-microeconomics-fall-2011 +14.15J,Networks,Spring,2018,"networks +economics +dynamic systems +graph models +game theory +network effects +diffusion models +network models +Markov chains +social network",https://ocw.mit.edu/courses/economics/14-15j-networks-spring-2018 +14.15J,Networks,Spring,2022,"economics +networks +social network +economic network +internet +graphs +diffusion models +game theory", +15.0.SolveX,Business and Impact Planning for Social Enterprises,Summer,2021,"beachhead +business model +burn rate +capital +capital raise +customer discovery +cost of goods sold +COGS +horizontal scaling +input efficiency +intellectual property +IP +market opportunity +revenue model +runway +social business model +subsidy model +target reach +value proposition +vertical scaling",https://ocw.mit.edu/courses/sloan-school-of-management/res-solvex-business-and-impact-planning-for-social-enterprises-0-solvex-summer-2021 +15.023J,"Global Climate Change: Economics, Science, and Policy",Spring,2008,"global climate change; economics, science and policy; ecological issues; threat; international response; climate change processes; policy measures; research and model development; MIT Joint Program on the Science and Policy of Global Change;",https://ocw.mit.edu/courses/sloan-school-of-management/15-023j-global-climate-change-economics-science-and-policy-spring-2008 +15.031J,"Energy Decisions, Markets, and Policies",Spring,2012,energy; energy systems; oil reserves; public policy;environmental policy; path dependence; climate science; business decisions; NPV analysis; negotiations; globalization; regulation; power systems,https://ocw.mit.edu/courses/sloan-school-of-management/15-031j-energy-decisions-markets-and-policies-spring-2012 +15.053x,Optimization Methods in Business Anlytics,Spring,2021,, +15.066J,System Optimization and Analysis for Manufacturing,Summer,2003,modeling; optimization; simulation; manufacturing systems; decision making; decision support; probabilistic simulation; designing manufacturing systems; operations management; linear programming; sensitivity analysis; network flow problems; non-linear programming; Lagrange multipliers,https://ocw.mit.edu/courses/sloan-school-of-management/15-066j-system-optimization-and-analysis-for-manufacturing-summer-2003 +15.070J,Advanced Stochastic Processes,Fall,2013,analysis; modeling; stochastic processes; theoretic probability; martingales; filtration; stopping theorems; large deviations theory; Brownian motion; reflected Brownian motion; stochastic integration; Ito calculus; functional limit theorems; applications; finance theory; insurance; queueing; inventory models,https://ocw.mit.edu/courses/sloan-school-of-management/15-070j-advanced-stochastic-processes-fall-2013 +15.072J,Queues: Theory and Applications,Spring,2006,modeling; queueing; queues; queueing systems; communications; manufacturing; computers; call centers; service industries; transportation; applications; birth-death processes; markovian queues; networks; single-server; multi-server; multi-class queueing; fluid models; adversarial queueing; heavy-traffic theory; diffusion approximations ,https://ocw.mit.edu/courses/sloan-school-of-management/15-072j-queues-theory-and-applications-spring-2006 +15.075J,Statistical Thinking and Data Analysis,Fall,2011,statistics; data analysis; multiple regression; analysis of variance; multivariate analysis; data mining; probability; collecting data; sampling distributions; inference; linear regression; ANOVA; chi-square test; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-075j-statistical-thinking-and-data-analysis-fall-2011 +15.082J,Network Optimization,Fall,2010,network models; network design; maximum flow algorithm; minimum cost flow; shortest path algorithm; algorithm efficiency; preflow push algorithm; data structures,https://ocw.mit.edu/courses/sloan-school-of-management/15-082j-network-optimization-fall-2010 +15.083J,Integer Programming and Combinatorial Optimization,Fall,2009,mixed integer optimization; algorithms for integer optimization; robust discrete optimization; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-083j-integer-programming-and-combinatorial-optimization-fall-2009 +15.084J,Nonlinear Programming,Spring,2004,"unconstrained and constrained optimization, linear and quadratic programming, Lagrange and conic duality theory, interior-point algorithms and theory, Lagrangean relaxation, generalized programming, and semi-definite programming. Algorithmic methods include steepest descent, Newton's method, conditional gradient and subgradient optimization, interior-point methods and penalty and barrier methods.",https://ocw.mit.edu/courses/sloan-school-of-management/15-084j-nonlinear-programming-spring-2004 +15.093J,Optimization Methods,Fall,2009,"Linear optimization; Robust optimization;Network flows; Discrete optimization; Dynamic optimization; Nonlinear optimization +",https://ocw.mit.edu/courses/sloan-school-of-management/15-093j-optimization-methods-fall-2009 +15.094J,Systems Optimization: Models and Computation,Spring,2004,"applications; large-scale systems; decision-making domains; optimization; application domains; transportation and logistics planning; pattern classification and image processing; data mining; design of structures; scheduling in large systems; supply-chain management; financial engineering; telecommunications systems planning; Modeling; linear, network, discrete and nonlinear optimization; heuristic methods; sensitivity and post-optimality analysis; decomposition methods for large-scale systems; stochastic optimization",https://ocw.mit.edu/courses/sloan-school-of-management/15-094j-systems-optimization-models-and-computation-sma-5223-spring-2004 +15.136J,Principles and Practice of Drug Development,Fall,2013,"pharmaceutical,biopharmaceutical, drug discovery, preclinical development, clinical investigation, major issues of developing drugs, major stages of developing drugs, manufacturing issues, regulatory issues, economic considerations of drug development process, financial considerations of drug development process, clinical perspective, life sciences perspective on drug development, management sciences perspective on drug development, pharmaceutical industry guests",https://ocw.mit.edu/courses/sloan-school-of-management/15-136j-principles-and-practice-of-drug-development-fall-2013 +15.269b,"Literature, Ethics and Authority",Fall,2002,"ethics, business, literature, leadership, management, decision making, authority",https://ocw.mit.edu/courses/sloan-school-of-management/15-269b-literature-ethics-and-authority-fall-2002 +15.342J,Organizations and Environments,Fall,2004,empirical material; major conceptual frameworks; debates; developments in contemporary organization theory; inter-disciplinary domain of inquiry; sociology; economics; psychology; anthropology; political science; inter-organizational processes; cultural contexts that organizations must face,https://ocw.mit.edu/courses/sloan-school-of-management/15-342j-organizations-and-environments-fall-2004 +15.389A,Global Entrepreneurship Lab: Asia-Pacific,Fall,2010,entrepreneurship; developing markets; corruption; entrepreneurial; internationalization; entrepreneurial finance; entrepreneur; venture capital; commercialization; organizational development; Asia-Pacific,https://ocw.mit.edu/courses/sloan-school-of-management/15-389a-global-entrepreneurship-lab-asia-pacific-fall-2010 +15.389B,"Global Entrepreneurship Lab: Latin America, the Middle East, and Africa",Fall,2010,entrepreneurship; developing markets; corruption; entrepreneurial; internationalization; entrepreneurial finance; entrepreneur; commercialization; venture capital; organizational development; Latin America; Africa; the Middle East,https://ocw.mit.edu/courses/sloan-school-of-management/15-389b-global-entrepreneurship-lab-latin-america-the-middle-east-and-africa-fall-2010 +15.480x,The Science and Business of Biotechnology,Fall,2021,"healthcare finance +biomedical megafund +drug development +recombinant therapeutic proteins +market efficiency +wisdom of crowds +madness of mobs +time value +AAV vectors +in vivo gene therapy +capital budgeting +cash flows +NPV +IRR +Genetech +Herceptin +ex vivo gene therapy +retroviral +lentiviral +stocks and bonds +nucleic acid therapies +oligonucleotides +pre-mRNA +shRNA +target mRNA +CAPM +portfolio theory +diversification +gene editing +ZFNs +TALENs +optional pricing theory +monte carlo simulations +clinical trials +Bayesian adaptive clinical trials +antibody generation +venture capital +new business models +financing start-up +monoclonal antibodies +securitization +cancer immunotherapeutics +healthcare analytics +new cell therapies +pricing +ethics +LabCentral +",https://ocw.mit.edu/courses/sloan-school-of-management/15-480x-the-science-and-business-of-biotechnology-fall-2021 +15.481x,Adaptive Markets: Financial Market Dynamics and Human Behavior,Fall,2021,, +15.482x ,Healthcare Finance RES.15-005,Spring,2019,"healthcare finance +biomedical megafunds +market efficiency +wisdom of crowds +drug pricing +buying curves +inflation +cash flows +NPV +IRR +Genetech +Herceptin +stocks and bonds +CAPM +volatility +portfolio theory +Monte Carlo +option pricing theory +clinical trials +drug development +Bayesian adaptive clinical trials +venture capital +start-ups +financial crisis +securitization +risk and return +biopharma +predictive analysis +drug approvals +randomized clinical trials +",https://ocw.mit.edu/courses/sloan-school-of-management/res-15-005-healthcare-finance-15-482x-spring-2019 +15.565J,Integrating eSystems & Global Information Systems,Spring,2002,"information, stragegy, connectivity, business processes, application, data communication, database, web, artificial intelligence, distributed architecture, emerging technology, transformation, standards",https://ocw.mit.edu/courses/sloan-school-of-management/15-565j-integrating-esystems-global-information-systems-spring-2002 +15.568A,Practical Information Technology Management,Spring,2005,IT; information technology; ERP; resource planning; e-business; capital investments; business value; business models; chief information officer; CIO; IT governance; networks; IT enabled business models; direct to customer; content provider; value net integrator; information systems; technology; competitiveness; business strategy; change; project managment,https://ocw.mit.edu/courses/sloan-school-of-management/15-568a-practical-information-technology-management-spring-2005 +15.628J,"Patents, Copyrights, and the Law of Intellectual Property",Spring,2013,"patent, patent law, copyright, law, intellectual property, trade secret, trademark, licensing, fair use, infringement, plagiarism, non-competition, inventor, invention, novelty, non-obviousness, claims, litigation",https://ocw.mit.edu/courses/sloan-school-of-management/15-628j-patents-copyrights-and-the-law-of-intellectual-property-spring-2013 +15.677J,Urban Labor Markets and Employment Policy,Spring,2005,urban labor; labor markets; employment policy; demand for labor; unions; work structures; youth labor market; adult training; living wage campaigns,https://ocw.mit.edu/courses/sloan-school-of-management/15-677j-urban-labor-markets-and-employment-policy-spring-2005 +15.760a,Operations Management,Spring,2002,"manufacturing design, planning, control, service operations, product development, process management, supply chain, process analysis, materials management, production scheduling, quality improvement, and product design",https://ocw.mit.edu/courses/sloan-school-of-management/15-760a-operations-management-spring-2002 +15.760B,Introduction to Operations Management,Spring,2004,operations management; service operations; manufacturing design; manufacturing planning; production control; quality management; process design; reengineering; product development; project management; supply chain design; improving manufacturing processes; capacity; inventory; production control; quality control; product design; factory management,https://ocw.mit.edu/courses/sloan-school-of-management/15-760b-introduction-to-operations-management-spring-2004 +15.762J,Supply Chain Planning,Spring,2011,supply chain strategy; inventory models; supply contracts; supply chain integration; inventory systems; product design; risk pooling; inventory placement,https://ocw.mit.edu/courses/sloan-school-of-management/15-762j-supply-chain-planning-spring-2011 +15.763J,Manufacturing System and Supply Chain Design,Spring,2005,"supply chain strategies;companies; supply chain components; concepts and models; key tradeoffs and phenomena; risk pooling and inventory placement; integrated planning and collaboration; and information sharing; supply chain analysis and optimization; +",https://ocw.mit.edu/courses/sloan-school-of-management/15-763j-manufacturing-system-and-supply-chain-design-spring-2005 +15.772J,D-Lab: Supply Chains,Fall,2014,"supply chains, supply chain design, developing countries, developing economies, improving quality of life, demand estimation, facility location, operation planning, inventory management, supply chain coordination and performance",https://ocw.mit.edu/courses/sloan-school-of-management/15-772j-d-lab-supply-chains-fall-2014 +15.783J,Product Design and Development,Spring,2006,product design; product development; prototyping; machining; fabrication; design; CAD/CAM; marketing; product placement; innovation; product placement; marketplace analysis; industrial design; modern design; design tools; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-783j-product-design-and-development-spring-2006 +15.792J,Proseminar in Manufacturing,Fall,2005,"leadership skills; improve the Boston, MIT, Sloan or LFM communities; +applying leadership; management; service skills; public service;",https://ocw.mit.edu/courses/sloan-school-of-management/15-792j-proseminar-in-manufacturing-fall-2005 +15.980J,Organizing for Innovative Product Development,Spring,2007,innovative new product development; technology transfer; product ideas; science and technology; technological gatekeeper; rewards systems; innovation process; ,https://ocw.mit.edu/courses/sloan-school-of-management/15-980j-organizing-for-innovative-product-development-spring-2007 +15.ES718,Global Health Innovation: Delivering Targeted Advice to an Organization in the Field,Spring,2015,"innovation, global health, globalhealth, organization, ngo, health services, chronic care, health workers, lay workers, non-traditional methods, startup, India, healthcare, materinal health, Vikram Patel, Sangath, community, mental health, Dimagi, mPower, ginger.io, Centre for Affordable Healthcare Technology at Oxford University, MGH Center for Global Health’s CamTECH Consortium, Partners in Health, MIT Media Lab, the Global Health Delivery Project at Harvard, eHealth Systems",https://ocw.mit.edu/courses/sloan-school-of-management/15-es718-global-health-innovation-delivering-targeted-advice-to-an-organization-in-the-field-spring-2015 +15.S07,GlobalHealth Lab,Spring,2013,"global health, healthcare, health delivery, action lab, Africa, India, clinic, hospital, revenue model, business model, cost analysis, strategy, operations, marketing, technology",https://ocw.mit.edu/courses/sloan-school-of-management/15-s07-globalhealth-lab-spring-2013 +15.S08,FinTech: Shaping the Financial World,Spring,2020,"fintech +financial technology +finance +artificial intelligence +technology +API +deep learning +blockchain +payments +credit +trading +risk management +cryptocurrency +AI +natural language processing +machine learning +",https://ocw.mit.edu/courses/sloan-school-of-management/15-s08-fintech-shaping-the-financial-world-spring-2020 +15.S12,Blockchain and Money,Fall,2018,"blockchain +money +bitcoin +cryptocurrency +cryptography +finance +networks",https://ocw.mit.edu/courses/sloan-school-of-management/15-s12-blockchain-and-money-fall-2018 +15.S21,Nuts and Bolts of New Ventures and Business Plans,IAP,2014,"business plan; venture; entrepreneurship; new business; MIT $50K Entrepreneurship Competition; marketing; financing sources; Virtual Ink; bootstrapping; funding; venture capital; intellectual property; law; patents; copyrights, trademarks; tradesecrets; tax traps; team building; business philosophy",https://ocw.mit.edu/courses/sloan-school-of-management/15-s21-nuts-and-bolts-of-business-plans-january-iap-2014 +15.S50,Poker Theory and Analytics,IAP,2015,"poker, poker theory, poker analytics, investment management, trading, strategy, tounament play, poker psychology, decision-making, gameplay, pokerstars, wagering, analytical technique, pre-flop analysis, economics, no limit, Texas Hold’em",https://ocw.mit.edu/courses/sloan-school-of-management/15-s50-poker-theory-and-analytics-january-iap-2015 +15.S50,How to Win at Texas Hold'em,IAP,2016,"poker, poker theory, poker analytics, strategy, tounament play, poker psychology, decision-making, gameplay, pokerstars, wagering, analytical technique, pre-flop analysis, economics, no limit, Texas Hold’em, preflop, 3-betting, check-raising, floating, sizing, implied odds, polarization, ICM theory, data mining in poker, law of large numbers, Nash equilibrium, decisions vs. results, exploitative play, balanced play, risk management",https://ocw.mit.edu/courses/sloan-school-of-management/15-s50-how-to-win-at-texas-holdem-poker-january-iap-2016 +16.355J,Software Engineering Concepts,Fall,2005,software engineering; software development; software requirements; software specification; software analysis; formal analysis; quality management; product metrics; process metrics; COTS; software psychology,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-355j-software-engineering-concepts-fall-2005 +16.412J,Cognitive Robotics,Spring,2016,cognitive robotics; robotic systems; intelligence algorithms; robustness algorithms; intelligence paradigms; robustness paradigms; autonomous robots; artificial intelligence; AI; model-based robotics system,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-412j-cognitive-robotics-spring-2016 +16.423J,Aerospace Biomedical and Life Support Engineering,Spring,2006,physiological adaptation; weightlessness; human space flight; Bone Mechanics; Muscle Mechanics; Musculoskeletal Dynamics; Cardiovascular System; Neurovestibular system; extravehicular activity,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-423j-aerospace-biomedical-and-life-support-engineering-spring-2006 +16.430J,Sensory-Neural Systems: Spatial Orientation from End Organs to Behavior and Adaptation,Spring,2012,"sensory systems, neural processing, sensorimotor processing, vestibular system, spatial orientation system, sensory integration, balance, astronaut adaptation, motion sickness, spatial disorientation,",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-430j-sensory-neural-systems-spatial-orientation-from-end-organs-to-behavior-and-adaptation-spring-2012 +16.63J,System Safety,Spring,2016,"hindsight bias, system accident reports, Systems Theoretic Process Analysis, STPA, System-Theoretic Accident Model and Processes, STAMP, human factors, cyber security, CAST analysis, system theory, accident models, hazard analysis",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-63j-system-safety-spring-2016 +16.660J,Introduction to Lean Six Sigma Methods,IAP,2012,,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-660j-introduction-to-lean-six-sigma-methods-january-iap-2012 +16.75J,Airline Management,Spring,2006,airline economics; demand models; market share; differential pricing; revenues; airline operating costs; labor productivity; aircraft productivity; demand stochasticity; flight leg spill models; unconstrained demand; load and spill analysis; airline schedule development; passenger choice; decision window; airline management; fleet assignment optimization; route planning; network strategies; operational constraints; scheduling constraints; revenue management; overbooking; seat inventory control; ,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-75j-airline-management-spring-2006 +16.83X,Space Systems Engineering,Spring,2002,"space systems engineering, CDIO, conceive, design, implement, operate, trajectory analysis, entry dynamics, propulsion, power, structural design, avionics, thermal control, environmental control, human factors, support systems, weight estimates, cost estimates, student projects, integrated vehicle design, team communication, electromagnetic formation flight, satellites",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-83x-space-systems-engineering-spring-2002-spring-2003 +16.852J,Integrating the Lean Enterprise,Fall,2005,lean enterprise; technology; processes; management dimensions; manufacturing; enterprise; supply chain; industry; consulting; value streams; lean thinking; industrial change; organizational change; organzational processes; corporate stakeholders; ,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-852j-integrating-the-lean-enterprise-fall-2005 +16.863J,System Safety,Spring,2016,"risk management, human error models, system safety engineering, hazard analysis, safety design, fault tolerance, safety-critical system, human factors. cyber security, Systems Theoretic Process Analysis (STPA)",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-863j-system-safety-spring-2016 +16.885J,Aircraft Systems Engineering,Fall,2004,aircraft systems; aircraft systems engineering; lifecycle; cost estimation; weight estimation; aircraft performance; aircraft safety; aircraft reliability; subsystems; risk analysis; risk management; system realization; retrospective analysis; key design drivers; design drivers; design decisions; aircraft attributes; operational experience; case study; case studies; air transportation system; air defense system; systems engineering; interface management; interface verification; interface validation; subsystem architecture; performance issures; design closure; complex systems.,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-885j-aircraft-systems-engineering-fall-2004 +16.885J,Aircraft Systems Engineering,Fall,2005,space shuttle; space systems; NASA; aircraft systems; aircraft systems engineering; lifecycle; cost estimation; weight estimation; aircraft performance; aircraft safety; aircraft reliability; subsystems; risk analysis; risk management; system realization; retrospective analysis; key design drivers; design drivers; design decisions; aircraft attributes; operational experience; case study; case studies; air transportation system; air defense system; systems engineering; interface management; interface verification; interface validation; subsystem architecture; performance issures; design closure; complex systems.,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-885j-aircraft-systems-engineering-fall-2005 +16.891J,Space Policy Seminar,Spring,2003,"space policy, civil space policy, national security space policy, commercial space policy, technology policy",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-891j-space-policy-seminar-spring-2003 +16.892J,Space System Architecture and Design,Fall,2004,"space system, space system architecture, space architecting, uncertainties, space policy, robustness, flexibility, optimality, tradespace analysis, quality function deployment, multi-attribute utility theory, n-squared, design structure matrix, multi-attribution tradespace exploration, MATE, MATE-CON, satellite, classes of space system, XTOS, spacetug,GINA, pareto fronts, engineering design process, optimization methods, genetic algorithms, simulated annealing, MMDOSA, distributed space systems design optimization, clarity test, taxonomy of uncertainty, treatment of uncertainty, irreducible uncertainty, portfolio theory, portfolio applications, taxonomy of flexibility, on-orbit servicing, US national space policy, space policy heuristics, policy architectures",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-892j-space-system-architecture-and-design-fall-2004 +16.89J,Space Systems Engineering,Spring,2007,System Requirements Review; Preliminary Design Review; Critical Design Review; Conceptual Design Phase; Preliminary Design Phase; Detailed Design Phase; astrophysics; Stakeholder Analysis; System Architecture; Radio Astronomy; Space Telescope; Interferometry; Lunar Logistics; Mars exploration; Extensible Planetary Surface Mobility Systems; Mars Science Laboratory; Lunar telescope; NASA; Vision for Space Exploration; X-TOS; Terrestrial Planet Finder; ,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-89j-space-systems-engineering-spring-2007 +16.920J,Numerical Methods for Partial Differential Equations,Spring,2003,"numerical methods, differential equations, linear, nonlinear, elliptic, parabolic, hyperbolic, partial differential equations, integral equations, mathematical formulations, mathematics, finite difference, finite volume, discretisation, finite element, boundary element, iteration",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-920j-numerical-methods-for-partial-differential-equations-sma-5212-spring-2003 +16.A47,The Engineer of 2020,Fall,2009,engineering education; curricula development; admission trends; student expectations; modern engineers,https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-a47-the-engineer-of-2020-fall-2009 +16.S498,Risk Aware and Robust Nonlinear Planning,Fall,2019,"non-linear optimization, convex optimization, Sum-of-Squares Formulation (SOS), risk estimation, chance constrained control, safety verification, region of attraction set, optimal control, robust control ",https://ocw.mit.edu/courses/aeronautics-and-astronautics/16-s498-risk-aware-and-robust-nonlinear-planning-fall-2019 +17.100J,Political Economy I,Spring,2016,Political science; theories; liberal; neoclassical; Marxist; modern society; economic growth; historical change; state; classes; ideology; political economy; state; political liberalism; individualism; neo-classical economics; Marxism; neo-institutionalism,https://ocw.mit.edu/courses/political-science/17-100j-political-economy-i-spring-2016 +17.199J,Working in a Global Economy,Fall,2005,Political science; working; global economy; practice; policy; experts; academia; business.,https://ocw.mit.edu/courses/political-science/17-199j-working-in-a-global-economy-fall-2005 +17.55J,Introduction to Latin American Studies,Fall,2006,"Mexico, Venezuela, Brazil, Chile, Latin America, Spanish, conquest, authoritarianism, democracy, dictators, argentina, united states foreign policy, urbanization, poverty, Big Mama's Funeral, development, Pinochet, Allende, civilian-military relations, police reform, corruption, The House of Spirits, The Battle of Chile, chinchillas",https://ocw.mit.edu/courses/political-science/17-55j-introduction-to-latin-american-studies-fall-2006 +17.S914,"Conversations You Can't Have on Campus: Race, Ethnicity, Gender and Identity ",Spring,2012,Political science; affirmative action; religion; sexuality; evolution; creationism; prostitution; beauty; meaning of life; health care; euthanasia; gender; race;,https://ocw.mit.edu/courses/political-science/17-s914-conversations-you-cant-have-on-campus-race-ethnicity-gender-and-identity-spring-2012 +17.S916,All the President’s Generals: Civil-Military Relations in the US and Beyond,IAP,2020,"military +presidents +government +military coup +racial integration +civil-military relations +politics +society +democracy +foreign policy +military rule",https://ocw.mit.edu/courses/political-science/17-s916-all-the-presidents-generals-civil-military-relations-in-the-us-and-beyond-january-iap-2020 +17.S950,Social Science and the Iraq and Syrian Wars,Fall,2016,"Iraq, Syria, war, political science, international relations, international conflict, political theory, political data, civil war, security, counterinsurgency, intervention, state-building, organization of violence, conflict",https://ocw.mit.edu/courses/political-science/17-s950-social-science-and-the-iraq-and-syrian-wars-fall-2016 +17.S950,Emotions and Politics,Fall,2018,"emotions +human nature +politics +reason +cognition +social norms +culture +anger +fear +disgust +happiness +sadness +contempt +resentment +indignation +envy +spite +violence +social movements +voting +international politics",https://ocw.mit.edu/courses/political-science/17-s950-emotions-and-politics-fall-2018 +17.THT,Thesis Research Design Seminar ,Fall,2004,Political science; seminar; senior thesis; research topics; scholarship; research questions; methodology; analysis; prospectus.,https://ocw.mit.edu/courses/political-science/17-tht-thesis-research-design-seminar-fall-2004 +18.013A,Calculus with Applications,Spring,2005,,https://ocw.mit.edu/courses/mathematics/18-013a-calculus-with-applications-spring-2005 +18.01SC,Single Variable Calculus,Fall,2010,differentiation and integration of functions of one variable; limits; continuity; differentiation rules; extremum problems;definite and indefinite integration; fundamental theorem of calculus; elementary; techniques of integration; approximation of definite integrals; improper integrals; l'Hôpital's rule,https://ocw.mit.edu/courses/mathematics/18-01sc-single-variable-calculus-fall-2010 +18.02SC,Multivariable Calculus,Fall,2010,calculus; calculus of several variables; vector algebra; determinants; matrix; matrices; vector-valued function; space motion; scalar function; partial differentiation; gradient; optimization techniques; double integrals; line integrals; exact differential; conservative fields; Green's theorem; triple integrals; surface integrals; divergence theorem Stokes' theorem; applications; ,https://ocw.mit.edu/courses/mathematics/18-02sc-multivariable-calculus-fall-2010 +18.03SC,Differential Equations,Fall,2011,Ordinary Differential Equations; ODE; modeling physical systems; first-order ODE's ; Linear ODE's; second order ODE's; second order ODE's with constant coefficients; Undetermined coefficients ; variation of parameters; Sinusoidal signals; exponential signals; oscillations; damping; resonance; Complex numbers and exponentials; Fourier series; periodic solutions; Delta functions; convolution; Laplace transform methods; Matrix systems; first order linear systems; eigenvalues and eigenvectors; Non-linear autonomous systems; critical point analysis ; phase plane diagrams.,https://ocw.mit.edu/courses/mathematics/18-03sc-differential-equations-fall-2011 +18.06CI,Linear Algebra - Communications Intensive,Spring,2004,"Linear Alegebra, Latex, LaTeX2e,",https://ocw.mit.edu/courses/mathematics/18-06ci-linear-algebra-communications-intensive-spring-2004 +18.06SC,Linear Algebra,Fall,2011,matrix theory; linear algebra; systems of equations; vector spaces; determinants; eigenvalues; similarity; positive definite matrices; least-squares approximations; stability of differential equations; networks; Fourier transforms; Markov processes,https://ocw.mit.edu/courses/mathematics/18-06sc-linear-algebra-fall-2011 +18.06SC,Linear Algebra (OLL version),Fall,2011,,https://ocw.mit.edu/courses/mathematics/NotAvailable +18.100A,Introduction to Analysis,Fall,2012,mathematical analysis; estimations; limit of a sequence; limit theorems; subsequences; cluster points; infinite series; power series; local and global properties; continuity; intermediate-value theorem; convexity; integrability; Riemann integral; calculus; convergence; Gamma function; Stirling; quantifiers and negation; Leibniz; Fubini; improper integrals; Lebesgue integral; mathematical proofs; differentiation; integration,https://ocw.mit.edu/courses/mathematics/18-100a-introduction-to-analysis-fall-2012 +18.100A,Real Analysis,Fall,2020,"real analysis +calculus +mathematical analysis +convergence of sequences and series +continuity +differentiability +Riemann integral +sequences and series of functions +uniformity +interchange of limit operations", +18.100B,Analysis I,Fall,2010,mathematical analysis; convergence of sequences; convergence of series; continuity; differentiability; Riemann integral; sequences and series of functions; uniformity; interchange of limit operations; utility of abstract concepts; construction of proofs; point-set topology; n-space,https://ocw.mit.edu/courses/mathematics/18-100b-analysis-i-fall-2010 +18.100C,Real Analysis,Fall,2012,mathematical analysis; Archimedean principle; decimal expansion; Cauchy-Schwarz; metric spaces; open subsets; Euclidean space; convergent sequences; subsequential limits; inverse functions; Stone-Weierstrass theorem; theory of integration; Riemann-Stjeltjes integral; Fourier series,https://ocw.mit.edu/courses/mathematics/18-100c-real-analysis-fall-2012 +18.335J,Introduction to Numerical Methods ,Spring,2019,numerical linear algebra; linear systems; eigenvalue decomposition; QR/SVD factorization; numerical algorithms; IEEE floating point standard; sparse matrices; structured matrices; preconditioning; linear algebra software; Matlab,https://ocw.mit.edu/courses/mathematics/18-335j-introduction-to-numerical-methods-spring-2019 +18.337J,Parallel Computing,Fall,2011,dense linear algebra;sparse linear algebra; N-body problems; multigrid; fast-multipole; wavelets; Fourier transforms; partitioning; mesh generation; applications oriented architecture; parallel programming paradigms; MPI; data parallel systems; Star-P; parallel Python;parallel Matlab; graphics processors;virtualization; caches; vector processors; VHLLs; Very High Level Languages; Julia programming language; distributed parallel execution,https://ocw.mit.edu/courses/mathematics/18-337j-parallel-computing-fall-2011 +18.338J,Infinite Random Matrix Theory,Fall,2004,"Infinite Random Matrices; The Hermite Ensemble; Wigner's Semi-Circle Law; The Laguerre Ensemble; Marcenko-Pastur Theorem; The Jacobi Ensemble; McKay's Random Graph Theorem; The “Semi-Circular” Element; Central Limit Theorem; Free Cumulants in Free Probability; Non-Crossing Partitions ; Free Cumulants; The Semi-Circular and “Free Poisson” distributions;Additive Free Convolution; The R-Transform and the Marcenko-Pastur Theorem; Multiplicative Free Convolution; The S-Transform +; Orthogonal Polynomials and the Classical Matrix Ensembles; Tracy Widom Distribution; Eigenvalue Spectrum Fluctuations; Free Probability and Fluctuations; Zonal Polynomials and Random Matrices; Symmetric Group Representations and Free Probability",https://ocw.mit.edu/courses/mathematics/18-338j-infinite-random-matrix-theory-fall-2004 +18.353J,Nonlinear Dynamics I: Chaos,Fall,2012,"nonlinear dynamics, chaos, dissipative systems, free oscillators, forced oscillators, nonlinear phenomena, bifurcation theory",https://ocw.mit.edu/courses/mathematics/18-353j-nonlinear-dynamics-i-chaos-fall-2012 +18.354J,Nonlinear Dynamics II: Continuum Systems,Spring,2015,continuum systems; mathematical modeling; diffusion equation; equations of motion; nonlinear partial differential equations; calculus of variations; Brachistochrone curve; soap films; hydrodynamics; Navier-Stokes; solitons; surface tension; waves; conformal maps; airfoils,https://ocw.mit.edu/courses/mathematics/18-354j-nonlinear-dynamics-ii-continuum-systems-spring-2015 +18.385J,Nonlinear Dynamics and Chaos,Fall,2004,"Phase plane, limit cycles, Poincare-Bendixson theory. Time-dependent systems, Floquet theory, Poincare maps, averaging. Stability of equilibria, near-equilibrium dynamics. Center manifolds, elementary bifurcations, normal forms. chaos.",https://ocw.mit.edu/courses/mathematics/18-385j-nonlinear-dynamics-and-chaos-fall-2004 +18.385J,Nonlinear Dynamics and Chaos,Fall,2014,"chaos, Floquet theory, Poincare-Bendixson theory,phase plane, limit cycles, time-dependent systems, Poincare maps, stability of equilibria, near-equilibrium dynamics, center manifolds, elementary bifurcations, normal forms. ",https://ocw.mit.edu/courses/mathematics/18-385j-nonlinear-dynamics-and-chaos-fall-2014 +18.404J,Theory of Computation,Fall,2020,"computability +computational complexity theory +regular and context-free languages +decidable and undecidable problems +reducibility +recursive function theory +time and space measures on computation +hierarchy theorems +inherently complex problems +probabilistic computation +interactive proof systems",https://ocw.mit.edu/courses/mathematics/18-404j-theory-of-computation-fall-2020 +18.405J,Advanced Complexity Theory,Spring,2016,"Polynomial hierarchy; time-space lower bounds; approximate counting; Toda’s Theorem; Relativization; Baker-Gill-Solovay; switching lemma; Razborov-Smolensky; NEXP vs. ACC0; Communication complexity; PCP theorem; PCP theorem; Hadamard code; Gap amplification; Natural proofs +",https://ocw.mit.edu/courses/mathematics/18-405j-advanced-complexity-theory-spring-2016 +18.435J,Quantum Computation,Fall,2003,"quantum computation,physics of information processing,quantum logic,quantum algorithms including Shor's factoring algorithm and Grover's search algorithm,quantum error correction,quantum communication,cryptography",https://ocw.mit.edu/courses/mathematics/18-435j-quantum-computation-fall-2003 +18.996A,Simplicity Theory,Spring,2004,,https://ocw.mit.edu/courses/mathematics/18-996a-simplicity-theory-spring-2004 +18.A34,Mathematical Problem Solving (Putnam Seminar),Fall,2018,"hidden independence +probability +congruences and divisibility +recurrences +limits +greatest integer function +inequalities +roots of polynomials +Pigeonhole Principle",https://ocw.mit.edu/courses/mathematics/18-a34-mathematical-problem-solving-putnam-seminar-fall-2018 +18.S096,Topics in Mathematics with Applications in Finance,Fall,2013,Financial terms; Value at Risk Models; Volatility Modeling; Regularized pricing; Risk Models; Risk analysis; commodity models; portfolio theory; Ito calculus; Black-Scholes formula; risk neutral valuation; option pricing; Quanto credit hedging; Ross recovery theorem; counterparty credit risk,https://ocw.mit.edu/courses/mathematics/18-s096-topics-in-mathematics-with-applications-in-finance-fall-2013 +18.S096,Topics in Mathematics of Data Science,Fall,2015,"Principal Component Analysis (PCA), random matrix theory, spike model, manifold learning, Diffusion Maps, Sobolev Embedding Theorem, Spectral Clustering, Cheeger’s inequality, Mesh Theorem, Number Theory, Approximation algorithms, Max-Cut problem, Stochastic Block Model, Synchronization, inverse problems",https://ocw.mit.edu/courses/mathematics/18-s096-topics-in-mathematics-of-data-science-fall-2015 +18.S096,Matrix Calculus for Machine Learning and Beyond,IAP,2023,"matrix calculus +machine learning +linear algebra +linear operator +linear approximation +vector space +Kronecker products +vectorization +matrix factorization +Hessian matrices +quadratic approximation +quasi-Newton method", +18.S097,Applied Category Theory ,IAP,2019,"order +adjunction +set +Galois connection +monoidal preorder +wiring diagram +V-categories +Bool-categories +categories +functors +limits +colimits +monoidal categories +hypergraph categories +sheaves +toposes",https://ocw.mit.edu/courses/mathematics/18-s097-applied-category-theory-january-iap-2019 +18.S190,"Introduction to Computational Thinking with Julia, with Applications to Modelling the COVID-19 Pandemic",Spring,2020,"computational modeling +mathematical modeling +Covid-19 +computational science +artificial intelligence +Julia programming +data science +language +statistical modeling +epidemiology +machine learning +drug development +disease models",https://ocw.mit.edu/courses/mathematics/18-s190-introduction-to-computational-thinking-with-julia-with-applications-to-modeling-the-covid-19-pandemic-spring-2020 +18.S190,Introduction to Metric Spaces,IAP,2023,"Metric Spaces +open sets +closed sets +finite sets +compact sets +convergence +Cauchy sequences +continuity +norms +topological compactness +sequential compactness +Banach fixed point theorem +Arzela-Ascoli theorem", +18.S191,Introduction to Computational Thinking,Fall,2020,"computational modeling +mathematical modeling +computational science +artificial intelligence +Julia programming +data science +algorithms +statistical modeling +image analysis +oarticle dynamics +ray tracing +epidemic propagation +climate modeling",https://ocw.mit.edu/courses/mathematics/18-s191-introduction-to-computational-thinking-fall-2020 +18.S191,Introduction to Computational Thinking,Fall,2022,"computational modeling +mathematical modeling +computational science +artificial intelligence +Julia programming +data science +algorithms +statistical modeling +image analysis +oarticle dynamics +ray tracing +epidemic propagation +climate modeling", +18.S66,The Art of Counting,Spring,2003,"enumerative combinatorics, finite set, sum of positive integers, bijective proofs, bijection (one-to-one correspondence), permutations, partitions, Catalan numbers,Young tableaux, lattice paths and tilings,",https://ocw.mit.edu/courses/mathematics/18-s66-the-art-of-counting-spring-2003 +18.S996,Category Theory for Scientists,Spring,2013,Sets; functions; commutative diagrams; products; coproducts; finite limits; monoids; groups; graphs; orders; schemas; instances; databases; categories; functors; mathematics; natural transformations; limits; colimits; adjoint functors; monads; operads; isomorphism; molecular dynamics; olog,https://ocw.mit.edu/courses/mathematics/18-s996-category-theory-for-scientists-spring-2013 +18.S997,Introduction to MATLAB Programming,Fall,2011,"MATLAB, programming; variables; plotting; scripts; functions; flow control; statistics; data structures; images; vectors; matrices; root-finding; Newton's Method; Secant Method; Basins of Attraction; Conway Game of Life; Game of Life; vectorization; debugging; scope; function block;",https://ocw.mit.edu/courses/mathematics/18-s997-introduction-to-matlab-programming-fall-2011 +18.S997,High-dimensional Statistics ,Spring,2015,"High Dimensional Statistics, Random Variables, Linear Regression, Misspecified Linear Models, Matrix Estimation, Minmax Lower Bounds, Sub-Gaussian",https://ocw.mit.edu/courses/mathematics/18-s997-high-dimensional-statistics-spring-2015 +18.S997,The Polynomial Method,Fall,2012,"polynomial method, combinatorics, Kakeya Problem, Incidence Geometry, Algebraic Structure, Cell Decompositions, Ruled Surfaces, Projection Theory, ",https://ocw.mit.edu/courses/mathematics/18-s997-the-polynomial-method-fall-2012 +2.003J,Dynamics and Control I,Spring,2007,"dynamics and vibrations of lumped-parameter models; mechanical systems; Kinematics; Force-momentum formulation; systems of particles; rigid bodies in planar motion; Work-energy concepts; Virtual displacements; virtual work; Lagrange's equations; Linearization of equations of motion; Linear stability analysis; Free vibration; forced vibration; linear multi-degree of freedom models; matrix eigenvalue problems; numerical methods;MATLAB +",https://ocw.mit.edu/courses/mechanical-engineering/2-003j-dynamics-and-control-i-spring-2007 +2.003J,Dynamics and Vibration (13.013J),Fall,2002,"lumped-parameter models, mechanical systems, Three-dimensional particle kinematics, Force-momentum formulation , Newton-Euler equations, Work-enery (variational) formulation, systems particles, rigid bodies (indirect method), Virtual displacements, Lagrange's equations, Linear stability analysis",https://ocw.mit.edu/courses/mechanical-engineering/13-013JDynamics-and-VibrationFall2002 +2.003J,Dynamics and Control I,Fall,2007,dynamics and vibrations of lumped-parameter models; mechanical systems; Kinematics; Kane's method; Force-momentum formulation; systems of particles; rigid bodies in planar motion; Work-energy concepts; Virtual displacements; virtual work; Lagrange's equations; Linearization of equations of motion; Linear stability analysis; Free vibration; forced vibration; linear multi-degree of freedom models; matrix eigenvalue problems; numerical methods;MATLAB,https://ocw.mit.edu/courses/mechanical-engineering/2-003j-dynamics-and-control-i-fall-2007 +2.003SC,Engineering Dynamics,Fall,2011,dynamics and vibrations; lumped-parameter models; kinematics; momentum; systems of particles and rigid bodies; work-energy concepts; virtual displacements and virtual work; Lagrange's equations;equations of motion; linear stability analysis; free and forced vibration; linear multi-degree of freedom models; matrix eigenvalue problems,https://ocw.mit.edu/courses/mechanical-engineering/2-003sc-engineering-dynamics-fall-2011 +2.00AJ,"Exploring Sea, Space, & Earth: Fundamentals of Engineering Design",Spring,2009,"ROV, engineering design, aerospace, astronautics, ",https://ocw.mit.edu/courses/mechanical-engineering/2-00aj-exploring-sea-space-earth-fundamentals-of-engineering-design-spring-2009 +2.00B,Toy Product Design,Spring,2008,product design; children; entertainment; prototype;toy; toy design; dental hygeine; play; teach science; teach engineering; graphic design; sketch model; prototyping; play; innovation; automato; ,https://ocw.mit.edu/courses/mechanical-engineering/2-00b-toy-product-design-spring-2008 +2.00b,Toy Product Design,Spring,2021,"toy +toy design +product design +graphic design +system design +sketch model +prototype +innovation +automato +teach science +teach engineering +dental hygiene",https://ocw.mit.edu/courses/mechanical-engineering/2-00b-toy-product-design-spring-2021/ +2.017J,Design of Electromechanical Robotic Systems,Fall,2009,"optimization; random environment; linear time invariant systems; navigation systems, engineering ethics, spectra; probability of failure; frequency response, Fourier transform, convolution, extreme events, feedback control, statistics, machine elements",https://ocw.mit.edu/courses/mechanical-engineering/2-017j-design-of-electromechanical-robotic-systems-fall-2009 +2.034J,Nonlinear Dynamics and Waves,Spring,2007,nonlinear oscillations; wave phenomena; flow-structure interaction problems; nonlinear free and forced vibrations; nonlinear resonances; self-excited oscillations; lock-in phenomena; nonlinear dispersive and nondispersive waves; resonant wave interactions; propagation of wave pulses; nonlinear Schrodinger equation; nonlinear long waves and breaking; theory of characteristics; the Korteweg-de Vries equation; solitons and solitary wave interactions; stability of shear flows,https://ocw.mit.edu/courses/mechanical-engineering/2-034j-nonlinear-dynamics-and-waves-spring-2007 +2.04A,Systems and Controls,Spring,2013,"systems, controls, ordinary differential equations, ODEs, differential equations, Laplace, transfer function, flywheel, circuits, impedance, feedback, root locus, linear systems, Laplace transforms, stability, frequency-domain, skyscaper +",https://ocw.mit.edu/courses/mechanical-engineering/2-04a-systems-and-controls-spring-2013 +2.062j,Wave Propagation,Spring,2017,"wave propagation, elasticity, acoustics, geophysics, hydrodynamics, blood flow, progressive waves, group velocity, energy density, energy transport, reflection, refraction, elastic wave, Rayleigh waves.",https://ocw.mit.edu/courses/mechanical-engineering/2-062j-wave-propagation-fall-2006 +2.080J,Structural Mechanics,Fall,2013,"vector, tensor, static equilibrium, strain, stress, Mohr's circle, elastic, virtual work, minimum total potential energy, beam deflections, energy method, shear stress, beam, shaft, experimental mechanics, stability, Rayleigh-Ritz quotient, column, buckling, load, plate, yield, plasticity, cylinder, fracture, implosion, submarine, Columbia Space Shuttle, BP, Deepwater Horizon, crashworthiness",https://ocw.mit.edu/courses/mechanical-engineering/2-080j-structural-mechanics-fall-2013 +2.081J,Plates and Shells,Spring,2007,plates; shells; engineering strain; strain measure; bending moment; structural plasticity; membrane energy; green-lagrangian strain; bending theory of plates; buckling theory of plates; raleigh-ritz quotient; local buckling; plastic buckling; cylindrical shells; axial load; lateral pressure; hydrostatic pressure; torsion; bending boundary conditions; strain-displacement,https://ocw.mit.edu/courses/mechanical-engineering/2-081j-plates-and-shells-spring-2007 +2.158J,Computational Geometry,Spring,2003,"surface modeling, b-splines, deformable surfaces, generalized cylinders, offsets, filleting surfaces, Non-linear solvers and intersection problems, Solid modeling, boundary representation, non-manifold and mixed-dimension boundary representation models, octrees, Interval methods, discretization methods, Scientific visualization, Variational geometry, Tolerances, Inspection methods, Shape interrogation",https://ocw.mit.edu/courses/mechanical-engineering/2-158j-computational-geometry-spring-2003 +2.341J,Macromolecular Hydrodynamics ,Spring,2016,"non Newtonian Fluid, Rheology, extensional viscosity, polymeric liquids, linear viscoelasticity, entangled melts, Rouse/Zimm Theories, ordered fluid expansions, differential constitutive models, gels, gel rheology, suspension rheology",https://ocw.mit.edu/courses/mechanical-engineering/2-341j-macromolecular-hydrodynamics-spring-2016 +2.58J,Radiative Transfer,Spring,2006,thermal radiation; heat transfer; photon transfer ;quantum modeling; materials; electromagnetic; thermal radiation; absorption; emitting media; scattering; laser; imaging;infrared; global warming; semiconductor manufacturing; combustion;furnace; high temperature processing;Drude; Lorenz; gas; dielectric; Monte Carlo; simulation; solar energy; solar power; solar cell,https://ocw.mit.edu/courses/mechanical-engineering/2-58j-radiative-transfer-spring-2006 +2.60J,Fundamentals of Advanced Energy Conversion,Spring,2020,"chemistry +thermodynamics +transport processes +energy systems +energy conversion +power and transportation systems +efficiency +environmental impact +fossil fuels +fuel reforming +hydrogen resources +nuclear resources +renewable resources +fuel cells and batteries +combustion +hybrids +catalysis +supercritical and combined cycles +photovoltaics +energy storage and transmission +Optimal source utilization +fuel-life cycle analysis",https://ocw.mit.edu/courses/mechanical-engineering/2-60j-fundamentals-of-advanced-energy-conversion-spring-2020 +2.717J,Optical Engineering,Spring,2002,"optical methods in engineering and system design; diffraction, statistical optics, holography, and imaging; Statistical Optics, Inverse Problems (i.e. theory of imaging); applications in precision engineering and metrology, bio-imaging, and computing (sensors, data storage, communication in multi-processor systems).",https://ocw.mit.edu/courses/mechanical-engineering/2-717j-optical-engineering-spring-2002 +2.782J,Design of Medical Devices and Implants,Spring,2006,"clinical problems, implants, medical devices, cell-matrix control volumes, stress analysis, anatomic fit, biomaterials, surgical implantation procedures, Preclinical testing, risk/benefit ratio assessment, clinical performance, clinical trials, orthopedic devices, soft tissue implants, artificial organs, dental implants; stent; prosthesis; scaffold; bio-implant; scar; genetics; skin; nerve; bone; tooth; joint; FDA; FDA approval; cartilage; ACL; health; regulation; healthcare; medicine; bioengineering;",https://ocw.mit.edu/courses/mechanical-engineering/2-782j-design-of-medical-devices-and-implants-spring-2006 +2.785J,Cell-Matrix Mechanics,Fall,2014,"cell +matrix +mechanics +tissue +organ +development +injury +stress field +cell function +deformed cells +biosynthetic activity +unit cell +connective tissue +cell biology +physiology +medicine +cytoplasm +extracellular matrix +skeleton +bone +",https://ocw.mit.edu/courses/mechanical-engineering/2-785j-cell-matrix-mechanics-fall-2014 +2.830J,Control of Manufacturing Processes (SMA 6303),Spring,2008,"Process control, manufacturing process, discrete system feedback control theory, empirical and adaptive modeling, off-line optimization, statistical process control, real-time control, one-factor-at-a-time, robustness, Shewhart Hypothesis, semiconductor manufacturing",https://ocw.mit.edu/courses/mechanical-engineering/2-830j-control-of-manufacturing-processes-sma-6303-spring-2008 +2.993J,Introduction to Numeric Analysis for Engineering (13.002J),Spring,2005,"digital computing, algorithm accuracy, error propagation, linear equations, iterative techniques, roots of equations, systems of equations, numerical interpolation, differentiation, integration, finite-difference solutions, differential equations, convergence analysis",https://ocw.mit.edu/courses/mechanical-engineering/2-993j-introduction-to-numerical-analysis-for-engineering-13-002j-spring-2005 +2.A35,Biomimetic Principles and Design,Fall,2013,"biomimetics, biomimicry, biomimesis, nature, reverse engineering, bionics, adaptation, genetic algorithms, politics, design, imitate, fluid mechanics, fish, swim, submarine, complexity",https://ocw.mit.edu/courses/mechanical-engineering/2-a35-biomimetic-principles-and-design-fall-2013 +2.S998,"Marine Autonomy, Sensing and Communications",Spring,2012,"autonomous marine vehicles; ocean environments; underwater vehicles; acoustic communication; undersea navigation; environmental sensing; acoustical, biological, and chemical sensing; modeling and control; simulation environments; programming; C++; MOOS",https://ocw.mit.edu/courses/mechanical-engineering/2-s998-marine-autonomy-sensing-and-communications-spring-2012 +2.ThA,Undergraduate Thesis for Course 2-A,IAP,2007,"thesis, writing, mechanical engineering, technical writing, scientific writing, thesis proposal",https://ocw.mit.edu/courses/mechanical-engineering/2-tha-undergraduate-thesis-for-course-2-a-january-iap-2007 +20.010J,Introduction to Bioengineering (BE.010),Spring,2006,"biological engineering, bioengineering, biomems,biomaterials, biomechanical engineering, biology, engineering, bioprocessing, biological materials, biological engineers",https://ocw.mit.edu/courses/biological-engineering/20-010j-introduction-to-bioengineering-be-010j-spring-2006 +20.011J,Statistical Thermodynamics of Biomolecular Systems (BE.011J),Spring,2004,physical chemistry of biological systems; macroscopic thermodynamic properties; microscopic molecular properties; statistical mechanics; chemical potentials; equilibrium states; binding cooperativity; behavior of macromolecules in solution and at interfaces; solvation; protein structure; genomic analysis; single molecule biomechanics; biomaterials,https://ocw.mit.edu/courses/biological-engineering/20-011j-statistical-thermodynamics-of-biomolecular-systems-be-011j-spring-2004 +20.104J,Chemicals in the Environment: Toxicology and Public Health (BE.104J),Spring,2005,biostatistics; risk; risk analysis; risk factor; environmental agent; environetics; cause and effect; pollution; statistical analysis; toxic; pollution; genetics; disease; health; EPA; metabolism; endocrine; immunity; uncertainty; mortality; death rate; prediction;,https://ocw.mit.edu/courses/biological-engineering/20-104j-chemicals-in-the-environment-toxicology-and-public-health-be-104j-spring-2005 +20.106J,Systems Microbiology,Fall,2006,"microbes, microbiology, systems perspective, early earth, microbial evolution, prokaryote, eukaryote, archaea, bacteria, immunology, epidemiology",https://ocw.mit.edu/courses/biological-engineering/20-106j-systems-microbiology-fall-2006 +20.110J,Thermodynamics of Biomolecular Systems ,Fall,2005,"thermodynamics, biomolecular systems, equilibrium properties, first law of thermodynamics, second law of thermodynamics, third law of thermodynamics, thermochemistry, entropy, Gibbs function, chemical equilibrium, macromolecular structure, binding cooperativity",https://ocw.mit.edu/courses/biological-engineering/20-110j-thermodynamics-of-biomolecular-systems-fall-2005 +20.310J,"Molecular, Cellular, and Tissue Biomechanics",Spring,2015,"biomechanics, molecular mechanics, cell mechanics, Brownian motion, Reynolds numbers, mechanochemistry, Kramers' model, Bell model, viscoelasticity, poroelasticity, optical tweezers, extracellular matrix, collagen, proteoglycan, cell membrane, cell motility, mechanotransduction, cancer, biological systems, molecular biology, cell biology, cytoskeleton, cell, biophysics, cell migration, biomembrane, tissue mechanics, rheology, polymer, length scale, muscle mechanics, experimental methods",https://ocw.mit.edu/courses/biological-engineering/20-310j-molecular-cellular-and-tissue-biomechanics-spring-2015 +20.330J,"Fields, Forces and Flows in Biological Systems",Spring,2007,hydrodynamic flow; electroosmosis; diffusion; electrophoresis; reaction; membrane; cell; biomolecule; microfluidics; ion transport; electrokinetics; Debye layer; Zeta potential; inviscid flow; viscous flow; tissue; organ; biology; molecular biology; Maxwell's equations; electro-quasistatics; Van der Waals; bioMEMS;,https://ocw.mit.edu/courses/biological-engineering/20-330j-fields-forces-and-flows-in-biological-systems-spring-2007 +20.380J,Biological Engineering Design,Spring,2010,inflammation; biomedical engineering; cancer; diabetes; obesity; cardiovascular disease; biomedical entrepreneurship; biomedical startup;,https://ocw.mit.edu/courses/biological-engineering/20-380j-biological-engineering-design-spring-2010 +20.400J,Perspectives in Biological Engineering,Spring,2006,"integration of biological information and methodologies, engineering analysis, synthesis, design, molecular mechanisms underlying cellular processes, signal transduction, gene expression networks, functional responses",https://ocw.mit.edu/courses/biological-engineering/20-400j-perspectives-in-biological-engineering-spring-2006 +20.410J,"Molecular, Cellular and Tissue Biomechanics (BE.410J)",Spring,2003,"Scaling laws; continuum mechanics; biomechanical phenomena; length scales; tissue structure; molecular basis for macroscopic properties; chemical and electrical effects on mechanical behavior; cell mechanics, motility and adhesion; biomembranes; biomolecular mechanics and molecular motors; Experimental methods.",https://ocw.mit.edu/courses/biological-engineering/20-410j-molecular-cellular-and-tissue-biomechanics-be-410j-spring-2003 +20.416J,Topics in Biophysics and Physical Biology,Fall,2014,"computational biology +science +research +genome +chromatin +fellowship +proposal +grad school +graduate school +nano +writing +journal +article +abstract +peer review +critique +manuscript +talk +presentation +ethics +cv +curriculum vitae +",https://ocw.mit.edu/courses/biological-engineering/20-416j-topics-in-biophysics-and-physical-biology-fall-2014 +20.420J,Biomolecular Kinetics and Cellular Dynamics (BE.420J),Fall,2004,"receptor, ligand, signaling, enzyme, binding, hybridization, cell, dynamics, metabolism, regulation, kinetics",https://ocw.mit.edu/courses/biological-engineering/20-420j-biomolecular-kinetics-and-cellular-dynamics-be-420j-fall-2004 +20.430J,"Fields, Forces, and Flows in Biological Systems",Fall,2015,"diffusion +molecular diffusion +diffusion-reaction +conduction +convection +biological systems +fields +electrical double layers +Maxwell stress tensor +physiological systems +fluid +solid +equations of motion +case study +electrode interfaces +transduction +random walk +Stokes-Einstein +Fick's laws +reaction +Damköhler number +",https://ocw.mit.edu/courses/biological-engineering/20-430j-fields-forces-and-flows-in-biological-systems-fall-2015 +20.441J,Biomaterials-Tissue Interactions,Fall,2009,medical implants; tissue engineering; unit cell process; wound healing; joint replacement; extracellular matrix; biocompatibility;,https://ocw.mit.edu/courses/biological-engineering/20-441j-biomaterials-tissue-interactions-fall-2009 +20.453J,Biomedical Information Technology,Fall,2008,imaging; medical imaging; metadata; molecular biology; medical records; DICOM; RDF; OWL; SPARQL; SBML; CellML; semantic web; BioHaystack; database; schema; ExperiBase; genomics; proteomics; bioinformatics; computational biology; clinical decision support; clinical trial; microarray; gel electrophoresis; diagnosis; pathway modeling; XML; SQL; relational database; biological data; ontologies; drug development; drug discovery; drug target; pharmaceutical; gene sequencing,https://ocw.mit.edu/courses/biological-engineering/20-453j-biomedical-information-technology-fall-2008 +20.462J,Molecular Principles of Biomaterials,Spring,2006,"biomaterials, biomaterial engineering, biotechnology, cell-guiding surface, molecular biomaterials, drug release, polymers, pulsatile release, polymerization, polyer erosion, tissue engineering, hydrogels, adhesion, migration, drug diffusion, molecular switches, molecular motors, nanoparticles, microparticles, vaccines, drug targeting, micro carriers, nano carriers, intracellular drug delivery",https://ocw.mit.edu/courses/biological-engineering/20-462j-molecular-principles-of-biomaterials-spring-2006 +20.482J,Foundations of Algorithms and Computational Techniques in Systems Biology,Spring,2006,"systems biology, algorithms, computational techniques, protein modeling, discrete conformational search, molecular dynamics, electrostatics, network models, deconvolution, nonlinear dynamics",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/20-482j-foundations-of-algorithms-and-computational-techniques-in-systems-biology-spring-2006 +21A.00,Introduction to Anthropology,Spring,2013,anthropology; Social Science; humanities; culture; society; gender; ethnicity; race; language; politics; economics; art; identity; Capoeira; tradition; modernity; communication; identity; expressive culture; magic; ,https://ocw.mit.edu/courses/anthropology/21a-00-introduction-to-anthropology-spring-2013 +21A.00,"Introduction to Anthropology +",Spring,2022,"human origins +social evolution +human nature +ethnographic methods +politics and ritual +ritual and expressive culture +city as theater +uncertainty +precarity +futurity",https://ocw.mit.edu/courses/anthropology/21a-00-introduction-to-anthropology-spring-2022 +21A.01,How Culture Works,Fall,2019,"culture +family +things +creation +circulation +persons +agents +selves +possessions +ethnography +",https://ocw.mit.edu/courses/anthropology/21a-01-how-culture-works-fall-2019 +21A.104,"Memory, Culture, Forgetting",Spring,2016,"memory; culture; the past; memorials; symbols; rituals, internet; social media; social memory; biology; neuroscience; medicine; ethnography; Masada; slavery; war memorials; Lenin; tragic spirits; forgetting;",https://ocw.mit.edu/courses/anthropology/21a-104-memory-culture-forgetting-spring-2016 +21A.110,Anthropological Theory,Spring,2003,"anthropology, anthropological theory, anthropological method, frameworks, analysis, integration, cultural anthropology, classic texts, contemporary critiques, analyses of texts",https://ocw.mit.edu/courses/anthropology/21a-110-anthropological-theory-spring-2003 +21A.111J,For Love and Money: Rethinking the Family,Spring,2016,"family, sex, gender, anthropology, household, sexuality, social institutions",https://ocw.mit.edu/courses/anthropology/21a-111j-for-love-and-money-rethinking-the-family-spring-2016 +21A.112,Seminar in Ethnography and Fieldwork,Spring,2008,fieldwork; anthropology; ethnography; culture; theory; data analysis; research design; interviewing; method; student work; military anthropology; controversies; ,https://ocw.mit.edu/courses/anthropology/21a-112-seminar-in-ethnography-and-fieldwork-spring-2008 +21A.120,American Dream: Using Storytelling to Explore Social Class in the United States,Spring,2018,"American Dream; +social class; +mobility; +immigration; +storytelling; +oral history; +memoir; +auto-ethnographies; +race; +ethnicity; +gender; +Studs Terkel; +Zora Neale Hurston; +Exit Zero; +Didier Eribon; +Alessandro Portelli; +William Sewell; +Chole Island; +Southeast Chicago Historical Museum; + +",https://ocw.mit.edu/courses/anthropology/21a-120-american-dream-using-storytelling-to-explore-social-class-in-the-united-states-spring-2018 +21A.150,Teaching and Learning: Cross-Cultural Perspectives,Fall,2014,"teaching, learning, culture, cross-cultural perspectives, subcultures, schooling, initiation, apprenticeship, education, online education, MOOCs, interviewing, observation, ethnography, discourse analysis, socialization, social learning, ritual, rites of passage, imitation, improvisation, creativity, language, personhood, identity, cognition, perception",https://ocw.mit.edu/courses/anthropology/21a-150-teaching-and-learning-cross-cultural-perspectives-fall-2014 +21A.155,"Food, Culture, and Politics",Fall,2019,"food +culture +politics +waste +taste +good food +food preparation +food consumption +economy +Thanksgiving +agriculture +hunger +nutrition +medicine +gastropolitics",https://ocw.mit.edu/courses/anthropology/21a-155-food-culture-politics-fall-2019 +21A.157,The Meaning of Life,Spring,2019,"family +marriage +parenting +life +reciprocity +money +wealth +work +sex +self-cultivation +talent +beauty +mindfulness +belonging +citizenship +loss +crisis +faith +religion +community",https://ocw.mit.edu/courses/anthropology/21a-157-the-meaning-of-life-spring-2019 +21A.211,"Magic, Witchcraft, and the Spirit World",Fall,2003,,https://ocw.mit.edu/courses/anthropology/21a-211-magic-witchcraft-and-the-spirit-world-fall-2003 +21A.212,"Myth, Ritual, and Symbolism",Spring,2004,anthropology; myth; ritual; symbolism; animals; symbolic system; meaning; life cycle; metaphor; figurative language; human body; cosmology; ritual; magic; narrative; mythology; patterns,https://ocw.mit.edu/courses/anthropology/21a-212-myth-ritual-and-symbolism-spring-2004 +21A.215,"Disease and Health: Culture, Society, and Ethics",Spring,2012,"history of medicine, sickness, healing, disease causation, beliefs, disease treatment, institutions of medicine",https://ocw.mit.edu/courses/anthropology/21a-215-disease-and-health-culture-society-and-ethics-spring-2012 +21A.217,Anthropology of War and Peace,Fall,2004,"anthropology, war, peace, f humans are by nature warlike, the evolution of war in cross-cultural perspective, the socialization of warriors and the construction of enemies, and the recent emergence of anti-war movements, sociobiological and other theories of war, ethnic hatred and civil war in Rwanda, Bosnia, and Northern Ireland; military culture in the U.S. and elsewhere; peace movements; and studies of military conversion",https://ocw.mit.edu/courses/anthropology/21a-217-anthropology-of-war-and-peace-fall-2004 +21A.218J,Identity and Difference,Spring,2010,class; social interaction; discourse; performance; bodies; conformity; deviance; gender; biology; culture; race; constructivism; essentialism; structuralism; incarceration; religion; food; group membership; sexuality; ethnicity; institution; identity formation; stigma; ,https://ocw.mit.edu/courses/anthropology/21a-218j-identity-and-difference-spring-2010 +21A.219,Law and Society,Spring,2003,"legal reasoning, legal systems, social class, social change, practice of law, legal education, law and science",https://ocw.mit.edu/courses/anthropology/21a-219-law-and-society-spring-2003 +21A.226,Ethnic and National Identity,Fall,2011,"ethnicity, culture, race, oppression, social structures, transnationalism, globalization, ethnic conflict",https://ocw.mit.edu/courses/anthropology/21a-226-ethnic-and-national-identity-fall-2011 +21A.231J,"Gender, Sexuality, and Society",Spring,2006,"gender, sexuality, marriage, nationalism, race, class, sex, globalization, professionalization, agency, appetite, identity, transvestite, transgender, intersexuality, motherhood, fetus, sexism",https://ocw.mit.edu/courses/anthropology/21a-231j-gender-sexuality-and-society-spring-2006 +21A.240,Race and Science,Spring,2004,race; eugenics; scientific racism; racial hygiene; racial economy; human biodiversity; apartheid; race and gender; monogenist; polygenist; alchemy of race; nazi medicine; nazi racism; sociology of science; race and culture; genetic engineering; raciology;,https://ocw.mit.edu/courses/anthropology/21a-240-race-and-science-spring-2004 +21A.245J,"Power: Interpersonal, Organizational and Global Dimensions",Fall,2005,Anthropology; power; interpersonal; organizational; global; dimensions; sociology classical; contemporary; social theory; dominant; subordinate; relationships; legitimate authority; resistance; control; decisions; family; work; democracies; will; people. ,https://ocw.mit.edu/courses/anthropology/21a-245j-power-interpersonal-organizational-and-global-dimensions-fall-2005 +21A.260,"Culture, Embodiment and the Senses",Fall,2005,Anthropology; culture; embodiment; senses; historical; cross-cultural analysis; politics; sensory experience; western philosophical debates;mind; brain; emotion; body; sight; reason; rationality; smell; taste; touch; knowing; knowledge production; scientific interpretations; western philosophical; physiological models; individual physiological; psychological responses; social relations; power relations.,https://ocw.mit.edu/courses/anthropology/21a-260-culture-embodiment-and-the-senses-fall-2005 +21A.270,Anthropology Through Speculative Fiction,Fall,2009,"speculative fiction, vampires, cyborgs, utopias, dystopias, time travel, sexuality, gender, futurism, reproduction, extraterrestrials, race, religion, alienation, cultural studies",https://ocw.mit.edu/courses/anthropology/21a-270-anthropology-through-speculative-fiction-fall-2009 +21A.302J,Dilemmas in Bio-Medical Ethics: Playing God or Doing Good?,Fall,2013,bio-medical ethics; medical technologies; biotechnologies; halth; sexuality; morality; race; ethnicity; kinship; gender; abortion; contraception; reproductive technologies; pharmaceuticals; end of life care; healing practices; anthropology; medical experimentation; sterilization; Lynchburg; biological citizenship; clinical trials; ,https://ocw.mit.edu/courses/anthropology/21a-302j-dilemmas-in-bio-medical-ethics-playing-god-or-doing-good-fall-2013 +21A.303J,Anthropology of Biology,Fall,2013,"biology, anthropology of biology, biopolitics, bioethics, biodiversity, biotechnology",https://ocw.mit.edu/courses/anthropology/21a-303j-anthropology-of-biology-fall-2013 +21A.303J,The Anthropology of Biology,Spring,2022,"life +evolutionary narratives +epidemiological dramaturgy +race +racism +biopolitics +reproduction +biology +health disparities +organisms +alien ocean", +21A.336,"Marketing, Microchips and McDonalds: Debating Globalization",Spring,2004,anthropology; marketing; globalization; culture; class; economic status; social dynamics; technology; capitalism; java; amazon; france; united states; bombay; india; japan; immigration; film; workers; tourism; factory labor,https://ocw.mit.edu/courses/anthropology/21a-336-marketing-microchips-and-mcdonalds-debating-globalization-spring-2004 +21A.338J,"Gender, Power, and International Development",Fall,2003,anthropology; gender; power; international development; inequlaity; poverty; economics; political policy; women's studies; government; africa; latin america; asia; melanesia; social policy; urban; rural,https://ocw.mit.edu/courses/anthropology/21a-338j-gender-power-and-international-development-fall-2003 +21A.342,Environmental Struggles,Fall,2004,Anthropology; environment; struggle; humans; conflict; access; use; nature; world; readings; films; land rights; hunting; fishing; regulations; knowledge; scientific; popular; hazardous waste; social; economic; political; cultural; European thought; ethnographic; historical; East Africa; South Asia; Eastern Europe; Latin America; North America.,https://ocw.mit.edu/courses/anthropology/21a-342-environmental-struggles-fall-2004 +21A.348,Photography and Truth,Spring,2008,Photography; anthropology; culture; subject and treatment of image; art; ethnographic documentation; ethnography; documentary; taking pictures; ,https://ocw.mit.edu/courses/anthropology/21a-348-photography-and-truth-spring-2008 +21A.350J,Cultures of Computing,Fall,2011,"women in computing, computers, computer history, robotics, artificial intelligence, history of technology",https://ocw.mit.edu/courses/anthropology/21a-350j-cultures-of-computing-fall-2011 +21A.360J,The Anthropology of Sound,Spring,2008,sound art; Jacques Attali; music; musicology; post-modern; recording; ethnomusicology; ethnography; soundscape; voice; audio; sonic space; science sound; cultural studies;,https://ocw.mit.edu/courses/anthropology/21a-360j-the-anthropology-of-sound-spring-2008 +21A.429J,Environmental Conflict,Fall,2016,environmental conflict; nature conservation; toxic pollution; health effects; climate change; natural gas; the Anthropocene; glaciers; ecology; agency; humans; non-humans; ontology; species; ethnography; toxics; endocrine disruptors; epigenics; environmental health; fracking;,https://ocw.mit.edu/courses/anthropology/21a-429j-environmental-conflict-fall-2016 +21A.441,The Conquest of America,Spring,2004,history; cultural anthropology; conquest; colonization; Americas; native people; Guatemala; Canada; Brazil; Panama; colonial New England; Jesuit; mission; Huron; seventeenth century; politics; Panama; Kuna; twentieth century; conflict; europe; indian,https://ocw.mit.edu/courses/anthropology/21a-441-the-conquest-of-america-spring-2004 +21A.442J,"Violence, Human Rights, and Justice",Fall,2014,political violence; human rights; justice; freedom; peace; cultural relativism; war crimes tribunals; truth commissions; historical traumas; gender; religion; the Holocaust; United Nations; universalism; Argentina; Ireland; Amnesty International; Rwanda; Palestine; South Africa; Haiti,https://ocw.mit.edu/courses/anthropology/21a-442j-violence-human-rights-and-justice-fall-2014 +21A.445J,Slavery and Human Trafficking in the 21st Century,Spring,2015,slavery; human trafficking; sex; gender; human rights; race; capitalism; labor exploitation; public health; violence; child labor; organ trafficking; sexual violence; prostitution; white slavery; abolitionism; migration; border crossings; border policing; conflict zones; reproductive labor; sex work; technology and trafficking; ,https://ocw.mit.edu/courses/anthropology/21a-445j-slavery-and-human-trafficking-in-the-21st-century-spring-2015 +21A.453,Anthropology of the Middle East,Spring,2004,,https://ocw.mit.edu/courses/anthropology/21a-453-anthropology-of-the-middle-east-spring-2004 +21A.460J,"Medicine, Religion and Politics in Africa and the African Diaspora",Spring,2005,Medicine; Religion; Politics Africa; African Diaspora; colonial; postcolonial clashes; theories of healing; embodiment; western; bio-medicine; Afro-Atlantic; traditions; illness; healing; body; alternative; morality; rationality; kinship; gender; sexuality; imperial; power; global; health.,https://ocw.mit.edu/courses/anthropology/21a-460j-medicine-religion-and-politics-in-africa-and-the-african-diaspora-spring-2005 +21A.461,What is Capitalism?,Fall,2013,"anthropology, capitalism, capitalist, socialism, socialist, economics, inequality, class, financial crisis, weber, bourdieu, Post-Structuralism, Post-Structuralist, globalization, tea party, occupy wall street, socioeconomic ",https://ocw.mit.edu/courses/anthropology/21a-461-what-is-capitalism-fall-2013 +21A.461,What is Capitalism?,Fall,2021,"capitalism +anthropology +information ecology +political economy +culture +World War II +globalized capitalism +racial capitalism +precariat +super wealthy +social class +old money +new money +fissured workplace +industrial job loss +innovation economy +Nordic model +Soviet-style state socialism +welfare state +Wall Street +supply chain +",https://ocw.mit.edu/courses/anthropology/21a-461-what-is-capitalism-fall-2021 +21A.470J,Gender and Representation of Asian Women,Spring,2010,"gender, representation, asian, women, stereotypes, colonialism, nationalism, diaspora, power",https://ocw.mit.edu/courses/anthropology/21a-470j-gender-and-representation-of-asian-women-spring-2010 +21A.500J,Technology and Culture,Spring,2014,technology; technology and culture; biotechnology; computers and the self; digital world; science and religion; racial economy; ethics; technoscience; bioterrorism; cloning; genetically modified food; GMO; gender identity; information age;,https://ocw.mit.edu/courses/anthropology/21a-500j-technology-and-culture-spring-2014 +21A.501J,"Art, Craft, Science",Spring,2013,craft; technique; design; apprenticeship; learning; skill; labor; expertise; tacit knowledge; art; science; market goods; tourism industry; textiles; glassblowing; quilting; cheesemaking; industrial design; home cooking; technology; artisan; technician; machine; knitting; glass; modernism; tools; embodied practice; value; global economy; design politics; craft politics; collecting; display; authenticity; craftivism; ,https://ocw.mit.edu/courses/anthropology/21a-501j-art-craft-science-spring-2013 +21A.505J,The Anthropology of Sound,Spring,2022,"sound +telephony +architectural acoustics +sound recording +ownership +property +authorship +copyright +sound art +music +environmental recordings", +21A.506,The Business of Politics: A View of Latin America,Spring,2014,"business; politics; Latin America; marketing; democracy; elections; political consulting; political campaign; party system; electoral legislation; media platform; strategy; public relations; market research; floating signifiers; neopopulism; +",https://ocw.mit.edu/courses/anthropology/21a-506-the-business-of-politics-a-view-of-latin-america-spring-2014 +21A.506,The Anthropology of Politics: U.S. Presidential Election Edition,Fall,2016,"elections; politics; Presidential race; marketing techniques; voters; consensus; equality; authority; mass markets; electoral campaigning; democratization; polling; microtargeting; candidate branding; field campaigning; social media; ground wars; foundational myths; American elections; citizens; consumers; public opinion; victory lab; accountable democracy; representation and minorities; celebrity politics; popular politics; engineering majorities; controlled interactivity; +",https://ocw.mit.edu/courses/anthropology/21a-506-the-anthropology-of-politics-u-s-presidential-election-edition-fall-2016 +21A.506,"The Anthropology of Politics: Persuasion and Power +",Spring,2019,"politics +persuasion +power +electoral politics +public spheres +bureaucracy +humanitarian governance +authority +coercion +violence +language +labor +political rhetoric +publics +imagined states +society",https://ocw.mit.edu/courses/anthropology/21a-506-the-anthropology-of-politics-persuasion-and-power-spring-2019 +21A.520,"Magic, Science, and Religion",Fall,2021,"magic +science +religion +belief system +reason +faith +technology +orthodoxy +heterodoxy +magician",https://ocw.mit.edu/courses/anthropology/21a-520-magic-science-and-religion-fall-2021 +21A.550J,DV Lab: Documenting Science Through Video and New Media,Fall,2012,documentary film; documentary video; film history; video production; video editing; ethnography; interview; science documentary;,https://ocw.mit.edu/courses/anthropology/21a-550j-dv-lab-documenting-science-through-video-and-new-media-fall-2012 +21A.801J,Cross-Cultural Investigations: Technology and Development,Fall,2012,"ethnography, cultural anthropology, genealogy, interviews, fieldwork, observation, technology, technology transfer, development, globalization, research, culture, health, gender, women, economics, international, global, D-lab,",https://ocw.mit.edu/courses/anthropology/21a-801j-cross-cultural-investigations-technology-and-development-fall-2012 +21A.850J,The Anthropology of Cybercultures,Spring,2009,"automata, robotics, cybernetics, artificial intelligence, student work, Turing test, bioinformatics, construction of identity, mobile computing, cybergeographies, virtual reality, geek culture, hackers, free software, posthuman",https://ocw.mit.edu/courses/anthropology/21a-850j-the-anthropology-of-cybercultures-spring-2009 +21A.859J,Social Theory and Analysis,Spring,2021,"social theory +science +technology +liberal individualism +political economy +bureaucracy +prisons +culture +Frankfurt School +social media +biopower +colonialism +racial formation +postcolonialism +climate change +global health",https://ocw.mit.edu/courses/anthropology/21a-859j-social-theory-and-analysis-spring-2021/ +21A.S01,"REPARATIONS FOR SLAVERY AND COLONIZATION: CONTEMPORARY MOVEMENTS FOR JUSTICE +",Fall,2021,"reparations +social justice +colonialism +Africa +Algeria +Belgium +French-Algerian War +race +Congo +Burundi +Rwanda", +21G.010,Introduction to European and Latin American Fiction,Fall,2006,European and Latin American fiction; fictional modes; literary forms; communication intensive,https://ocw.mit.edu/courses/global-studies-and-languages/21g-010-introduction-to-european-and-latin-american-fiction-fall-2006 +21G.011,"Topics in Indian Popular Culture: Spectacle, Masala, and Genre",Fall,2006,Inidian popular culture; youth culture; Bollywood; Hindi cinema; masala melodramatic films; Dil Chahta Hai; Parineeta; Rang De Basanti; Corporate; Krish and Omkara; Shobha De; Khushwant Singh,https://ocw.mit.edu/courses/global-studies-and-languages/21g-011-topics-in-indian-popular-culture-spectacle-masala-and-genre-fall-2006 +21G.013,Out of Ground Zero: Catastrophe and Memory,Fall,2005,"World Trade Center, September 11, memorial, discourse, media, art, collective memory, Germany, Japan, global commerce, transportation systems, surveillance, non-Western cultures, oppositional political formations, Robert Musil, Maurice Halbwachs, Shusaku Arakawa, Michael Hogan, Ariella Azoulay, Chomsky, Freud, Edward Said",https://ocw.mit.edu/courses/global-studies-and-languages/21g-013-out-of-ground-zero-catastrophe-and-memory-fall-2005 +21G.017,Germany and its European Context,Fall,2002,Germany; European; Politics; Society; Nietzsche; United Kingdom; France; Denmark; Poland; Art; Performance; Peter Sloterdijk; Thomas Vinterberg; Michel Houellebecq,https://ocw.mit.edu/courses/global-studies-and-languages/21g-017-germany-and-its-european-context-fall-2002 +21G.019,Communicating Across Cultures,Spring,2005,"Cross-cultural, business, science, technology, communication styles, communication techniques, cultural norms, tradition, communication, culture, verbal Communication, non-verbal communication, intercultural communication, argumentation, negotiation, conflict resolution, intercultural adjustment, Asian culture, European culture",https://ocw.mit.edu/courses/global-studies-and-languages/21g-019-communicating-across-cultures-spring-2005 +21G.022J,International Women's Voices,Spring,2004,women; international; global; contemporary literature; writers; asia; africa; middle east; latin america; north america; non-western; gender roles; culture; heritage; female; history; colonialism; religion; nationalism; socialization; language; patriarchal; sex; marriage; politics; love; work; identity; fiction,https://ocw.mit.edu/courses/global-studies-and-languages/21g-022j-international-womens-voices-spring-2004 +21G.025,Africa and the Politics of Knowledge,Spring,2019,"Africa +geography +history +biology +political science +race +Afrocentrism +independence +modernization +dependency theories +African Renaissance +Rwanda +Vodou +Vodun +Négritude +Inadelso Cossa +Jean-Sébastien Duvilaire +Kwame Nkrumah",https://ocw.mit.edu/courses/global-studies-and-languages/21g-025-africa-and-the-politics-of-knowledge-spring-2019 +21G.026,Global Africa: Creative Cultures,Spring,2018,"Africa +visual arts +music +material culture +science +technology +fashion +African art +African cinema +African literature +Nollywood +La Noire de +Qusmane Sembene +La Sape +An African City",https://ocw.mit.edu/courses/global-studies-and-languages/21g-026-global-africa-creative-cultures-spring-2018 +21G.027,Asia in the Modern World: Images & Representations,Fall,2016,"visualizing cultures, visualizing Japan, modern Japanese history, Commodore Matthew C. Perry, Westernization in Japan, modernity in Japan, visualizing postwar Tokyo, Imperial Democracy",https://ocw.mit.edu/courses/global-studies-and-languages/21g-027-asia-in-the-modern-world-images-representations-fall-2016 +21G.030,East Asian Culture: From Zen to K-Pop,Spring,2015,"East Asia, East Asian Cultures, Chinese culture, Japanese culture, Korean culture, cultural antropology, foodways, East Asian Studies, traditional East Asian studies, contemporary East Asian studies, Confucianism, Buddhism",https://ocw.mit.edu/courses/global-studies-and-languages/21g-030-east-asian-culture-from-zen-to-k-pop-spring-2015 +21G.031,Topics in the Avant-Garde in Literature and Cinema,Spring,2003,avante garde; kulturindustrie; germany; asia; latin america; africa; europe; culture; consumer; history; politics; Adorno; Aragon; Bataille; Beckett; Brecht; Breton; Bürger; Duchamp; Eisenstein; Ernst; Jünger; Greenberg; Kandinsky; Malevich; Mayakovsky; Tzara; cinema; movies; film; music; literature,https://ocw.mit.edu/courses/global-studies-and-languages/21g-031j-topics-in-the-avant-garde-in-literature-and-cinema-spring-2003 +21G.034,Media Education and the Marketplace,Fall,2005,information; communication; technologies; ICT; globalization; development; nations; Internet; world; flat; OpenCourseWare; case; study; digital; divide; bridge; WSIS; proposal; AITI; entrepreneurship; healthcare; democracy,https://ocw.mit.edu/courses/global-studies-and-languages/21g-034-media-education-and-the-marketplace-fall-2005 +21G.035,Topics in Culture and Globalization,Fall,2003,globalization; society; geography; america; europe; asia; africa; third worrld; development; contemporary culture; religion; politics; youth; developing nation,https://ocw.mit.edu/courses/global-studies-and-languages/21g-035-topics-in-culture-and-globalization-fall-2003 +21G.035,Topics in Culture and Globalization: Reggae as Transnational Culture,Fall,2010,"reggae, world culture, globalization, Rastafari, Jamaica, Caribbean music, African diaspora, hip-hop, identity, race, ethnicity, nationalism, gender, sexuality, religion, Bob Marley, dancehall, reggaeton, roots, ska",https://ocw.mit.edu/courses/global-studies-and-languages/21g-035-topics-in-culture-and-globalization-reggae-as-transnational-culture-fall-2010 +21G.039J,Gender and Japanese Popular Culture,Fall,2015,gender; Japan; culture; Pecha Kucha; media theory; manga; inequality; economics; robots; technology; anime; anthropology; queer; transgender; hostess club; feminist social theory; gender traits; fujoshi; women; Princess Jellyfish; Kuragehime; convergence culture; participatory culture; capital; debt; power;slavery; sexism; Takarazuka; host club; masculinity; seduction; Onnagata; Kabuki theater; idols; virtual idol; games; Tokyo;,https://ocw.mit.edu/courses/global-studies-and-languages/21g-039j-gender-and-japanese-popular-culture-fall-2015 +21G.040,A Passage to India: Introduction to Modern Indian Culture and Society,Spring,2012,contemporary India; film; writers; IT revolution; documentaries; Indian culture; globalization; Indian cities; political events; social events; nationhood; gender and class issues; rural India; urban India; Devdas; Mukul Kesavan; Deepa Mehta; Chetan Bhagat; Salman Rushdie,https://ocw.mit.edu/courses/global-studies-and-languages/21g-040-a-passage-to-india-introduction-to-modern-indian-culture-and-society-spring-2012 +21G.041,Topics in South Asian Literature and Culture,Fall,2004,"South Asian literature and cinema; Bangladesh, India, Nepal, Pakistan, Sri Lanka; caste, gender, globalization, social change; Ashapurna Devi: Manto; Vijayan; Premchand; Mohanty; Nasreen; Adoor Gopalakrishnan; Satyajit Ray; Shyam Benegal; Aparna Sen; Rituporno Ghosh.",https://ocw.mit.edu/courses/global-studies-and-languages/21g-041-topics-in-south-asian-literature-and-culture-fall-2004 +21G.043J,"Introduction to Asian American Studies: Literature, Culture, and Historical Experience",Fall,2013,"bamboo ceiling, asian american, minorities, chinatown, immigrant, refugee, hmong, hapa, glass ceiling, yellow power, cambodia",https://ocw.mit.edu/courses/global-studies-and-languages/21g-043j-introduction-to-asian-american-studies-literature-culture-and-historical-experience-fall-2013 +21G.044,Classics of Chinese Literature,Fall,2011,chinese poetry; chinese culture; chinese; novel; the story of the western wing; three kingdoms; outlaws of the marsh; the journey to the west; the story of the stone; monkey; film adaptation,https://ocw.mit.edu/courses/global-studies-and-languages/21g-044-classics-of-chinese-literature-fall-2011 +21G.049,French Photography,Spring,2017,"French +France +photography +role in modern society +visual and formal analysis + printed forms +historical analysis +aesthetic trends +Dagguerre +Dagguerrotype +Barthes +portraiture +carte de visite +resemblance +surrealism +abstraction +realism +street photography +Kertesz +Baudelaire +calotypomania +urbanism +picture-taking +picture postcards +neo-realism +Sontag +war photography +fashion +digital images +photo-sharing +instagram +Ducros",https://ocw.mit.edu/courses/global-studies-and-languages/21g-049-french-photography-spring-2017 +21G.052,French Film Classics,Spring,2015,"France, french film, the new wave, René Clair, Jean Epstein, La Grande Illusion, Jean Renoir, , The Left Bank, 1970s Sex and Sectarianism, Les Valseuses, Bertrand Blier, Diva, Jean-Jacques Beineix, cult film, cult classic, Maghrebi-French (Beur), Amélie,popular Film, Cluzot, Le corbeau, Funny Face, Stanley Donen, Jacques Cousteau,Barthes,Césaire, Roger Vadim,François Truffaut, Simone de Beauvoir, Breathless: Jean-Luc Godard, Les Aventures de Rabbi Jacob, Gérard Oury, Nikita, Jean-Luc Besson, La Haine, Mattheiu Kassovitz, Intouchables, Eric Toledano and Olivier Nakache, Bande de filles, Céline Sciamma,Realism, the Popular Frot, Occupation & Liberation, Henri Langlois and the Cinémathèque française, Les parapluies de Cherboug, Jacques Demy, Brigitte Bardot, +Catherine Deneuve",https://ocw.mit.edu/courses/global-studies-and-languages/21g-052-french-film-classics-spring-2015 +21G.053,Understanding Contemporary French Politics,Spring,2014,"French, France, French society culture, politics, presidency, ideology, Fifth Republic, political system, public speaking, political debate",https://ocw.mit.edu/courses/global-studies-and-languages/21g-053-understanding-contemporary-french-politics-spring-2014 +21G.056,German Cinema: 1945-Present,Fall,2003,German; Film; Cinema; Movies; History; Intercultural Analyses; Cinematic Tradition; Post-War; Aesthetics,https://ocw.mit.edu/courses/global-studies-and-languages/21g-056-visual-histories-german-cinema-1945-to-present-fall-2003 +21G.059,European Thought and Culture,Spring,2008,Paradigms; European; Thought; Culture; History; Protestant Reformation; French Revolution; Luther; Descartes; Kant; Hegel; Rousseau; Smith; Marx; Freud; Goya; David; Duchamp; Schinkel; Bach; Goethe; political theory; philosophy,https://ocw.mit.edu/courses/global-studies-and-languages/21g-059-european-thought-and-culture-spring-2008 +21G.061,Advanced Topics: Plotting Terror in European Culture,Spring,2004,Plotting; Terrorism; European; Culture; literature; Opposition; Revolution; anarchism; Kleist; Conrad; Red Brigade; Italy; Red Army Faction; Germany; Real Irish Republican Army; Media; Ireland,https://ocw.mit.edu/courses/global-studies-and-languages/21g-061-advanced-topics-plotting-terror-in-european-culture-spring-2004 +21G.064,Intro to Japanese Culture,Spring,2012,"Japan, Japanese culture, otaku, tale of heike, tale of genji, hiroshima, modern japan, history of japan, anime",https://ocw.mit.edu/courses/global-studies-and-languages/21g-064-intro-to-japanese-culture-spring-2012 +21G.065,Japanese Literature and Cinema,Fall,2013,"japan, japanese film, japanese literature, rakugo, film criticism, japanese aesthetics",https://ocw.mit.edu/courses/global-studies-and-languages/21g-065-japanese-literature-and-cinema-fall-2013 +21G.067J,Cultural Performances of Asia,Fall,2005,Cultural performances; Asia; traditional;contemporary; genres; performers; media; cultural settings; audiences; globalization; live; video; audio; online; English.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-067j-cultural-performances-of-asia-fall-2005 +21G.068J,The Invention of French Theory: A History of Transatlantic Intellectual Life since 1945,Spring,2012,French Theory; postcolonial France; existentialism; Lacan; Camus; Sartre; Debord; Foucault; Derrida; Barthes; Bourdieu; Lyotard; Simone de Beauvoir; Eribon; Blanchot; Franz Fanon; neo-liberalism; gender; communism,https://ocw.mit.edu/courses/global-studies-and-languages/21g-068j-the-invention-of-french-theory-a-history-of-transatlantic-intellectual-life-since-1945-spring-2012 +21G.084J,Introduction to Latin American Studies,Fall,2005,market-oriented reform; Latin America; conquest; slavery; race; class; Salvador Allende; Democracy; revolution; Environment; ecology; land disputes.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-084j-introduction-to-latin-american-studies-fall-2005 +21G.101,Chinese I (Regular),Fall,2014,Pinyin; modern standard Chinese; Chinese pronunciation; Chinese 101; learning Chinese; basic Chinese; Mandarin Chinese; Chinese Writing; Speaking Chinese; traditional Chinese characters; simplified Chinese characters,https://ocw.mit.edu/courses/global-studies-and-languages/21g-101-chinese-i-regular-fall-2014 +21G.102,Chinese II (Regular),Spring,2015,Chinese; Language; Writing; Speaking; Culture; China; Asia; Mandarin;pinyin; traditional Chinese characters; simplified Chinese characters; basic Chinese; Chinese 101,https://ocw.mit.edu/courses/global-studies-and-languages/21g-102-chinese-ii-regular-spring-2015 +21G.103,Chinese III (Regular),Fall,2018,intermediate Chinese; language; East Asian language; China; Mandarin; Chinese reading; Chinese writing; Chinese speaking,https://ocw.mit.edu/courses/global-studies-and-languages/21g-103-chinese-iii-regular-fall-2018 +21G.104,Chinese IV (Regular),Spring,2018,intermediate Chinese; East Asian language; China; Mandarin; intermediate Chinese reading; intermediate Chinese writing; intermediate Chinese speaking; comprehension; pinyin,https://ocw.mit.edu/courses/global-studies-and-languages/21g-104-chinese-iv-regular-spring-2018 +21G.105,Chinese V (Regular): Chinese Cultures & Society,Fall,2003,chinese; languge; mandarin; reading; conversation; writing; culture; china; society; custom,https://ocw.mit.edu/courses/global-studies-and-languages/21g-105-chinese-v-regular-chinese-cultures-society-fall-2003 +21G.106,Chinese VI (Regular): Discovering Chinese Cultures and Societies,Spring,2003,chinese; language; china; mandarin; reading; writing; speaking; comprehension; culture; society,https://ocw.mit.edu/courses/global-studies-and-languages/21g-106-chinese-vi-regular-discovering-chinese-cultures-and-societies-spring-2003 +21G.107,Chinese I (Streamlined),Fall,2014,"Chinese, Mandarin Chinese, Chinese Learning, Chinese characters, Asian language, Chinese for beginners, elementary-level Chines, basic Chinese conversation, Chinese basic reading, Chinese basic writing, Chinese basic dialogue",https://ocw.mit.edu/courses/global-studies-and-languages/21g-107-chinese-i-streamlined-fall-2014 +21G.108,Chinese II (Streamlined),Spring,2015,"Chinese, Mandarin Chinese, Chinese Learning, Chinese characters, Asian languages, Chinese for beginners, elementary-level Chinese, basic Chinese conversation, basic Chinese reading, basic Chinese writing, basic Chinese dialogue",https://ocw.mit.edu/courses/global-studies-and-languages/21g-108-chinese-ii-streamlined-spring-2015 +21G.109,Chinese III (Streamlined),Fall,2005,chinese; asia; language; literature; intermediate; conversation; reading; writing.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-109-chinese-iii-streamlined-fall-2005 +21G.110,Chinese IV (Streamlined),Spring,2004,chinese; languge; mandarin; reading; conversation; writing; culture; china; society; custom; texts; practice; discussion; dictation; composition; feedback.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-110-chinese-iv-streamlined-spring-2004 +21G.114,Chinese VI (Streamlined),Spring,2005,Chinese; Streamlined; sophisticated; conversational; reading; writing; skills; authentic reading;audio-visual; explorations; Chinese speaking societies; human; literary; electronic resources; societies;cultures; customs;introduced; readings; discussion; student presentations; network exploration; Mandarin.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-114-chinese-vi-streamlined-spring-2005 +21G.213,High-Intermediate Academic Communication,Spring,2004,language; academic communication; vocabulary; english; second language; oral; speaking; writing; media; newspaper; magazine; television; web; internet; grammar,https://ocw.mit.edu/courses/global-studies-and-languages/21g-213-high-intermediate-academic-communication-spring-2004 +21G.221,Communicating in American Culture(s),Spring,2019,"communication norms +social rituals +cultural identity +cultural geography +Anglo-American culture +religion +popular culture +sports +professional communication +greetings +formality +informality",https://ocw.mit.edu/courses/global-studies-and-languages/21g-221-communicating-in-american-culture-s-spring-2019 +21G.222,Expository Writing for Bilingual Students,Fall,2002,"writing, rhetoric, topic, thesis, vocabulary, prose style, grammar, vocabulary, bilingual, ESL",https://ocw.mit.edu/courses/global-studies-and-languages/21g-222-expository-writing-for-bilingual-students-fall-2002 +21G.223,"Listening, Speaking, and Pronunciation",Fall,2004,English; second; language; ESL; listening; comprehension; oral; skills; pronunciation; common expressions; gambits; idioms; formal; informal; contexts.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-223-listening-speaking-and-pronunciation-fall-2004 +21G.225,Advanced Workshop in Writing for Science and Engineering (ELS),Spring,2016,writing; science; engineering; scientific paper; scientific presentation; research; grammar; strategy; style; nonlinear writing; coherence; punctuation; peer review; e-mail; memo; letters; verb form; job letters; cover letter; technical memo; use of sources; indefinite article; definite article; abstracts; introductions; plagiarism; proposals; relative clause; publishing; professionalism; conference papers; poster session; ,https://ocw.mit.edu/courses/global-studies-and-languages/21g-225-advanced-workshop-in-writing-for-science-and-engineering-els-spring-2016 +21G.228,Advanced Workshop in Writing for Social Sciences and Architecture (ELS),Spring,2007,"workshop; correction symbols; word choice; academic language; sentence, grammar; definition; resume; cover letter, paraphrase; summary; proposal; research paper; abstrac; punctuation; transitinos; subjunctives; prposition; verb; noun; subject; citing sources; research; appositives; modifiers; inversions; presentation; articles; Latin terms",https://ocw.mit.edu/courses/global-studies-and-languages/21g-228-advanced-workshop-in-writing-for-social-sciences-and-architecture-els-spring-2007 +21G.232,Advanced Speaking and Critical Listening Skills (ELS),Spring,2007,impromptu speaking; job interviews; research presentations; dynamic teaching; pronunciation; stress; intonation; speaking skills;effective message structure; gestures; facial expressions; idiomatic expressions; visual aids; rapid speech,https://ocw.mit.edu/courses/global-studies-and-languages/21g-232-advanced-speaking-and-critical-listening-skills-els-spring-2007 +21G.301,French I,Fall,2004,French; introduction; understand; speak; write; present; future; past; tense; family; food; travel; hobbies; activities; environment; context; compositions; Francophone; customs; history; civilization.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-301-french-i-fall-2004 +21G.302,French II,Fall,2004,French; introduction; understand; speak; write; present; future; past; tense; family; food; travel; hobbies; activities; environment; context; compositions; Francophone; customs; history; civilization.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-302-french-ii-fall-2004 +21G.311,Introduction to French Culture,Spring,2014,"culture française, produits culturels, 20ième siècle, ces types français, 21ième siècle, Arsène Lupin, la Marianne, la flâneuse. le flâneuer, Agnes Varda, Le Monde, Le Figaro, Libération, Balzac, Baudelaire, Cléo de 5 à 7, Breton, Nadja, Simone de Beauvoir, Pennac, Zola, ",https://ocw.mit.edu/courses/global-studies-and-languages/21g-311-introduction-to-french-culture-spring-2014 +21G.312,Basic Themes in French Literature and Culture,Spring,2011,French; Romain Gary; literature; l'enfance; cultural studies; films; France; société; françaises; historique; La République; littéraire; filmique; textes; chansons; identité Française; Truffaut; sexe et sexualité; la guerre; la vie devant soi; les médias de masse; l'enfant roi ,https://ocw.mit.edu/courses/global-studies-and-languages/21g-312-basic-themes-in-french-literature-and-culture-spring-2011 +21G.315,Cross-Cultural Perspectives on Contemporary French Society,Fall,2011,foreign languages; French; la société française; culture française contemporaine; cross-cultural; stéréotypes; media; comparative cultures; values; ,https://ocw.mit.edu/courses/global-studies-and-languages/21g-315-cross-cultural-perspectives-on-contemporary-french-society-fall-2011 +21G.321,Childhood and Youth in French and Francophone Cultures,Spring,2013,"francophone, youth culture, adolescence, literature, childhood, Florence Foresti, Serge Reggiani, Jean Cocteau, jeunesse, Arthur Rimbaud, François Ozon, Damien Saez, Kev Adams, Riad Sattouf",https://ocw.mit.edu/courses/global-studies-and-languages/21g-321-childhood-and-youth-in-french-and-francophone-cultures-spring-2013 +21G.322J,Frenchness in an Era of Globalization,Fall,2016,"globalization, culture, smart power, cultural diplomacy, market forces, cultural adaptation, French history, Europeanization, French culture, immigration, assimilation, burkini, burqa, burka, lnague francaise, Les Bulles, Francophone, l""alliance francaise, Camus, The Strange, le patrimoine, UNESCO, Americanization, the museum, le musee, Louvre, Disney, nation moderne, l'avenir, the future +",https://ocw.mit.edu/courses/global-studies-and-languages/21g-322j-frenchness-in-an-era-of-globalization-fall-2016 +21G.325J,New Culture of Gender: Queer France,Fall,2011,queer identities; French;Proust; Vivien; Hocquenghem; Wittig; post-colonial; essays; films; novels; Didier Eribon; Duras; homosexualité; ,https://ocw.mit.edu/courses/global-studies-and-languages/21g-325j-new-culture-of-gender-queer-france-fall-2011 +21G.341,Contemporary French Film and Social Issues,Spring,2014,"France, French, contemporary, 1990s, national image, women's movement, sexuality, gender, class structure, family, post-colonialism, immigration, American cultural imperialism, Lelouch, Audiard, Doillon, Denis, Klapisch, Resnais, Rouan, Balasko, Collard, Dridi, Kassovitz",https://ocw.mit.edu/courses/global-studies-and-languages/21g-341-contemporary-french-film-and-social-issues-spring-2014 +21G.346,Topics in Modern French Literature and Culture: Global Paris,Fall,2014,"France, Paris, City of Light, City of Love, Capital of the Ninteenth Century, Capital of Modernity, global capital, immigrants, immigration, Paris myth, Bollywood, Las Vegas, Eiffel Tower, la tour Eiffel, Gustave Eiffel, culture, Zola, Barthes, Les Halles, Napoleon, rebuilding Paris, Rio De Janeiro, petits paris, Musée du quai Branly, Hollywood, La banlieue de Paris, La cuisine asiatique, Bemelmans, Madeline, Babar +",https://ocw.mit.edu/courses/global-studies-and-languages/21g-346-topics-in-modern-french-literature-and-culture-global-paris-fall-2014 +21G.346,Topics in Modern French Literature and Culture: North America Through French Eyes,Spring,2014,"France, North America, Canada, United States, liberalism, entertainment, media, trade, cultural goods, transatlantic intellectual encounters, translation,Tocqueville, Céline, Beauvoir, Dubois, Tati, Chomet, anti-globalization, Barack Obama, Hergé, Tintin, de Tocqueville, de Gaulle, Victor Hugo, Sarkozy, Baudrillard, Simone de Beauvoir, Sartre, Stuart Hall",https://ocw.mit.edu/courses/global-studies-and-languages/21g-346-topics-in-modern-french-literature-and-culture-north-america-through-french-eyes-spring-2014 +21G.347,Contemporary Short French Fiction: Social and Literary Trends since 1990,Fall,2013,"french language, french, short stories, Hervé Guibert, Philippe Forest, Christophe Honoré, Christine Angot, Chloé Delaume, Rachid O., Lydie Salvayre, Marie N’Diaye, Régis Jauffret, Patrick Modiano, Tonino Benacquista, Ariel Kenig, Patrick Modiano, Annie Ernaux, Nina Bouraoui, Marc Vilrouge, Jean Echenzo, contemporary fiction",https://ocw.mit.edu/courses/global-studies-and-languages/21g-347-contemporary-short-french-fiction-social-and-literary-trends-since-1990-fall-2013 +21G.401,German I,Fall,2008,German language; culture; grammar; vocabulary; speaking; writing; communication; reading; listening; introductory; dictation; geography; student projects,https://ocw.mit.edu/courses/global-studies-and-languages/21g-401-german-i-fall-2008 +21G.402,German II,Spring,2005,"german, foreign language, contemporary culture, switzerland, austria, europe, intermediate, grammar",https://ocw.mit.edu/courses/global-studies-and-languages/21g-402-german-ii-spring-2005 +21G.403,German III,Spring,2004,german language; culture; grammar; vocabulary; speaking; writing; communication; reading; listening; intermediate,https://ocw.mit.edu/courses/global-studies-and-languages/21g-403-german-iii-spring-2004 +21G.404,German IV,Spring,2005,"germany, foreign language, literature, switzerland, austria, speaking, reading, writing, culture, europe",https://ocw.mit.edu/courses/global-studies-and-languages/21g-404-german-iv-spring-2005 +21G.405,Germany Today: Intensive Study of German Language and Culture,IAP,2011,"german, switzerland, austria, contemporary culture, politics, society, speaking, reading, writing, literature, language, media, intermediate",https://ocw.mit.edu/courses/global-studies-and-languages/21g-405-germany-today-intensive-study-of-german-language-and-culture-january-iap-2011 +21G.410,Kommunikation im Berufsleben (Advanced German: Professional Communication),Spring,2017,"German technology +business +international industrial relations +specialized vocabulary +systematic training +speaking and writing skills +communicative strategies",https://ocw.mit.edu/courses/global-studies-and-languages/21g-410-advanced-german-professional-communication-spring-2017 +21G.412,"Advanced German Literature & Culture: Madness, Murder, Mysteries",Fall,2014,"German, language, literature, culture, E. T. A. Hoffmann, ""Das Fräulein von Scuderi,"" Annette von Droste-Hülshoff, ""Die Judenbuche,"" Gerhart Hauptmann, ""Bahnwärter Thiel,"" Bertolt Brecht, Kurt Weill, Die Dreigroschenoper, Friedrich Dürrenmatt, Die Physiker, Jakob Arjouni, Happy Birthday, Türke, Tom Tykwer, Das Parfum: Die Geschichte eines Mörders, ",https://ocw.mit.edu/courses/global-studies-and-languages/21g-412-advanced-german-literature-culture-madness-murder-mysteries-fall-2014 +21G.412,"Texts, Topics, and Times in German Literature",Fall,2009,"modern German literature, lyric poetry, drama, film, poetry, radio plays, architecture, translation and interpretation, essays, cultural context, scientific ethics, society & technology, construction of national history, the Holocaust, 20th century Germany",https://ocw.mit.edu/courses/global-studies-and-languages/21g-412-texts-topics-and-times-in-german-literature-fall-2009 +21G.414,"German Culture, Media, and Society",Fall,2006,German; Germany; kurtzfilme; radio; radio plays; theater; film; television; media; media text; production; filmmaker; art; broadcast; experimental radio art,https://ocw.mit.edu/courses/global-studies-and-languages/21g-414-german-culture-media-and-society-fall-2006 +21G.501,Japanese I,Fall,2019,"Japanese, Japanese language, nihongo, katakana, hiragana, kanji, genki",https://ocw.mit.edu/courses/global-studies-and-languages/21g-501-japanese-i-fall-2019 +21G.502,Japanese II,Spring,2020,"Japanese, East Asian language, Genki, Nihongo, Kanji",https://ocw.mit.edu/courses/global-studies-and-languages/21g-502-japanese-ii-spring-2020 +21G.503,Japanese III,Fall,2019,"Japanese, intermediate Japanese, Japanese dialogue, Japanese vocabulary, foreign language, Asian language, Asia, Asian culture, Kanji",https://ocw.mit.edu/courses/global-studies-and-languages/21g-503-japanese-iii-fall-2019 +21G.504,Japanese IV,Spring,2020,"Japan, East Asian language,kana, katakana, hiragana, kanji, intermediate Japanese",https://ocw.mit.edu/courses/global-studies-and-languages/21g-504-japanese-iv-spring-2020 +21G.701,Spanish I,Fall,2003,spanish; language; speaking; comprehension; grammar; writing; reading,https://ocw.mit.edu/courses/global-studies-and-languages/21g-701-spanish-i-fall-2003 +21G.702,Spanish II,Spring,2004,Spanish; Language; Foreign; Understand; Speak; Read; Fluency; Destinos; Culture; Diversity; Film; Media,https://ocw.mit.edu/courses/global-studies-and-languages/21g-702-spanish-ii-spring-2004 +21G.703,Spanish III,Spring,2006,Spanish; Spanish grammar; Spanish vocabulary; writing; essays; culture; cultural awareness; conversation; MITUPV,https://ocw.mit.edu/courses/global-studies-and-languages/21g-703-spanish-iii-spring-2006 +21G.704,Spanish 4,Spring,2005,"spanish, foreign language, conversation, writing, literature, culture, history, society, hispanic, latin america, western europe, spain, central america, south america, identity, politics, family, economy, tradition",https://ocw.mit.edu/courses/global-studies-and-languages/21g-704-spanish-iv-spring-2005 +21G.705,Oral Communication in Spanish,Spring,2004,Oral; conversation; Spanish; multimedia; Hispanic; culture; narrative; diary entries; trial; preparation; improvisation; films; La virgen de los sicarios; Colombia; Pantaleón y las visitadoras; Perú; documentary; kidnapping; activist; Ingrid Betancourt; Sin noticias de Dios; Spain; Penelope Cruz; Victoria Abril; Gael García Bernal.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-705-oral-communication-in-spanish-spring-2004 +21G.711,Advanced Spanish Conversation and Composition,Spring,2014,"conversation, composition, Spanish, foreign language, technology, culture, Español, conversación, composición, genetic engineering, Internet addiction, GMO",https://ocw.mit.edu/courses/global-studies-and-languages/21g-711-advanced-spanish-conversation-and-composition-spring-2014 +21G.712,Spanish Conversation and Composition,Fall,2003,Spanish; Language; Speak; Writing; Literature; Culture; vocabulary acquisition; listening comprehension; reading; film; group activities,https://ocw.mit.edu/courses/global-studies-and-languages/21g-712-spanish-conversation-and-composition-fall-2003 +21G.714,Spanish for Bilingual Students,Spring,2003,Spanish; Language; Bilingual; Speak; Writing; Literature; Culture; History; Society; Economics; Politics; Psychology; Philosophy,https://ocw.mit.edu/courses/global-studies-and-languages/21g-714-spanish-for-bilingual-students-spring-2003 +21G.716,Introduction to Contemporary Hispanic Literature,Spring,2005,"Contemporary; Hispanic; Literature; twentieth century; texts; Spain; Latin America; short stories; theatre; novel; poetry; +iterary; cultural; issues; historical; political; geographical; cultural; settings; New World; Old World; human experience; film; El País.",https://ocw.mit.edu/courses/global-studies-and-languages/21g-716-introduction-to-contemporary-hispanic-literature-spring-2005 +21G.716,Introduction to Contemporary Hispanic Literature,Fall,2007,"introduction, hispanic, contemporary, literature, Magali Garcia Ramis, Javier Cercas, Rubén Darío, Luis Buñuel, Salvador Dalí, Un chien andalou, Antonio Machado, Federico García Lorca, Miguel Hernández, César Vallejo, La casa de Bernarda Alba, Max Aub, El remate, Felices días, Tío Sergio, Luis Palés Matos, Soldados de Salamina, David Trueba, Rafael Sánchez Mazas, Ciriaco Pérez Bustamante, Marilyn Bobes, Ingrid Kummels, Icíar Bollaín, Flores de otro mundo, La vida es silbar, Jorge Luis Borges, Rosario Ferré, Roberto Bolaño, short story, novel, latin american experience, spanish",https://ocw.mit.edu/courses/global-studies-and-languages/21g-716-introduction-to-contemporary-hispanic-literature-fall-2007 +21G.717,Introduction to Spanish Culture,Fall,2004,Spanish; culture; history; architecture; art; literture; film; Western European; Arabic; Christian; Jewish; Spain; Fascist regime.,https://ocw.mit.edu/courses/global-studies-and-languages/21g-717-introduction-to-spanish-culture-fall-2004 +21G.730,Hispanic America: One Hundred Years of Literature and Film,Spring,2014,"Hispanic, history, literature, Gabriel Garcia Marquez, film, Bolaño, Pablo Neruda, Horacio Quiroga, Cien años de soledad, One Hundred Years of Solitude, Jorge Luis Borges",https://ocw.mit.edu/courses/global-studies-and-languages/21g-730-hispanic-america-one-hundred-years-of-literature-and-film-spring-2014 +21G.735,Advanced Topics in Hispanic Literature and Film: The Films of Luis Buñuel,Fall,2013,"film, film studies, film criticism, Luis Bunuel, Freud, Salvador Dali, silent film, surrealism, Federico Garcia Lorca, Mexico, Spain, film history",https://ocw.mit.edu/courses/global-studies-and-languages/21g-735-advanced-topics-in-hispanic-literature-and-film-the-films-of-luis-bunuel-fall-2013 +21G.801,Portuguese I,Fall,2011,Portuguese; Brazil; Brazilian; languages; foreign languages; basic vocabulary; speaking; dialogues; Brazilian music; Brazilian culture; lusophone; lusophone culture; entrevista,https://ocw.mit.edu/courses/global-studies-and-languages/21g-801-portuguese-i-fall-2011 +21G.802,Portuguese II,Spring,2012,Portuguese; Brazil; Brazilian; languages; foreign languages; grammar; listening; speaking; reading; writing; vocabulary; dialogues; Brazilian music; Brazilian culture; lusophone; lusophone culture; entrevista,https://ocw.mit.edu/courses/global-studies-and-languages/21g-802-portuguese-ii-spring-2012 +21G.820,Portuguese Advanced Conversation and Composition,Fall,2014,"Portuguese, language, global studies, conversation, composition, português, grammar, vocabulary, oral communication, Brazil",https://ocw.mit.edu/courses/global-studies-and-languages/21g-820-portuguese-advanced-conversation-and-composition-fall-2014 +21G.820,"Portuguese Literature and Culture: The Beat of Brazil: Brazilian Society Through Its Music +",Fall,2016,"Portuguese +communication +culture +Brazil +music +Samba +Bossa Nova +history +",https://ocw.mit.edu/courses/global-studies-and-languages/21g-820-the-beat-of-brazil-brazilian-society-through-its-music-fall-2016 +21G.880,Accelerated Introductory Portuguese for Spanish Speakers,Fall,2013,"Portuguese, Spanish speakers, foreign language, Brazil, language",https://ocw.mit.edu/courses/global-studies-and-languages/21g-880-accelerated-introductory-portuguese-for-spanish-speakers-fall-2013 +21G.S01,Modern Mexico: Representations of Mexico City's Urban Life,Spring,2015,"Mexico, Mexico City, urban, literature, visual arts, film, culture, modern history, 20th century, 21st century, national identity, state control, globalization, immigration.",https://ocw.mit.edu/courses/global-studies-and-languages/21g-s01-modern-mexico-representations-of-mexico-citys-urban-life-spring-2015 +21G.S55,Japanese V,Fall,2022,"advanced Japanese, East Asian languages, world language, kanji learning, kanji videos", +21H.001,How to Stage a Revolution,Fall,2013,"haiti, revolution, america, american revolution, haitian revolution, slavery, freedom, colonization, european migration, egypt, arab spring, mubarak",https://ocw.mit.edu/courses/history/21h-001-how-to-stage-a-revolution-fall-2013 +21H.007J,Empire: Introduction to Ancient and Medieval Studies,Fall,2012,"rome, roman empire, augustus, charlemagne, emperor louis, english empire, edward III, louis the pious, virgil",https://ocw.mit.edu/courses/history/21h-007j-empire-introduction-to-ancient-and-medieval-studies-fall-2012 +21H.009,The World: 1400-Present,Spring,2014,"history, european history, world history, war, asia, mideval, reformation, industrialization, slavery, globalization ",https://ocw.mit.edu/courses/history/21h-009-the-world-1400-present-spring-2014 +21H.101,American History to 1865,Fall,2010,"American colonies, Civil War, Spanish colonization, British empire, American Revolution, Declaration of Independence, U.S. Constitution, ratification, secession, Bill of Rights, John Winthrop, Thomas Paine, Thomas Jefferson, James Madison, William H. Garrison, George Fitzhugh, Harriet Beecher Stowe, Abraham Lincoln, Frederick Douglass, Andrew Jackson, George Mason, abolition, Federalism, slavery, Constitutional Convention",https://ocw.mit.edu/courses/history/21h-101-american-history-to-1865-fall-2010 +21H.102,American History Since 1865,Spring,2018,"immigration +industrialization +Cold War +Civil Rights Movement +Civil War +Reconstruction +Gilded Age +Frontier West +World Power +Progressive reform +Great Depression +New Deal +World War II +race +Vietnam +Digital Age",https://ocw.mit.edu/courses/history/21h-102-american-history-since-1865-spring-2018 +21H.104J,"Riots, Strikes, and Conspiracies in American History",Fall,2010,"riot; strike; conspiracy; cities; urbanism; U.S. history; revolutionary war; boston tea party; civil war; slavery; slave uprisings; Anthony Burns; Henry David Thoreau; industrial revolution; textile workers; Lawrence, MA; student uprising; Vietnam War; Columbia University; communism; socialism",https://ocw.mit.edu/courses/history/21h-104j-riots-strikes-and-conspiracies-in-american-history-fall-2010 +21H.105,American Classics,Fall,2002,"American history, national identity, popular culture",https://ocw.mit.edu/courses/history/21h-105-american-classics-fall-2002 +21H.105,American Classics,Spring,2006,"classic documents in American history from the seventeenth through the twentieth centuries; writings by authors such as John Winthrop, Thomas Jefferson, and James Madison; Frederick Douglass, William Lloyd Garrison, and Abraham Lincoln; Horatio Alger, Franklin D. Roosevelt, Betty Friedan, and Martin Luther King, Jr",https://ocw.mit.edu/courses/history/21h-105-american-classics-spring-2006 +21H.112,The American Revolution,Spring,2006,"English background; American Revolution effects; Anglo-American conflict; colonial resistance, republicanism; the Revolutionary War; constitution writing; revolutionary origins of American government; pamphlets, correspondence, resistance organizations; constitutional documents, debates",https://ocw.mit.edu/courses/history/21h-112-the-american-revolution-spring-2006 +21H.116J,The Civil War and Reconstruction,Fall,2005,History; Civil War; Reconstruction; causes; consequences; 1861-1865; military; technology; North; South; Federal; Confederacy; soldiers; Ken Burns.,https://ocw.mit.edu/courses/history/21h-116j-the-civil-war-and-reconstruction-fall-2005 +21H.132,The Ancient World: Rome,Spring,2017,"Rome +the Republic +Social Conflict +Punic Wars +Roman Constitution +Hannibal +Scipio Africanus +Plutarch +Marius +Sulla +Pompey +Caesar +Augustus +the Elites +the Plebs +Julio-Claudians +Flavians +Severans +Roman Army +Nero +Constantine +Byzantium +Christianity",https://ocw.mit.edu/courses/history/21h-132-the-ancient-world-rome-spring-2017 +21H.134J,Medieval Economic History in Comparative Perspective,Spring,2012,"medieval europe, economic history, the plague, mongols, antiquity, vikings",https://ocw.mit.edu/courses/history/21h-134j-medieval-economic-history-in-comparative-perspective-spring-2012 +21H.141,"Renaissance To Revolution: Europe, 1300-1800",Spring,2015,"renaissance; revolution; Europe; Italy; French Revolution; theology; magic; science; England; censorship; Rene Descartes; Italian humanism; Copernicus; Constantine; printing; rare books; paper-making; Erasmus of Rotterdam; The Paraclesis; free will; Luther; German Peasants War; The Cheese and the Worms; Protestant revolution; Catholic renewal; radical reform movements; religion; Menocchio; skepticism; the occult; Michel de Montaigne; astrology; Cardano; Cartesian Method; Discourse on Method; English Civil War; interregnum, Putney debates; Wallington's World; The Mad Hatter; Isaac Newton; Newtonianism; Principia; The Encyclopedie; Diderot; d'Alembert; metric system;",https://ocw.mit.edu/courses/history/21h-141-renaissance-to-revolution-europe-1300-1800-spring-2015 +21H.152,Modern China,Spring,2022,"China +global affairs +foreign affairs +The Qing +Opium Wars +Taiping Rebellion +Boxer Rebellion +World War II +May Fourth Movement +Nationalists +Communists +Xi Jinping Era +Hong Kong +Taiwan +Singapore +culture +technology +politics +economy + + +",https://ocw.mit.edu/courses/history/21h-152-modern-china-spring-2022 +21H.153J,Race and Gender in Asian America,Spring,2006,racial and gender discourse; stereotyping of Asian American women and men in the media; Asian American masculinity; Asian American feminisms; feminism; ethnic nationalism; gay and lesbian identity; class and labor issues; domestic violence; interracial dating and marriage; multiracial identity,https://ocw.mit.edu/courses/history/21h-153j-race-and-gender-in-asian-america-spring-2006 +21H.154,Inventing the Samurai,Fall,2022,, +21H.155,Modern Japan: 1868 to Present,Spring,2017,"Japan +Government +Samurai Order +Samurai Disorder +Tokugawa Shogunate +Pax Tokugawa +Civilization +Democracy +Revolution +Meiji Imperialism +Imperial Democracy +Jazz Age +World War II +",https://ocw.mit.edu/courses/history/21h-155-modern-japan-1868-to-present-spring-2017 +21H.161,The Middle East in the 20th Century,Fall,2015,"Middle East; history; Ottoman period; imperialism; nation-state; Turkey; Egypt; Israeli-Palestinian conflict; Islam; Iranian Revolution; democracy; Orientalism; Western Imperialism; World War I; Great War; Nationalism; Israel; Palestine; Islamic radicalism; Hamas; Arab Spring; Isis; Iraq; Yezidis; +",https://ocw.mit.edu/courses/history/21h-161-the-middle-east-in-the-20th-century-fall-2015 +21H.165,Modern African History,Spring,2019,"Sub-Saharan Africa +colonial rule +African nationalism +labor strikes +guerilla warfare +politics +civil war +Rwanda +Liberia +AIDS +China +forced labor +taxation +capitalism +segregation +South Africa +gender +decolonization +Mau Mau +apartheid",https://ocw.mit.edu/courses/history/21h-165-modern-african-history-spring-2019 +21H.181,Libertarianism in History,Spring,2014,libertarianism; history; politics; state; regulatory state; freedom; property; equality; community; republicanism; liberty; slavery; religious freedom; civil liberties; counter-terrorism; health care; financial market; the internet; Rawls; Nozick; Obamacare; Rand Paul; John Stuart Mill; de Toqueville; economic good; Martin Luther King; capitalism; freedom; John Locke; distributive justice; communitarianism; civil republicanism; chattel; Freedom Principle; antislavery;First Amendment; free exercise; religious accomodation; phone surveillance; private regulation; Aaron Swartz; Guerilla Open Access Manifesto,https://ocw.mit.edu/courses/history/21h-181-libertarianism-in-history-spring-2014 +21H.206,American Consumer Culture,Fall,2007,twentieth century history; history; popular culture; united states; marketing; mass-production; consumption; economics; politics; middle class; advertising; status; American Dream; mass-market; suburbs; e-commerce; fast food,https://ocw.mit.edu/courses/history/21h-206-american-consumer-culture-fall-2007 +21H.207,The Energy Crisis: Past and Present,Fall,2010,"energy, USA, oil embargo, Gulf War, Richard Nixon, Ronald Reagan, Jimmy Carter, George Bush, nuclear power, wind power, fossil fuel, automobiles, suburbia, Iran Hostage Crisis, climate change, global warming, oil drilling, Kyoto Protocol, solar power, OPEC, EPA, Earth Day, environmentalism, atomic bomb, Gerald Ford, Levittown, Manhattan Project",https://ocw.mit.edu/courses/history/21h-207-the-energy-crisis-past-and-present-fall-2010 +21H.209,America in Depression and War,Spring,2012,"great depression, new deal, WWII, world war II, the great crash, stock market crash",https://ocw.mit.edu/courses/history/21h-209-america-in-depression-and-war-spring-2012 +21H.211,The United States in the Nuclear Age,Spring,2016,nuclear age; Cold War America; atom bomb; bomb; atomic age; nuclear energy; civil defense; domestic containment; New Deal; McCarthysim; Red Scare; sex; gender; lavender scare; homosexual; technology; MIT; security; space; race; suburbanization; white flight; urban crisis; China's Cold War; Cold War civil rights; youth culture; mass culture; student movement; New Left; anti-nuclear movement; security; democracy; nuclear weapon; ,https://ocw.mit.edu/courses/history/21h-211-the-united-states-in-the-nuclear-age-spring-2016 +21H.221,The Places of Migration in United States History,Fall,2006,immigration; migration; lawrence; chinatown; U.S.-Mexico border; Great Migration; The Jazz Singer; Lower East Side; ethnicity; New York City; New Immigration; Filipino; american imperialism; cuban-american; multiculturalism; caribbean migration; asian immigration,https://ocw.mit.edu/courses/history/21h-221-the-places-of-migration-in-united-states-history-fall-2006 +21H.223,War & American Society,Fall,2002,"Civil War, war, citizenship, representation, history, literature, popular culture, national identity.",https://ocw.mit.edu/courses/history/21h-223-war-american-society-fall-2002 +21H.224,Law and Society in US History,Spring,2003,"Supreme Court, constitution, constitutional law, legal history, liberty, equality, property, court cases",https://ocw.mit.edu/courses/history/21h-224-law-and-society-in-us-history-spring-2003 +21H.225J,Gender and the Law in U.S. History,Spring,2004,"gender studies, suffrage, women's rights, feminism, sexual harrassment, law, women's rights movement, affirmative action, sexual liberation, miscegination laws, social movements",https://ocw.mit.edu/courses/history/21h-225j-gender-and-the-law-in-u-s-history-spring-2004 +21H.234J,Downtown,Spring,2005,"urban planning; urban design; cities; downtown; skyscrapers; buildings; open space; infrastructure; traffic; congestion; ""white flight""; suburban development; urban renewal; urban blight; retail and business centers and districts;",https://ocw.mit.edu/courses/history/21h-234j-downtown-spring-2005 +21H.235,Metropolis: History of New York City,Fall,2009,"New York City, metropolis, Harlem, Bronx, Brooklyn, Queens, Long Island, Manhattan, gay society, New Amsterdam, working class, Haudenosaunee, sex work, Chinatown, Tammany Hall, race relations, Civil War, immigration, organized crime, urban revitalization, urban planning",https://ocw.mit.edu/courses/history/21h-235-metropolis-history-of-new-york-city-fall-2009 +21H.237,The City of Athens in the Age of Pericles,Fall,2014,"Pericles; Athens; Greece; Acropolis; Agora; Plutarch; Herodotus; Thucydies; Peloponnesian War; democracy; Panathenaea; festival of Athena; Festival of Dionysus; gymnasia; Sophocles; Aristophanes; Plato; Symposium; Delphi; Pythian Apollo; Delphic Oracle; Olympia; +",https://ocw.mit.edu/courses/history/21h-237-the-city-of-athens-in-the-age-of-pericles-fall-2014 +21H.244J,"Imperial and Revolutionary Russia: Culture and Politics, 1700-1917",Fall,2019,"Russia +Peter the Great +the Russian Revolution +empire + +Solvetsky Transfiguration Monastery + +Muscovy +Ivan the Terrible +Petrine Reform Legislation +Catherine the Great +Pugachev +Nicholas I +Alexander II +the Great Reforms +anti-semitism +pogrom +February Revolution +October Revolution +",https://ocw.mit.edu/courses/history/21h-244j-imperial-and-revolutionary-russia-culture-and-politics-1700-1917-fall-2019 +21H.245J,"Soviet and Post-Soviet Politics and Society, 1917 to the Present",Spring,2016,"Soviet Union; politics; society; Vladimir Putin; Imperial Russia; Russian Revolution; New Economic Policy; Gorbachev; Yeltsin; Lenin; Pobedonostsev; Marxism; October Manifesto; World War I; February Revolution; Romanov dynasty; Lenin; Bolsheviks; Trotsky; October Revolution; Civil War; Red Army; Communism; Stalin; collectivization; industrialization; Gulag; Molotov-Ribbentrop pact; World War II; Novikov telegram; Khrushchev; Brezhnev; Gorbachev; Alena Ledeneva; Putin; Kremlin; Medvedev; Ukraine +",https://ocw.mit.edu/courses/history/21h-245j-soviet-and-post-soviet-politics-and-society-1917-to-the-present-spring-2016 +21H.266,Apartheid and South Africa,Spring,2020,"South Africa +apartheid +African National Congress +race +racial identity +Sophiatown +mining compounds +domestic workers +township +Black Consciousness Movement +Steve Biko",https://ocw.mit.edu/courses/history/21h-266-apartheid-and-south-africa-spring-2020 +21H.301,The Ancient World: Greece,Fall,2004,History; Ancient; Greece; Bronze Age; death; Alexander; social; economic; political; religious; trends; Homer; heroism; Greek; identity; hoplite revolution; city-state; Herodotus; Persia; Empire; Thucydidean rationalism; Peloponnesian War; Platonic constructs; Aristotle; Macedonia; Hellenism; primary sources; translation.,https://ocw.mit.edu/courses/history/21h-301-the-ancient-world-greece-fall-2004 +21H.306,The Emergence of Europe: 500–1300,Fall,2003,medieval; ancient history; europe; culture; politics; mediterranean; germanic; byzantine; carolingian renaissance; islamic; crusades; religion; economics; feudalism; barbarian; charlemagne; england; ottonian; empire; rome; gothic; monarchy,https://ocw.mit.edu/courses/history/21h-306-the-emergence-of-europe-500-1300-fall-2003 +21H.311,"The Renaissance, 1300-1600",Fall,2004,"Renaissance, fourteenth-century Italy, Geography, Demography, Global Trade, Peasantry, The Black Death, Humanism, Burgundy, Machiavelli, Christian Humanism, Martin Luther.",https://ocw.mit.edu/courses/history/21h-311-the-renaissance-1300-1600-fall-2004 +21H.319,"Race, Crime, and Citizenship in American Law",Fall,2014,"criminal justice, citizenship, nationhood, race, ethnicity, religion, mass incarceration, poverty, class, criminal punishment, death penalty, drug laws, police, terrorism, counter-terrorism, 9/11, Ferguson, Michael Brown, Trayvon Martin, Jim Crow, felon disenfranchisement, plea bargaining, George Zimmerman, militarization, guilt, innocence, illegal alien, undocumented, immigration, deportation, civil liberties, internment, Japanese, WWII, police brutality",https://ocw.mit.edu/courses/history/21h-319-race-crime-and-citizenship-in-american-law-fall-2014 +21H.326,"The Making of Russia in the Worlds of Byzantium, Mongolia, and Europe",Spring,1998,"Medieval ; early modern; Russia; history; Kievan State; Mongol Yoke; Muscovy; Ivan the Terrible; Peter the Great; international relations; Western Europe; politics, religion, economics, social factors; state; society",https://ocw.mit.edu/courses/history/21h-326-the-making-of-russia-in-the-worlds-of-byzantium-mongolia-and-europe-spring-1998 +21H.331,Julius Caesar and the Fall of the Roman Republic,Spring,2016,"Julius Caesar; Rome; Roman Republic; Cicero; Plutarch; Sallust; Appian; Cassius Dio; Polybius; Suetonius; Cato; Brutus; Crassus; Catiline; war; Jugurthine War; Tiberius; Gaius Gracchus; The Gracchi; Marius; Social War; unification; Italy; Sulla; Roman Revolution; Pompey; Gaul; urban plebs; Publius Clodius; Marcellus; Ides of March; Marc Antony; Octavian; Augustan Principate +",https://ocw.mit.edu/courses/history/21h-331-julius-caesar-and-the-fall-of-the-roman-republic-spring-2016 +21H.342,The Royal Family,Fall,2003,"england; britain; culture; history; monarchy; windsor; hanover; george III; George IV, victoria; albert; prince; queen; king; edward VIII; diana; princess; dynasty; politics; william IV; empire; elizabeth",https://ocw.mit.edu/courses/history/21h-342-the-royal-family-fall-2003 +21H.343J,Making Books: The Renaissance and Today,Spring,2016,Gutenberg Bible; French Revolution; printing press; books; Renaissance period; Early Modern period; Gill and Edes; paper-making; Book of Hours; Nuremburg Chronicle; Decrees of Gregory IX; English Book of Martyrs; King James Bible; Lutheran Bible; religion; Hart Nautical Collection; polyglot Bible; engraving; Ambroise Pare; Gessner; Galileo; Tycho Brahe; Spheres of Sacrobosco; De Re Metallica; Mathematical Recreations; The Cheese and the Worms; Menocchio; Domenico Scandella;,https://ocw.mit.edu/courses/history/21h-343j-making-books-the-renaissance-and-today-spring-2016 +21H.346,"France, 1660-1815: Enlightenment, Revolution, Napoleon",Spring,2011,"French Revolution, history, french history, european history, napolean boneparte, Louis XVI, the rights of man, Molière, Voltaire",https://ocw.mit.edu/courses/history/21h-346-france-1660-1815-enlightenment-revolution-napoleon-spring-2011 +21H.357,South Asian Migrations,Spring,2018,"South Asians +migration +America +Europe +Middle East +the Caribbean +India +Indian migrants +labor +middle passage +Kenya +Dubai +politics +colonialism +race +multiculturalism +religion",https://ocw.mit.edu/courses/history/21h-357-south-asian-migrations-spring-2018 +21H.365,Cultural Pluralism in Modern Middle East,Spring,2014,"israel, palestine, turkey, middle east, dhimmi, arab, islam, revolution, ottoman empire, armenia, genocide, ",https://ocw.mit.edu/courses/history/21h-365-cultural-pluralism-in-modern-middle-east-spring-2014 +21H.380J,People and Other Animals,Fall,2013,"animal research, animal rights, vegetarianism, medical research, hunting, natural history",https://ocw.mit.edu/courses/history/21h-380j-people-and-other-animals-fall-2013 +21H.381J,Women and War in the 20th Century,Fall,2015,"women; war; revolution; genocide; September 11; rape; Sierra Leone Civil War; military; combat; peace; activisim; human rights; Vietnam; Vietnamese Women's Union; Women's Union of Liberation; antiwar; feminism; sterilization; reproduction; transmission; Palestinian-Israel conflict; Palestine; Israel; Persepolis; Ravished Armenia; gender; +",https://ocw.mit.edu/courses/history/21h-381j-women-and-war-in-the-20th-century-fall-2015 +21H.382,Capitalism in the Age of Revolution,Fall,2016,capitalism; revolution; monopoly; trading; stock market; financial crisis; Mississippi Bubble; John Law; slave trade; South Sea Bubble; French public finance; France; Persian Letters; Cato's letters; Dutch East India Company; Sovereignty; East Indies; French India Company; American Revolution; 1764 Currency Act; Boston Tea Party; Compagnie des Indes; French revolution; Paris bourse; Sciotomanie; Global Financial Origins of 1789; Maxmilien Robespierre;,https://ocw.mit.edu/courses/history/21h-382-capitalism-in-the-age-of-revolution-fall-2016 +21H.383,"Technology and the Global Economy, 1000-2000",Fall,2016,technology; global economy; medieval world systems; colonialism; empire building; patterns of inequality; climate change; economic growth; Middle Ages; medieval technology; Malthus; population homeostasis; industrial revolution; industrious revolution; bourgeois virtues; British Imperialism; slavery; resource curse; Great Divergence; ,https://ocw.mit.edu/courses/history/21h-383-technology-and-the-global-economy-1000-2000-fall-2016 +21H.390,Theories and Methods in the Study of History,Fall,2022,"history +methods +theory +writing history +historians +race +slavery +American universities +empirical context +A Midwife's Tale +slavery +race +Abraham Lincoln +Truman +Haiti +atomic bomb", +21H.402,The Making of a Roman Emperor,Fall,2005,"Roman; emperors; Augustus; Nero; art; architecture; coinage; media; literary sources; post-classical; perceptions; Suetonius; Tacitus; I, Claudius; Quo Vadis. +",https://ocw.mit.edu/courses/history/21h-402-the-making-of-a-roman-emperor-fall-2005 +21H.405J,The Ancient City,Spring,2005,archaeology; Greece; Rome; Greek; Roman; city; urban; architecture;political; social; economic; literary; evidence; space; Athens; Paestum; Rome; Pompeii; theoretical frameworks; ancient urbanism. ,https://ocw.mit.edu/courses/history/21h-405j-the-ancient-city-spring-2005 +21H.411,"History of Western Thought, 500-1300",Fall,2004,"western intellectual tradition, Roman Empire, High Middle Ages, Christian, paganism, Islam, Byzantine orthodoxy, heretical movements, Jews",https://ocw.mit.edu/courses/history/21h-411-history-of-western-thought-500-1300-fall-2004 +21H.418,"From Print to Digital: Technologies of the Word, 1450-Present",Fall,2005,"digitization, digital, printing, text, reading community, newspaper, online, library, Ong, Eisenstein, orality, literacy, chapbooks, typesetting, technology",https://ocw.mit.edu/courses/history/21h-418-from-print-to-digital-technologies-of-the-word-1450-present-fall-2005 +21H.421,Introduction to Environmental History,Spring,2011,"environmental history, climate change, ecology, human impact, ",https://ocw.mit.edu/courses/history/21h-421-introduction-to-environmental-history-spring-2011 +21H.433,The Age of Reason: Europe from the 17th to the Early 19th Centuries,Spring,2011,"history, history of intellectualism, reason, enlightenment, french revolution, history of science, isaac newton, decartes, art history",https://ocw.mit.edu/courses/history/21h-433-the-age-of-reason-europe-from-the-17th-to-the-early-19th-centuries-spring-2011 +21H.443,European Imperialism in the 19th and 20th Centuries,Spring,2006,"History; europe; european; imperialism; 19th century; 20th century; political; economic; cultural; Africa; India; Asia; imperial expansion; the rise of ""scientific"" racism; national identities; social class; gender;colonial ideologies; colonial rule; decolonization;globalization; post-colonial world.",https://ocw.mit.edu/courses/history/21h-443-european-imperialism-in-the-19th-and-20th-centuries-spring-2006 +21H.447,Nazi Germany and the Holocaust,Fall,2004,History; Nazi; Germany; Holocaust; National Socialism; Europe; media public; Adolf Hitler; ordinary; Germans; fascism; Western nations; Americans; Westerners;national; cultures.,https://ocw.mit.edu/courses/history/21h-447-nazi-germany-and-the-holocaust-fall-2004 +21H.504,East Asia in the World,Spring,2003,,https://ocw.mit.edu/courses/history/21h-504-east-asia-in-the-world-spring-2003 +21H.522,Japan in the Age of the Samurai: History and Film,Fall,2006,medieval japan; feudal japan; japanese history; japanese film; warring states period; ieyasu tokugawa; ukiyo-e; women in japan; samurai; bushido; haiku; noh; bunraku; zen; buddhism; shinto; christianity in japan; seppuku; akira kurosawa; japanese superstitions; japanese religions; japanese society,https://ocw.mit.edu/courses/history/21h-522-japan-in-the-age-of-the-samurai-history-and-film-fall-2006 +21H.560,Smashing the Iron Rice Bowl: Chinese East Asia,Fall,2004,China; rice; bowl; Chinese; East Asia; ordinary people; nineteenth century; twentieth century; personal narratives; primary sources; films; textbook; individual; family; lives; change; modern; readings; discussions; political events; daily; decisions; large-scale; social; transformation.,https://ocw.mit.edu/courses/history/21h-560-smashing-the-iron-rice-bowl-chinese-east-asia-fall-2004 +21H.571,"The Making of Modern South Asia, 2500 BCE–2005 CE",Fall,2006,regionalism; nationalism; partition; aryan; caste; ramayana; Mahabharata;persia; akbar; british empire; sepoy; resistance; reform; india; nationalism; gandhi; democracy; sri lanka; bangladesh; community; sexuality; gender; politics; pakistan; Indo-Gangetic,https://ocw.mit.edu/courses/history/21h-571-the-making-of-modern-south-asia-fall-2006 +21H.575J,Women in South Asia from 1800 to Present,Fall,2006,mother; daughter; in-law; wive; courtesan; concubine; divinities; devotee; social reform; india; education; religion; gender; law; colonial india; british empire; mother; good wife; harem; political participation; women's work; empower; birth control; gandhi; public health; activism; partition; dowry; rape; sati; civil code; religious fundamentalism; sexualty; popular culture; globalization; feminism; south asian women,https://ocw.mit.edu/courses/history/21h-575j-women-in-south-asia-from-1800-to-present-fall-2006 +21H.580,"From the Silk Road to the Great Game: China, Russia, and Central Eurasia",Fall,2003,history; silk road; China; Russia; Central Eurasia; mongolia; turkey; religion; trade; war; tradition; culture; soviet union; islam; buddhism; christianity; confucianism; marco polo; rabban sauma; film; travelogue; music; empire; nomad; conquest,https://ocw.mit.edu/courses/history/21h-580-from-the-silk-road-to-the-great-game-china-russia-and-central-eurasia-fall-2003 +21H.601,"Islam, the Middle East, and the West",Fall,2006,southwest asia; north africa; europe; united states; abbasid empire; mongol; christianity; ottoman; colonization; napoleon; egypt; hegemony; islam; middle east; east; west,https://ocw.mit.edu/courses/history/21h-601-islam-the-middle-east-and-the-west-fall-2006 +21H.802,"Modern Latin America, 1808-Present: Revolution, Dictatorship, Democracy",Spring,2005,"Latin America, wars of independence, global economy, dictatorship, democracy, Mexico, Cuba, Central America.",https://ocw.mit.edu/courses/history/21h-802-modern-latin-america-1808-present-revolution-dictatorship-democracy-spring-2005 +21H.907,Trials in History,Fall,2000,"Witchcraft, Show Trials, Great Terror, French Revolution, Bolshevik Revolution, Salem, Nuremberg, Galileo, Louis XVI, Marie-Antoinette, Joan of Arc, Socrates, Madame Caillaux, Lenin, Stalin, Bukharin, Scopes",https://ocw.mit.edu/courses/history/21h-907-trials-in-history-fall-2000 +21H.914,Jewish History from Biblical to Modern Times,Fall,2007,Five books of Moses; Genesis; Exodus; bible; Solomon; biblical Israel; Judaea; Rome; Maccabean Revolution; Roman hostility to the Jews; Maimonides; Medieval Jewiwsh Traders; Ashkenazi; Holocaust; facism; Polish Jewish; WWII; Auschwitz; Nazis; Night; Warsaw Ghetto; Anne Frank; Jewish econoimc elites; elite minority; Jewish immigrant; American Jew,https://ocw.mit.edu/courses/history/21h-914-jewish-history-from-biblical-to-modern-times-fall-2007 +21H.927J,The Economic History of Work and Family,Spring,2005,History; economics; work; family; women; men; pre-industrial; modern; societies; public; private;household; work spaces; map; consumption; goods; leisure; reproductive strategies; domestic; policy; work force; demographic; western Europe; Middle Ages; United States; non-western cultures.,https://ocw.mit.edu/courses/history/21h-927j-the-economic-history-of-work-and-family-spring-2005 +21H.931,Seminar in Historical Methods,Spring,2003,historical writing; politics; social; culture; demographics; biography; environment; comparative literature; film; fiction; memoir; methodology,https://ocw.mit.edu/courses/history/21h-931-seminar-in-historical-methods-spring-2003 +21H.931,Seminar in Historical Methods,Spring,2002,history; methodology; historian; analysis; oral history; comparative history; memory; narrative,https://ocw.mit.edu/courses/history/21h-931-seminar-in-historical-methods-spring-2002 +21H.931,Seminar in Historical Methods,Spring,2004,History; Historical; Methods; Sources; Narrative; Analytic;,https://ocw.mit.edu/courses/history/21h-931-seminar-in-historical-methods-spring-2004 +21H.952J,Readings in American History Since 1877,Fall,2003,united states; history; contemporary; post-reconstruction; literature; twentiety century; nineteen century; immigration; urbanization; populism; progressivism; modern american culture; depression; world war; new deal; politics,https://ocw.mit.edu/courses/history/21h-952j-readings-in-american-history-since-1877-fall-2003 +21H.968J,"Nature, Environment, and Empire",Spring,2010,imperialism; colonization; global exploration; environment; nature; natural history; domestic animals; Charles Darwin; James Cook; ,https://ocw.mit.edu/courses/history/21h-968j-nature-environment-and-empire-spring-2010 +21H.983,Gender,Spring,2017,"gender +sexuality +race +imperialism +welfare state +war +feminism +politics +masculinity +manhood +genocide +rape +sexual violence + +",https://ocw.mit.edu/courses/history/21h-983-gender-spring-2017 +21H.983J,Gender: Historical Perspectives,Fall,2020,"gender +Susan B. Anthony +suffrage +activism +Ida B. Wells +feminism +Rochester Fifteen +sister wives +voting +Alice Stone Blackwell +race +climate change",https://ocw.mit.edu/courses/history/21h-983j-gender-historical-perspectives-fall-2020 +21H.991,Theories and Methods in the Study of History,Fall,2010,"primary sources; women's studies, gender history, Industrial Revolution, media studies, visual culture, environmental history, postmodernism, microhistory, digital humanities, national history, borders, frontier, global history, imperialism, historiography, analytical framework",https://ocw.mit.edu/courses/history/21h-991-theories-and-methods-in-the-study-of-history-fall-2010 +21H.991,Theories and Methods in the Study of History,Fall,2014,"primary sources, gender history, Industrial Revolution, media studies, visual culture, environmental history, postmodernism, microhistory, digital humanities, national history, borders, frontier, global history, imperialism, historiography, analytical framework, agrarian history, historical demography, European history, American history, Asian history, maps, African history",https://ocw.mit.edu/courses/history/21h-991-theories-and-methods-in-the-study-of-history-fall-2014 +21H.S01,Food in American History,Fall,2014,"food, American history, industrialization, globalization, slavery, plantations, farms, labor, processing, preservation, economy, chains, nutrition, nutritional science, food restrictions, surplus, famine, cooking, restaurants, supermarkets, fast food, slow food, production, consumption",https://ocw.mit.edu/courses/history/21h-s01-food-in-american-history-fall-2014 +21L.000J,Writing About Literature,Fall,2010,Rethinking texts and genres; Mary Shelley’s rewrite of Milton’s Paradise Lost; German fairy tales; Scientific discovery tales; Frankenstein (1831); Gothic novella in Benito Cereno (1856); Alison Bechdel’s rewriting of The Importance of Being Earnest (1895); Fun Home (2006).,https://ocw.mit.edu/courses/literature/21l-000j-writing-about-literature-fall-2010 +21L.000J,Writing About Literature: Writing About Love,Fall,2015,"love, writing, romance, fiction, novels, short stories, poetry, music videos, theatre, racial love, gendered love, queer love, sarcasm, humor",https://ocw.mit.edu/courses/literature/21l-000j-writing-about-literature-writing-about-love-fall-2015 +21L.001,Foundations of Western Culture: Homer to Dante,Fall,2008,"western; culture; literature; judeo-christian; philosophy; religion; greece; classic; history; civilization; Homer; Aeschylus; Sophocles; Euripides; Thucydides; Plato; Aristotle; Saint Augustine; Dante; bible; world; westernization; +western religion; +globalization; the enlightenment; industrial revolution; civilization; European; Graeco-Roman; ethical values; traditional customs; political systems; technologies; Renaissance; legal; Scientific Revolution; rational arguments; equality + +",https://ocw.mit.edu/courses/literature/21l-001-foundations-of-western-culture-homer-to-dante-fall-2008 +21L.001X,Foundations of World Culture I: World Civilizations and Texts,Fall,2011,philosophy; religion; human society; international classical literature; great books; classics; world literature,https://ocw.mit.edu/courses/literature/21l-001x-foundations-of-world-culture-i-world-civilizations-and-texts-fall-2011 +21L.002,Foundations of Western Culture II,Fall,2002,"secular humanism, literature appreciation, literature analysis, political theory, oratory, autobiography, poetry, science fiction, war, Renaissance, Machiavelli, Cortés, Sahagún, European age of revolutions, Voltaire, Blake, Williams, Civil War, abolition, Stowe, Whitman, Lincoln, Lowell, Walcott, Ondaatje, O.S. Card",https://ocw.mit.edu/courses/literature/21l-002-foundations-of-western-culture-ii-fall-2002 +21L.002,Foundations of Western Culture: The Making of the Modern World ,Spring,2010,Western culture; foundations; modernism; texts; literary; philosophical; sociological; secular humanism; human events; individual; social; communal purpose; common; cultural; possession; ancient; modern world; discussion; action; characters; voice; form.,https://ocw.mit.edu/courses/literature/21l-002-foundations-of-western-culture-the-making-of-the-modern-world-spring-2010 +21L.002-2,Foundations of Western Culture II: Renaissance to Modernity,Spring,2003,"literature, culture, philosophy, ethics, theory, society, politics, religion, science, west, machiavelli, more, swift, hobbes, shakespeare, rousseau, wordsworth, kant, austen, nietzsche, shaw, balzac",https://ocw.mit.edu/courses/literature/21l-002-2-foundations-of-western-culture-ii-renaissance-to-modernity-spring-2003 +21L.002X,Foundations of World Culture II: World Literatures and Texts,Spring,2012,"human culture, established traditions, religious beliefs, monarchical rule, world literatures.",https://ocw.mit.edu/courses/literature/21l-002x-foundations-of-world-culture-ii-world-literatures-and-texts-spring-2012 +21L.003,Introduction to Fiction,Spring,2002,Fiction; Writing; Austen; Dickens; Conrad; Woolfe; Charters; literature; novel; narrative; verbal text; culture,https://ocw.mit.edu/courses/literature/21l-003-introduction-to-fiction-spring-2002 +21L.003,Introduction to Fiction,Fall,2003,literature; fiction; reading; Jane Austen; Mary Shelley; Herman Melville; Kate Chopin; Leo Tolstoy; Virginia Woolf; Nora Okja Keller; Oscar Wilde; Kate Chopin,https://ocw.mit.edu/courses/literature/21l-003-introduction-to-fiction-fall-2003 +21L.003,Reading Fiction: Imaginary Journeys,Fall,2015,Fiction; Writing; literature; novel; reading; imaginary journeys; Homer; Odyssey; Chretien de Troyes; Arthur; Knight of the Cart; Cervantes; Don Quixote; Jonathan Swift; Gulliver's Travels; Mary Shelley; Virginia Woolf; Jospeh Conrad; heart of darkness; to the lighthouse; frankenstein; analytical writing; revision; oral presentation,https://ocw.mit.edu/courses/literature/21l-003-reading-fiction-imaginary-journeys-fall-2015 +21L.003-1,Reading Fiction: Dysfunctional Families,Spring,2007,"mary shelley; nathaniel hawthorne; E. M. Forster; toni morrison, arundhati roy; james baldwin; virginia woolf; Cristina Garcia; Flannery O’Connor; William Faulkner",https://ocw.mit.edu/courses/literature/21l-003-1-reading-fiction-dysfunctional-families-spring-2007 +21L.003-2,Reading Fiction,Spring,2007,novel; short story; the city in literature; structure; narrative voice; character development; novelistic experimentation; historical context; political context;reader response,https://ocw.mit.edu/courses/literature/21l-003-2-reading-fiction-spring-2007 +21L.003-2,Reading Fiction,Fall,2006,jane austen; sir walter scott; mary shelley; frankenstein; herman melville; typee; gustave flaubert; kate chopin; virginia woolf; alistair macleod; northanger abbey; the highland widow; a simple heart; the awakening; to the lighthouse; no great mischief,https://ocw.mit.edu/courses/literature/21l-003-2-reading-fiction-fall-2006 +21L.004,Major Poets,Fall,2001,Literature; poetry; poets; English; Renaissance; modern; Shakespeare; sonnets; stanza-form;figurative language; metaphor; metonymy; meter; accent; duration; apostrophe; assonance; enjambment; chiasmus; hyperbole; litotes; Donne; metaphysical; Milton; Pope; Wordsworth; Keats; Yeats; Eliot; Larkin. ,https://ocw.mit.edu/courses/literature/21l-004-major-poets-fall-2001 +21L.004,Major Poets,Fall,2005,Literature; poetry; poets; English; Renaissance; modern; Shakespeare; sonnets; stanza-form;figurative language; metaphor; metonymy; meter; accent; duration; apostrophe; assonance; enjambment; chiasmus; hyperbole; litotes; Donne; metaphysical; Milton; Pope; Wordsworth; Keats; Yeats; Eliot; Larkin. ,https://ocw.mit.edu/courses/literature/21l-004-major-poets-fall-2005 +21L.004,Reading Poetry,Spring,2009,"Literature; poetry; poets; English; Renaissance; modern; Shakespeare; sonnets; stanza-form;figurative language; metaphor; metonymy; meter; accent; duration; apostrophe; assonance; enjambment; chiasmus; hyperbole; litotes; Donne; metaphysical; literary art, language, aethetic, meaning, poetic drama, hymns, lyrics, history, rhetoric, song, drama, comedy, verse, form, rhyme, prose, assonance, musical, ambiguity, symbolism, world, irony, style, stylistic, poetic diction, metaphor, simile, connections, cultures, genres, elements of poetry, sonnets, lines, stanzas, genres, English love sonnets, sound, figuration, literary tradition, +conduct manuals, narrative poems, pornographic poems, lyric poetry; poetic language; figurative language; literary theory; history; early modern; renaissance; +early twentieth-century; Yeats, T.S. Eliot; Wallace Stevens; Elizabeth Bishop, poems; think; images; poet; irrational; art; processes of mind; reason; mind; thought; British; centuries; +lyric; ",https://ocw.mit.edu/courses/literature/21l-004-reading-poetry-spring-2009 +21L.004,Reading Poetry,Spring,2018,"literary analysis +poetic form +20th and 21st century +American writers +reading poetry +text annotation +close reading +translations +poetry +literature +language",https://ocw.mit.edu/courses/literature/21l-004-reading-poetry-spring-2018 +21L.005,Introduction to Drama,Fall,2004,Drama; literary arts; storytelling; poetry; live performance; ritual; entertainment; communities; social norms; audiences; plays; dramatic structure; performing arts; writing; discussion; writer; speaker; cultures; tools; fiction; ethical; historical; political; artistic; questions; creativity; self-awareness; communicate; theater.,https://ocw.mit.edu/courses/literature/21l-005-introduction-to-drama-fall-2004 +21L.005,Introduction to Drama,Fall,2016,"drama; Brecht; modern theatre; Octoroon; Elam; Cixous; Hroswitha; Boucicault; Trifles; Aristotle; Poetics; Sophocles; Oedipus; Euripides; Medea; Dulcitius; York Crucifixion; Kan'ami, Matsukaze; Japan; Zeami; Calderon; Life is a Dream; A Doll's House; Modern Europe; Churchill; Cloud Nine; Street Scene; Treadwell; Machinal; Fires in the Mirror; Anna Deavere Smith; Gao; The Other Shore; realism; semiotics; Western Origins; England; America; performance art; China;",https://ocw.mit.edu/courses/literature/21l-005-introduction-to-drama-fall-2016 +21L.006,American Literature,Spring,2013,"novel, literature, poetry, America, American, independence, Melville, Twain, Morrison, realism, satire, history, biography, Emerson, Hawthorne, Melville, Thoreau, Stowe, Whitman, Dickinson, Wharton, Hurston, Rowlandson, Douglass, ",https://ocw.mit.edu/courses/literature/21l-006-american-literature-spring-2013 +21L.007,World Literatures: Travel Writing,Fall,2008,"world, travel; writing; columbus; literature; north america; french; history; europe; caribbean; brazil; modern; religion; ethnicity; culture; shakespeare; defoe; rowlandson; walcott; montaigne; de lery; coetzee; essay; narrative; novel; poetry; drama; film; report; +contact zone; exploration; colonization; race; gender; language; power; poetry; prose; Africa; South Asia; literary conventions; passport pouch, daily max, little extra research, onward travel, current political conditions, vaccination against yellow fever, regional profiles, effective immunity, onward ticket; New Zealand, South America, Central America, Southeast Asia, North Africa, Southeast Europe, Indian Ocean, South Pacific, Western Europe, West Africa, New York, Eastern Europe, Hong Kong, Northern Asia, Middle East, Southern Africa, South Africa, Sri Lanka, Costa Rica, The Indian Subcontinent, New Orleans, Arctic Circle, Art Deco, World Heritage, British Columbia",https://ocw.mit.edu/courses/literature/21l-007-world-literatures-travel-writing-fall-2008 +21L.007J,After Columbus,Fall,2003,columbus; literature; north america; french; history; europe; caribbean; brazil; modern; religion; ethnicity; culture; shakespeare; defoe; rowlandson; walcott; montaigne; de lery; coetzee; essay; narrative; novel; poetry; drama; film; report,https://ocw.mit.edu/courses/literature/21l-007j-after-columbus-fall-2003 +21L.009,Shakespeare,Spring,2004,literature; william shakespeare; playwright; performance; theater; literary analysis; film; A Midsummer Night's Dream; Much Ado about Nothing; Hamlet; The First Part of King Henry the Fourth; Henry the Fifth; Othello; King Lear; The Tempest,https://ocw.mit.edu/courses/literature/21l-009-shakespeare-spring-2004 +21L.010,Writing with Shakespeare,Fall,2010,"William Shakespeare; Study of Rhetoric; Thomas Heywood; Tragedies; Comedies; Histories; Pastorals; Dialectic; Rhetoric; Ethic; Metaphysical Lectures; Argumentation; +Theater. +",https://ocw.mit.edu/courses/literature/21l-010-writing-with-shakespeare-fall-2010 +21L.011,The Film Experience,Fall,2013,"film history; American culture; Fred Ott; early film; D.W. Griffith; Buster Keaton; Charlie Chaplin; Renoir, Ford; Hitchcock; Altman, DeSica; narrative; television; visual communication; storytelling; media; hollywood; cinema; movie;",https://ocw.mit.edu/courses/literature/21l-011-the-film-experience-fall-2013 +21L.012,Forms of Western Narrative,Spring,2004,literature; western; narrative; storytelling; media; epic; novel; performance; film; video games; ideology; psychology; technology; culture; literary theory; anthropology; communication; Homer; Sophocles; Herodotus; Christian evangelists; Marie de France; Cervantes; La Clos; Poe; Lang; Cocteau; Disney; Pixar; Maxis; Electronic Arts; Propp; Bakhtin; Girard; Freud; Marx,https://ocw.mit.edu/courses/literature/21l-012-forms-of-western-narrative-spring-2004 +21L.012,Forms of Western Narrative,Fall,2007,western narrative; narrative; fiction; Homer; Odyssey; Arthurian Romances; Miguel de Cervantes; Don Quixote; Brothers Grimm; Grimm; Mary Shelley; Frankenstein; Joseph Conrad; Heart of Darkness,https://ocw.mit.edu/courses/literature/21l-012-forms-of-western-narrative-fall-2007 +21L.015,Introduction to Media Studies,Fall,2003,literature; comparative mass media; communication; modern culture; social values; politics; radio; television; film; print; digital techonology; history; storytelling; advertising; oral culture; photography,https://ocw.mit.edu/courses/literature/21l-015-introduction-to-media-studies-fall-2003 +21L.015,Introduction to Media Studies,Fall,2005,"Comparative Media Studies; global multimedia environment; literate; critical; consumers; producers; interdisciplinary; comparative; historical; lens, the course defines oral; print; performance; photographic; broadcast; cinematic; digital; cultural; forms; practices; mediated communication; functions; society; network culture; media convergence; Intellectual Property; peer2peer authoring; blogging; game modification.",https://ocw.mit.edu/courses/literature/21l-015-introduction-to-media-studies-fall-2005 +21L.016,"Learning from the Past: Drama, Science, Performance",Spring,2009,"history; art and science; art vs. science; history of science; religion; natural philosophy; mathematics; literature; church;cosmology; physics; philosphy; astronomy; alchemy; chemistry; plays; theater history; cultural studies; Shakespeare; Ford; Tate; Behn, Francis Bacon; Burton; Hobbes; Boyle; 17th century; England; Scotland; english history; scottish history; Britain; Charles I; Charles II; Cromwell; Jacobean era; Caroline era; English Restoration; House of Stuart; English Civil War; Early Modern English",https://ocw.mit.edu/courses/literature/21l-016-learning-from-the-past-drama-science-performance-spring-2009 +21L.017,The Art of the Probable: Literature and Probability,Spring,2008,philosophy; scientific thought; scientific method; mathematics; chance; risk; statistics; history of science; quantitative measurement; chaos; uncertainty; induction; deduction; inference; luck; gambling; cause and effect; chance; games of chance; fate; prediction; rationality; decision making; religion; randomness; knowledge; fact; human nature; mind; senses; intelligence; metaphor; Darwinism; ,https://ocw.mit.edu/courses/literature/21l-017-the-art-of-the-probable-literature-and-probability-spring-2008 +21L.019,Introduction to European and Latin American Fiction: Great Books on the Page and on the Screen,Spring,2017,"European fiction, Latin American fiction, film, culture, language, history, geography, literature, writing, creative writing",https://ocw.mit.edu/courses/literature/21l-019-introduction-to-european-and-latin-american-fiction-great-books-on-the-page-and-on-the-screen-spring-2017 +21L.020J,"Globalization: The Good, the Bad, and the In-Between",Fall,2016,"global economy, labor market, colonization, empire, trade, world music, cuisine, sports, sex work, human trafficking, architecture, cultural appropriation, exotification, authenticity, immigration, assimilation, anime, capitalism, ISIS, slavery, ebola, infectious diseases, NAFTA",https://ocw.mit.edu/courses/literature/21l-020j-globalization-the-good-the-bad-and-the-in-between-fall-2016 +21L.021,Comedy,Spring,2016,"comedy, humor, funny, laughter, comic, culture, jokes, Greek humorists, Aristophanes, Plautus, satire, farce, slapstick, love, tragedy, parody, screwball, physical comedy, cultural ideologies, social identities, gender, body, politics, philosophy, Mark Twain, Freud, Shakespeare",https://ocw.mit.edu/courses/literature/21l-021-comedy-spring-2016 +21L.021,Comedy,Spring,2022,, +21L.310,Bestsellers: Detective Fiction,Fall,2006,detective fiction; 19th-century; materialist puzzles; metaphysical meditations; elegant whimsy,https://ocw.mit.edu/courses/literature/21l-310-bestsellers-detective-fiction-fall-2006 +21L.310,Bestsellers: The Memoir,Spring,2010,"life, memory, memoirs, biography, autobiography, Tobias Wolff, Barack Obama, Edwidge Danticat, Brother, Ayaan Hirsi Ali, Alison Bechdel",https://ocw.mit.edu/courses/literature/21l-310-bestsellers-the-memoir-spring-2010 +21L.310,Bestsellers: Out for the Count,Fall,2018,"Lord Byron +Bram Stoker +Dracula +John Polidori +folklore +vampire +literary trope +literary tradition +genre fiction",https://ocw.mit.edu/courses/literature/21l-310-bestsellers-out-for-the-count-fall-2018 +21L.315,Prizewinners,Spring,2007,Seamus Heaney; Derek Walcott; Beowulf; Omeros; poetry; epic; translation; Northern Ireland; Caribbean; Nobel Prize literature; Opened Ground; Collected Poems; former British colonies,https://ocw.mit.edu/courses/literature/21l-315-prizewinners-spring-2007 +21L.315,Prizewinners: Nobelistas,Spring,2014,Toni Morrison; Herta Mueller; Alice Munro; Nobel Prize literature; Doris Lessing; Nadine Gordimer; Women Nobel Prize winner; Opened Ground; Collected Poems; former British colonies,https://ocw.mit.edu/courses/literature/21l-315-prizewinners-nobelistas-spring-2014 +21L.325,Small Wonders: Staying Alive,Spring,2007,prose fiction; stories; novellas; journalism; henry james; william faulkner; eudora welty; primo levi; anne charters; italo calvino,https://ocw.mit.edu/courses/literature/21l-325-small-wonders-staying-alive-spring-2007 +21L.325,"Small Wonders: Media, Modernity, and the Moment: Experiments in Time ",Fall,2010,"media; modernity; moment; Jonathan Swift; William Wordsworth; John Keats; Virginia Woolf; short texts, short visual works, short films.",https://ocw.mit.edu/courses/literature/21l-325-small-wonders-media-modernity-and-the-moment-experiments-in-time-fall-2010 +21L.420,Literary Studies: The Legacy of England,Spring,2006,"English literature across genre and historical period; writing; relationships between literary themes, forms, and conventions; Renaissance lyrics, Enlightenment satire, and modernist short stories; ",https://ocw.mit.edu/courses/literature/21l-420-literary-studies-the-legacy-of-england-spring-2006 +21L.421,Comedy,Spring,2008,humor; drama; narrative; genre; literary history; irony; comic; slapstick; satire; wit; trickster; allegory; transgression; social commentary; political commentary; William Shakespeare; Aristophanes; Moliere; Aphra Behn; Jane Austen; Mark Twain; Oscar Wilde; Italo Calvino; Alison Bechdel,https://ocw.mit.edu/courses/literature/21l-421-comedy-spring-2008 +21L.422,Tragedy,Fall,2002,"literature, tragedy, western literature, critcal thought, ethics, ancient history, modern, war, sophocles, euripides, plato, shakespeare, balzac, melville, conrad, ibsen, fitzgerals, dinesen, camus, literary theory, nietzsche, coppolla, power, scapegoat, hero",https://ocw.mit.edu/courses/literature/21l-422-tragedy-fall-2002 +21L.423J,Introduction to Anglo-American Folk Music,Fall,2005,"music production, music transmission, music preservation, folk music, British Isles, North America, seventeenth century, eighteenth century, 17th century, 18th century, folk revival, balladry, fiddle styles, Lomax, ballad, anglo-scottish ballads, fiddle, the great confluence, appalachia, ",https://ocw.mit.edu/courses/literature/21l-423j-introduction-to-anglo-american-folk-music-fall-2005 +21L.430,Popular Narrative: Masterminds,Fall,2004,Mastering; mastery; narrative; popular culture; media; convergence; film; television; spies; detectives; intellect; magician; scientists; graduate students; journals.,https://ocw.mit.edu/courses/literature/21l-430-popular-narrative-masterminds-fall-2004 +21L.430,"Popular Culture and Narrative: Literature, Comics, and Culture",Fall,2010,"Popular Culture and Narrative; Literature;Comics; Culture; Literary Fiction; Contemporary +Graphic Narratives; broader cultural concerns; contemporary graphic narratives. + +",https://ocw.mit.edu/courses/literature/21l-430-popular-culture-and-narrative-literature-comics-and-culture-fall-2010 +21L.430,Popular Culture and Narrative: Serial Storytelling,Spring,2013,"serial, storytelling, narrative, seriality, Tennyson, memoriam, wire, David Simon, Rembrandt, self-portraits, blackbird, Wallace Stevens, Omar, Auden, Goya, Disasters of War, War, Hogarth, Superman, Myth of Superman, Myth of Sisyphus, Myth of Fingerprints, photograpjy, Muybridge, Edweard, Edweird, Leland Stanford, Camp Stanford, Duchamp, Nude Descending, Nude Ascending, Nude Suspended, journalism, animals eating people, Orwell, Art is Propaganda, McLuhan, Elegy, Mourning, Morte D'Arthur, Morte D'Author, Epic, Dickens, Pickwick, Bleak House, Sherlock, Holmes, Slaughterhouse, Literature, Murder, English Murder, Portlandia, Battlestar Galactica, Spoiler Alert, Downton Abbey, Downtown Abby, social game, anime, chaplin, gold rush, comics, remediation, mediation, dismediation, transmediation, procedural",https://ocw.mit.edu/courses/literature/21l-430-popular-culture-and-narrative-serial-storytelling-spring-2013 +21L.430,Popular Culture and Narrative: Use and Abuse of the Fairy Tale,Fall,2015,"fairy tale, brothers Grimm, folktale, children's literature, disney, mass culture, Celtic, Freud, Jung, Jungian theory, Hans Christian Andersen, Charles Dickens, Philip K. Dick, modern fairy tales, classic fairy tales",https://ocw.mit.edu/courses/literature/21l-430-popular-culture-and-narrative-use-and-abuse-of-the-fairy-tale-fall-2015 +21L.432,Understanding Television,Spring,2003,"TV, television, systems of representation, storytelling, myth, cultural practice, anthropology, literature, cinematogaphy, prime-time, commercial broadcasting, modern media, mass media, media theory, cultural interpretation",https://ocw.mit.edu/courses/literature/21l-432-understanding-television-spring-2003 +21L.435,"Shakespeare, Film and Media",Fall,2002,,https://ocw.mit.edu/courses/literature/21l-435-shakespeare-film-and-media-fall-2002 +21L.448J,Darwin and Design,Fall,2003,"Origin of Species, Darwin, intelligent agency, literature, speculative thought, eighteenth century, feedback mechanism, artificial intelligence, Hume, Voltaire, Malthus, Darwin, Butler, Hardy, H.G. Wells, Freud",https://ocw.mit.edu/courses/literature/21l-448j-darwin-and-design-fall-2003 +21L.448J,Darwin and Design,Fall,2010,"Origin of Species, Darwin, intelligent agency, literature, speculative thought, eighteenth century, feedback mechanism, artificial intelligence, Hume, Voltaire, Malthus, Butler, Hardy, H.G. Wells, Freud, Evolution, +Modern Western philosophy, +Philosophy of science, +Religion, Science, +Life Sciences, Evolution, +Philosophy & Social Aspects, +History, Intelligent design,individual species, complexity, development, God. theory of evolution, science, theological explanation, universe, creatures, faith, and theology, purpose of evolution, Design, models, adaptation.",https://ocw.mit.edu/courses/literature/21l-448j-darwin-and-design-fall-2010 +21L.449,End of Nature,Spring,2002,"literature, philosophy, religion, western, politics, nature, history, ethics, industrial culture, aristotle, defoe, hume, rousseau, wordsworth, thoreau, darwon, wells, faulkner, early modern, contemporary",https://ocw.mit.edu/courses/literature/21l-449-end-of-nature-spring-2002 +21L.450,Literature and Ethical Values,Fall,2002,"ethics, values, literature, morality, justice, virtue, literary theory, responsibility, politics, plato, aristotle, machiavelli, hobbes, sophocles, euripides, shapkespeare, swift, ibsen, shaw, dostoyevsky, conrad, bible",https://ocw.mit.edu/courses/literature/21l-450-literature-and-ethical-values-fall-2002 +21L.451,Introduction to Literary Theory ,Fall,2014,"literary theory; strategies of reading; literary texts developed in the twentieth century; theoretical paradigms; literary interpretation; interpretative approach; film; literature, freud, philosophy, sophocles, bronte, foucault, structuralism, deconstruction, psychoanalysis",https://ocw.mit.edu/courses/literature/21l-451-introduction-to-literary-theory-fall-2014 +21L.455,Classical Literature: The Golden Age of Augustan Rome,Fall,2004,classical roman literature; augustan rome; augustus caesar; golden age; republic; imperial; western europe; philosophy; society; aesthetic; politics; latin; history; culture; art; cultural context; textuality; empire; public; private; class; gender; pleasure; Caesar; Cicero; Catullus; Livy; Virgil; Horace; Ovid; Cassius Dio,https://ocw.mit.edu/courses/literature/21l-455-classical-literature-the-golden-age-of-augustan-rome-fall-2004 +21L.458,The Bible,Spring,2007,bible; genesis; exodus; leviticus; numbers; deuteronomy; samuel; kings; isaiah; job; daniel; synoptic gospels; mark; matthew; luke; john; acts of the apostles; pauline epistles; galatians; romans; revelation; god; lord; jesus; literary technique; myth; history; genealogy; poetry prophecy; biography,https://ocw.mit.edu/courses/literature/21l-458-the-bible-spring-2007 +21L.460,Medieval Literature: Medieval Women Writers,Spring,2004,medieval europe; literature; late antiquity; fifteenth century; 15th; culture; society; women; history; roman empire; religion; literacy; chivalry; scholasticism; university; education; heretics; nationalism; class; hierarchy; Hildegard of Bingen; Heloise of Paris; Marie de France; Christine de Pizan; Joan of Arc; Margery Kempe,https://ocw.mit.edu/courses/literature/21l-460-medieval-literature-medieval-women-writers-spring-2004 +21L.460,Medieval Literature: Medieval Male Writers,Spring,2005,Literature; masterworks; Middle Ages; writing; vernacular; discourse of love; discipline; self; personal; political; aspirations; society; ideal forms; social organization; religion; life; Western literature; Divine Comedy; Decameron; Troilus and Criseyde; troubadour tradition; dolce stil nuovo. ,https://ocw.mit.edu/courses/literature/21l-460-medieval-literature-dante-boccaccio-chaucer-spring-2005 +21L.460,Medieval Literature: Legends of Arthur,Fall,2013,Literature; masterworks; Middle Ages; writing; Arthurian; King Arthur; Lancelot; knights; round table; holy grail; Merlin; Romance of Arthur; Chretien de Troyes; Marie de France; Robert de Boron; Morte Darthur; Malory,https://ocw.mit.edu/courses/literature/21l-460-medieval-literature-legends-of-arthur-fall-2013 +21L.460,"Medieval Literature: Love, Sex, and Marriage",Spring,2015,Medieval Europe; literature; late antiquity; society; history; love; sex; marriage; romance; religion; Arthur; Chaucer; Canterbury Tales; gender; sexuality; Middle Ages; culture,https://ocw.mit.edu/courses/literature/21l-460-medieval-literature-love-sex-and-marriage-spring-2015 +21L.463,Renaissance Literature ,Fall,2008,"Renaissance, literature, Middle Ages, Professor Vinaver, Middle English, Primum Mobile, House of Busirane, Sawles Warde, Natalis Comes, Unmoved Mover, Colin Clouts Come Home Againe, Eniautos Daimon, Piers Plowman, Prince Arthur, Queen Elizabeth, Round Table, Sir Orfeo, heauy plight, neuer wight, knight aliue, wyld man, liuing wight, first aduenture, lining wight, more increast, straunger knight, vncouth sight, vtmost date, saluage man, euerlasting fame, euill plight, straunge aduentures, haue rent, deare besought, nigh approcht, euery ioynt, yron man, braue knights, faire damzell, forrest wyde, euery vaine, heauens hight, Sir Guyon, Sir Calidore, Prince Arthur, Sir Satyrane, Briton Prince, Faerie Queene, Sir Calepine, Squire of Dames, Sir Paridell, Saint George, Sir Triamond, Which Cambell, Whom Calidore.",https://ocw.mit.edu/courses/literature/21l-463-renaissance-literature-fall-2008 +21L.470,Eighteenth-Century Literature - Gods and Monsters: Versions of the Self in 18th-C Britain,Spring,2003,"lyric poetry, novel, +diary entries, philosophical prose, political essays,Alexander Pope, Jonathan Swift, Mary Astell, David Hume, +Laurence Sterne, Olaudah Equiano, Mary Hays, Mary Shelley, construction of gender +identities, imagination",https://ocw.mit.edu/courses/literature/21l-470-eighteenth-century-literature-versions-of-the-self-in-18th-c-britain-spring-2003 +21L.471,Major English Novels: Reading Romantic Fiction,Spring,2002,"British Romanticism, prose, fiction, novel, social/philosophical problem novels, sentiment, sensibility, historical novel, French Revolution, Napoleonic wars, industrial revolution, William Godwin, Maria Edgeworth, Jane Austen, Mary Shelley, Walter Scott",https://ocw.mit.edu/courses/literature/21l-471-major-english-novels-reading-romantic-fiction-spring-2002 +21L.471,Major English Novels,Spring,2004,english literature; novel; 18th century; 19th century; 20th century; eighteenth; nineteenth; twentieth; modernity; narrative; social criticism; realism; romance; romantic; subjectivity; Jane Austen; Emily Brontë; Charles Dickens; George Eliot; James Joyce; Salman Rushdie,https://ocw.mit.edu/courses/literature/21l-471-major-english-novels-spring-2004 +21L.471,Major English Novels,Spring,2009,novel; literary genre; narrator; daniel defoe; moll flanders; frances burney; evelina; jane austen; pride and prejudice; elizabeth gaskell; mary barton; george eliot; adam bede; mary elizabeth braddon; lady audley's secret; thomas hardy; tess of the d'urbervilles; virginia woolf; mrs. dalloway; essay,https://ocw.mit.edu/courses/literature/21l-471-major-english-novels-spring-2009 +21L.472,Major European Novels,Fall,2008,"Literature; great books; literary canon; European literature; novel; history; fiction; cervantes; balzac, stendahl, flaubert, dostoyevsky, tolstoy;realistic tradition; romantic; naturalism;",https://ocw.mit.edu/courses/literature/21l-472-major-european-novels-fall-2008 +21L.476,Romantic Poetry,Spring,2005,"Close readings of the major British Romantic poets (Blake, Wordsworth, Coleridge, Byron, Scott, Shelley, and Keats) and important fiction writers (Mary Shelley and Walter Scott). Attention given to literary and historical contexts",https://ocw.mit.edu/courses/literature/21l-476-romantic-poetry-spring-2005 +21L.481,Victorian Literature and Culture,Spring,2003,english literature; victorian; culture; fiction; nonfiction; poetry; queen victoria; charles dickens; bronte; lewis carroll; george eliot; robert browning; oscar wilde; arthur conan doyle; rudyard kipling; alfred lord tennyson; urbanization; class conflict; darwin; religion; imperialism; bureaucracy; british,https://ocw.mit.edu/courses/literature/21l-481-victorian-literature-and-culture-spring-2003 +21L.485,Modern Fiction,Fall,2015,"Thomas Hardy, Jude the Obscure, Joseph Conrad, Lord Jim, Rudyard Kipling, Kim, Ford Madox Ford, The Good Soldier, James Joyce, A Portrait of the Artist as a Young Man, E.M. Forster, A Passage to India, Virginia Woolf, To the Lighthouse",https://ocw.mit.edu/courses/literature/21l-485-modern-fiction-fall-2015 +21L.486,Modern Drama,Spring,2006,"modern plays, Shaw, Pirandello, Beckett, Brecht, Williams, Soyinka, Hwang, Churchill, Wilson, Frayn, Stoppard, Deveare Smith, Kushner, performance, sociopolitical, aesthetic contexts, theater, multimedia.",https://ocw.mit.edu/courses/literature/21l-486-modern-drama-spring-2006 +21L.487,Modern Poetry,Spring,2002,Modern; Poetry; Poem; Woolf; T. S. Eliot; Tennyson; Owen; Pound; Yeats; Hughes; Toomer; Literature,https://ocw.mit.edu/courses/literature/21l-487-modern-poetry-spring-2002 +21L.488,Contemporary Literature,Spring,2003,"contemporary literature, Irish literature, fiction, drama, poetry, Joyce, Yeats, Bolger, Beckett, O'Brien, Trevor, Lavin, McGahern, Dorcey, Doyle, Berkeley, Friel, Heaney, Crotty, Boland, Dhomhnaill, Meehan, Carr",https://ocw.mit.edu/courses/literature/21l-488-contemporary-literature-spring-2003 +21L.488,Contemporary Literature: British Novels Now,Spring,2007,"Great Britain; United Kingdom; empire; Guardian; commonwealth novels; J.M. Coetzee; Kazuo Ishiguro; Martin Amis; Margaret Atwood, Yann Martel; Zadie Smith; immigration; multicultural metropolis; political devolution; post-industrialism; European Union; New American Empire.",https://ocw.mit.edu/courses/literature/21l-488-contemporary-literature-british-novels-now-spring-2007 +21L.488,"Contemporary Literature: Literature, Development, and Human Rights",Spring,2008,developing world; third world; poverty; industrialization; economic development; human rights; global human rights; global issues; global development; literary perspective; Jamaica Kincaid; JG Ballard; John le Carre; Rohinton Mistry; World Bank; National Geographic,https://ocw.mit.edu/courses/literature/21l-488-contemporary-literature-literature-development-and-human-rights-spring-2008 +21L.488,Contemporary Literature: Street Haunting in the Global City,Spring,2018,"re-reading +urban exploration +contemporary literature +literary analysis +exploration +contemporary city +novels +critical lenses +creative project",https://ocw.mit.edu/courses/literature/21l-488-contemporary-literature-street-haunting-in-the-global-city-spring-2018 +21L.501,The American Novel,Fall,2006,nathaniel hawthorne; harriet beecher stowe; henry james; william faulkner; maxine hong kingston; cormac mccarthy; toni morrison; louise erdrich; philip roth; edward p. jones,https://ocw.mit.edu/courses/literature/21l-501-the-american-novel-fall-2006 +21L.501,The American Novel: Stranger and Stranger,Spring,2013,"novel, literature, America, American, strangers, maps, timeline, maps, genealogy, literary analysis, fiction, Moby-Dick, Melville, Jacobs, Twain, Wharton, Faulkner, Morrison, Butler, ",https://ocw.mit.edu/courses/literature/21l-501-the-american-novel-stranger-and-stranger-spring-2013 +21L.504J,Race and Identity in American Literature: Keepin' it Real Fake,Spring,2007,race; class; racial identity; ethnicity; gender; class status; privilege; performance; passing; mark twain; bell hooks; toni morrison; james weldon johnson; charles chestnut; nella larsen; black like me; george schuyler; black no more; suzan-lori parks; toi derricotte; philip roth,https://ocw.mit.edu/courses/literature/21l-504j-race-and-identity-in-american-literature-keepin-it-real-fake-spring-2007 +21L.512,American Authors: American Women Authors,Spring,2003,"women authors, comfort women, captivity narrative, slave novel, sensationalism, sentimentalism, realism, postmodern fiction, American Revolution, industrialization, urbanization, Harlem Renaissance, Puritanism",https://ocw.mit.edu/courses/literature/21l-512-american-authors-american-women-authors-spring-2003 +21L.512,American Authors: Autobiography and Memoir,Fall,2013,"American authors, captivity narrative, autobiography, biography, memoir, family, American culture",https://ocw.mit.edu/courses/literature/21l-512-american-authors-autobiography-and-memoir-fall-2013 +21L.601J,Old English and Beowulf,Spring,2023,"Beowulf +Old English +Rohan +Anglo-Saxon +Preface to Genesis +Poet Caedmon +The Wife's Lament +The Husband's Message +Wulf and Eadwacer +The Dream of the Rood +Grendel", +21L.640J,The New Spain:1977-Present,Fall,2015,modern Spain; Spanish Civil War; Franco; censorship; regional autonomy; Basque; Catalonia; Pedro Almodóvar; educational reform; feminism; magazines; newspapers; films; television; fiction; Roman Catholic Church; Juan Carlos; constitution; reform; revolution; democratic transition; José Ibáñez Martín; ,https://ocw.mit.edu/courses/literature/21l-640j-the-new-spain-1977-present-fall-2015 +21L.701,Literary Interpretation: Virginia Woolf’s Shakespeare,Spring,2001,"Virginia Woolf, Shakespeare, literary interpretation",https://ocw.mit.edu/courses/literature/21l-701-literary-interpretation-virginia-woolf-s-shakespeare-spring-2001 +21L.701,Literary Interpretation: Interpreting Poetry,Fall,2003,"literature; lyric poetry; poetic language; figurative language; Aristotle; literary theory; history; early modern; metaphor; science; renaissance; seventeenth century; Shakespeare; Donne; Marvell; Milton; Romantic period; Wordsworth; Coleridge; Keats; early twentieth-century; Yeats, T.S. Eliot; Wallace Stevens; Robert Frost; Elizabeth Bishop; Phillip Larkin",https://ocw.mit.edu/courses/literature/21l-701-literary-interpretation-interpreting-poetry-fall-2003 +21L.701,Literary Interpretation: Literature and Photography: The Image,Fall,2005,literary criticism; photography; literature; Imagist anthology; John Steinbeck,https://ocw.mit.edu/courses/literature/21l-701-literary-interpretation-literature-and-photography-the-image-fall-2005 +21L.701,Literary Interpretation: Beyond the Limits of the Lyric,Fall,2006,"moral and political position of poetry; divergence in the social positions of poetry; dominant paradigm of the social, political and literary culture; Whitman, Williams, Lowell, Plath, Bishop, Czeslaw Milosz, poet, Yeats, Nerud, Akhmatova, Szymborska",https://ocw.mit.edu/courses/literature/21l-701-literary-interpretation-beyond-the-limits-of-the-lyric-fall-2006 +21L.701,Literary Interpretation: Literature and Urban Experience,Spring,2009,"urban, literature, urban experience, city, The Waste Land, Mrs. Dalloway, Belfast Confetti, Ripley Bogle, The Lonely Londoners, modernity, modern, modernism, metropolis, postmodernism, the gunny sack",https://ocw.mit.edu/courses/literature/21l-701-literary-interpretation-literature-and-urban-experience-spring-2009 +21L.702,"Studies in Fiction: Stowe, Twain, and the Transformation of 19th-Century America",Fall,2004,Nineteenth-century; American; authors; slavery; Uncle Tom's Cabin; Harriet Beecher Stowe; The Adventures of Huckleberry Finn; Mark Twain; Samuel Clemens; United States; culture; historical context; African-American; authors; Frederick Douglass; William Wells Brown; Martin Delany; Harriet Jacobs; Dred; Frances E. W. Harper; Charles Chesnutt; Civil War; Pudd'nhead Wilson; racial tensions; social; political; realities.,https://ocw.mit.edu/courses/literature/21l-702-studies-in-fiction-stowe-twain-and-the-transformation-of-19th-century-america-fall-2004 +21L.702,Studies in Fiction: Rethinking the American Masterpiece,Fall,2007,19th century; nineteenth century; 1800s; novel; great books; literary canon; American authors; colonial America; native american; Puritan; Nathanial Hawthorne; Scarlet Letter; Lydia Maria Child; Hobomok; slavery; Uncle Tom's Cabin; Harriet Beecher Stowe; The Adventures of Huckleberry Finn; Huck Finn; Herman Melville; Benito Cereno; Mark Twain; Samuel Clemens; United States; culture; historical context; African-American; authors; William Wells Brown; Harriet Jacobs; industrial revolution; Civil War; Walt Whitman; gender; race; social; political; realities.,https://ocw.mit.edu/courses/literature/21l-702-studies-in-fiction-rethinking-the-american-masterpiece-fall-2007 +21L.703,English Renaissance Drama: Theatre and Society in the Age of Shakespeare,Fall,2003,"Shakespeare; English Renaissance; Marlowe; Jonson; Webster; Ford; English Renaissance drama; the relationship between theatre and society; culture; aesthetic; gender and class dynamics in Renaissance society; money, trade, and colonialism; the body as metaphor and theatrical “object”; allegory and aesthetic form; theatricality and meta-theatricality; the private and the public.",https://ocw.mit.edu/courses/literature/21l-703-english-renaissance-drama-theatre-and-society-in-the-age-of-shakespeare-fall-2003 +21L.703,Studies in Drama: Theater and Science in a Time of War,Spring,2005,"17th century, drama, theater, theatre, history, acting, Charles II, Shakespeare, Boyle, English Civil War, Puritanism, Oliver Cromwell, Restoration, Richard Brome, John Ford, Bertolt Brecht, Caryl Churchill, Tony Kushner, Nahum Tate",https://ocw.mit.edu/courses/literature/21l-703-studies-in-drama-theater-and-science-in-a-time-of-war-spring-2005 +21L.703,Studies in Drama: Too Hot to Handle: Forbidden Plays in Modern America,Fall,2008,"drama, forbidden plays, Modern America, decision alley, drama strategies, drama skills, purchasing institution, drama activity, drama activities, writing opportunity, last wolf, learning medium, literacy activities, writing opportunities, foundation stage, assessment focus, two long lines, dramatic activity, action conventions, literary arts; storytelling; poetry; live performance; ritual; entertainment; communities; social norms; audiences; plays; dramatic structure; performing arts; writing; discussion; writer; speaker; cultures; tools; fiction; ethical; historical; political; artistic; questions; creativity; self-awareness; communicate; theater, outdoor public theatres, scaena frons, many theatre artists, violence onstage, neoclassical theatre, neoclassical rules, medieval theatre, environmental theatre, departures from realism, significant playwrights, first permanent theatre, theatre history, theatre, censorship, blacklist, banned, obscenity. architecture, selective realism.",https://ocw.mit.edu/courses/literature/21l-703-studies-in-drama-too-hot-to-handle-forbidden-plays-in-modern-america-fall-2008 +21L.703,Studies in Drama: Stoppard and Company,Spring,2014,contemporary literature; drama; stoppard; churchill; play; british; text analysis; stagecraft; writer; history; politics; culture; performance; comedy; Tom Stoppard; Caryl Churchill; Anna Deveare Smith; Howard Barker; dramatist,https://ocw.mit.edu/courses/literature/21l-703-studies-in-drama-stoppard-and-company-spring-2014 +21L.704,"Studies in Poetry: ""Does Poetry Matter?""",Fall,2002,,https://ocw.mit.edu/courses/literature/21l-704-studies-in-poetry-does-poetry-matter-fall-2002 +21L.704,Studies in Poetry: Gender and Lyric -- Renaissance Men and Women Writing about Love,Spring,2003,"English love sonnets, William Shakespeare, Philip Sidney, Edmund Spenser, Mary Wroth, sound, rhythm, figuration, poetry, Petrarchan literary tradition, Francis Petrarch, Sir Thomas Wyatt, uses of love poetry, seduction, fame, morals, masculinity, femininity, conduct manuals, theories of gender and anatomy, narrative poems, pornographic poems",https://ocw.mit.edu/courses/literature/21l-704-studies-in-poetry-gender-and-lyric-renaissance-men-and-women-writing-about-love-spring-2003 +21L.704,Studies in Poetry - British Poetry and the Sciences of the Mind,Fall,2004,"poems; think; images; poet; lunatic; irrational; art; sciences; processes of mind; reason; mind; thought; British; eighteenth; nineteenth; centuries; psychology; physiology; brain; interdisciplinary course; lyric; didactic; cognition; medicine; literary study; humanistic research. +",https://ocw.mit.edu/courses/literature/21l-704-studies-in-poetry-british-poetry-and-the-sciences-of-the-mind-fall-2004 +21L.704,Studies in Poetry: From the Sonneteers to the Metaphysicals,Spring,2006,sixteenth- and seventeenth-century England; love poetry or amatory verse; English Renaissance; sonnet; Petrarch; Elizabethan England; metaphysical poets; Donne and Marvell,https://ocw.mit.edu/courses/literature/21l-704-studies-in-poetry-from-the-sonneteers-to-the-metaphysicals-spring-2006 +21L.704,"Studies in Poetry: ""What's the Use of Beauty?""",Fall,2005,"Extensive reading; major poets; evolution of each poet's work; questions of poetic influence and literary tradition; recognition of beauty; justice; lyric poetry, novel, philosophical prose and essays; British literary authors; 19th century; literature; foundational works in aesthetics from philosophers including Plato and Immanuel Kant, as well as 20th-century aesthetic theorists including Theodor Adorno, Jean-Paul Sartre, and Elaine Scarry; Wordsworth, Keats, Mary Robinson, Mary and Percy Shelley, Thomas De Quincey, Dickens, Walter Pater, and Wilde.",https://ocw.mit.edu/courses/literature/21l-704-studies-in-poetry-what-s-the-use-of-beauty-fall-2005 +21L.704,Studies in Poetry: 20th Century Irish Poetry: The Shadow of W. B. Yeats,Spring,2008,W. B. Yeats; William Butler Yeats; Irish poetry; poetry; female poets; Patrick Kavanagh; Louis MacNeice; John Hewitt; Richard Murphy; John Montague; Seamus Heaney; Michael Hartnett; Derek Mahon; Paul Durcan; Paul Muldoon; Ciaran Carson; Paula Meehan; Medbh McGuckian; Boland; Rita Ann Higgins; Cathleen ni Houlihan; Nuala ni Dhomhnaill; round table discussion; poetry discussion; literary analysis,https://ocw.mit.edu/courses/literature/21l-704-studies-in-poetry-20th-century-irish-poetry-the-shadow-of-w-b-yeats-spring-2008 +21L.705,Major Authors: Melville and Morrison,Fall,2003,literature; herman melville; toni morrison; epic; american; moby dick; beloved; gender; race; language; nationhood; multimedia; women's studies; culture; film; text,https://ocw.mit.edu/courses/literature/21l-705-major-authors-melville-and-morrison-fall-2003 +21L.705,Major Authors: Oscar Wilde and the '90's,Spring,2003,Oscar Wilde; Authors; Literature; Shaw; Isben;,https://ocw.mit.edu/courses/literature/21l-705-major-authors-oscar-wilde-and-the-90-s-spring-2003 +21L.705,Masterworks in American Short Fiction,Fall,2005,American; short fiction; story-telling; narrative construction; Hemingway; James; Welty; Hammett; Alvarez; Diaz; Cather; Huston.,https://ocw.mit.edu/courses/literature/21l-705-masterworks-in-american-short-fiction-fall-2005 +21L.705,"Major Authors: After the Masterpiece: Novels by Melville, Twain, Faulkner, and Morrison",Fall,2006,literature; herman melville; toni morrison; epic; american; moby dick; beloved; gender; race; language; nationhood; multimedia; women's studies; culture; film; text,https://ocw.mit.edu/courses/literature/21l-705-major-authors-after-the-masterpiece-novels-by-melville-twain-faulkner-and-morrison-fall-2006 +21L.705,Major Authors: John Milton,Spring,2008,John Milton; Paradise Lost; Renaissance literature; medieval literature; poetry; epic poetry; religious poetry; literary criticism; literary analysis; Philip Pullman; The Golden Compass; His Dark Materials; William Blake; Biblical analysis; Bible; Genesis; seminar course; discussion,https://ocw.mit.edu/courses/literature/21l-705-major-authors-john-milton-spring-2008 +21L.705,"Major Authors: Rewriting Genesis: ""Paradise Lost"" and Twentieth-Century Fantasy",Spring,2009,Genesis; Paradise Lost; Renaissance literature; medieval literature; poetry; epic poetry; religious poetry; literary criticism; literary analysis; Philip Pullman; The Golden Compass; His Dark Materials; William Blake; Biblical analysis; Bible; Genesis; seminar course; discussion; Twentieth-Centry Fantasy; Rewriting Genesis.,https://ocw.mit.edu/courses/literature/21l-705-major-authors-rewriting-genesis-paradise-lost-and-twentieth-century-fantasy-spring-2009 +21L.705,Major Authors: America's Literary Scientists,Fall,2010,America's literary scientists; global exploration in the eighteenth and nineteenth centuries; Wilkes exploring expedition to Antarctica and the Pacific;cartography; ethnography; zoology; evolutionary theory; Herman Melville; Henry David Thoreau;Sarah Orne Jewett; Toni Morrison. ,https://ocw.mit.edu/courses/literature/21l-705-major-authors-americas-literary-scientists-fall-2010 +21L.706,Studies in Film,Fall,2005,"Media, film; literature; genre; topic; style; cinema; literary narrative; cultural; political; aesthetic; boundaries; theory of narrative; Akira Kurosawa; John Ford; Francis Ford Coppolla; Clint Eastwood; Orson Welles; Billy Wilder; Federico Fellini; Aeschylus; Sophocles; Shakespeare; Cervantes; Honoré de Balzac; Henry James; F. Scott Fitzgerald.",https://ocw.mit.edu/courses/literature/21l-706-studies-in-film-fall-2005 +21L.707,Arthurian Literature and Celtic Colonization,Spring,2005,Literature; celtic; colonization; King Arthur; Knights of the Round Table; British Imperialism; Catholic Church; twelfth century; thirteenth century; morphology; Arthurian romance; historical documents; English conquests; Brittany; Wales; Scotland; Ireland; Bede; Geoffrey of Monmouth; Chrétien de Troyes; Marie de France; Gerald of Wales; Perilous Graveyard; Knight of the Sword; Perlesvaus; High History of the Holy Graal.,https://ocw.mit.edu/courses/literature/21l-707-arthurian-literature-and-celtic-colonization-spring-2005 +21L.707,"Writing Early American Lives: Gender, Race, Nation, Faith",Fall,2005,Literature; writing; early American; lives; gender; race; nation; faith; Nineteenth century; legislation; economics; slavery; narratives; orations; letters; poems; Native American; English; Anglo-American; African; Afro-American.,https://ocw.mit.edu/courses/literature/21l-707-writing-early-american-lives-gender-race-nation-faith-fall-2005 +21L.707,Reading Cookbooks: from The Forme of Cury to The Smitten Kitchen,Spring,2017,"cookbooks, recipes, chefs, cooking, molecular gastronomy, farms, blogs, history, religion, technology, nutrition, culture, gender dynamics, culinary writing",https://ocw.mit.edu/courses/literature/21l-707-reading-cookbooks-from-the-forme-of-cury-to-the-smitten-kitchen-spring-2017 +21L.708,Technologies of Humanism,Spring,2003,"interactive media, digital media, narrative, non-linear narrative, experimental fiction, point of view, hypertext",https://ocw.mit.edu/courses/literature/21l-708-technologies-of-humanism-spring-2003 +21L.709,"Studies in Literary History: Modernism: From Nietzsche to Fellini +",Fall,2010,modernism; transition to a decentered “Einsteinian” universe; Friedrich Nietzsche; Paul Cézanne; Arnold Schoenberg; James Joyce; Franz Kafka; Fritz Lang; Federico Fellini; literary history. ,https://ocw.mit.edu/courses/literature/21l-709-studies-in-literary-history-modernism-from-nietzsche-to-fellini-fall-2010 +21L.709,Ethnic Literature in America,Spring,2017,"ethnicity, culture, contemporary writers, writing, literature, American culture, literary expression, identity, foreign identity, Sandra Cisneros, Junot Diaz, Jhumpa Lahiri, Toni Morrison, Art Spiegelman",https://ocw.mit.edu/courses/literature/21l-709-ethnic-literature-in-america-spring-2017 +21L.715,Media in Cultural Context,Spring,2007,television; world markets; globalization; national cultures of production and reception; international cultural exchange; format trading; creativity of translation; international circulation of light entertainment; identity formation; domestic content regulation strategies; cultural imports; media imperialism; production industires; economics; cultural translation; universal texts; trade flows; adaptation; subtitling; genre; transparency; diasporic media; American culture; local reception; response,https://ocw.mit.edu/courses/literature/21l-715-media-in-cultural-context-spring-2007 +21L.715,Media in Cultural Context: Popular Readerships,Fall,2007,popular reading; highbrow culture; lowbrow culture; gender; taste; theory and practice of reading; fanfiction; fandom; Oprah; comics; hypertext; mass-market romance fiction; mega-chain bookstore; reader response theory; Harry Potter; sociology and history of reading; resistance; rare books; fads; social engineering; bestseller,https://ocw.mit.edu/courses/literature/21l-715-media-in-cultural-context-popular-readerships-fall-2007 +21L.715,Media in Cultural Context,Fall,2015,"reading, text, historical books, Marshall McLuhan, Italo Calvino, David Mitchell, Emily Dickinson, Jacques Derrida, media, printing, Don Quixote, bibles, modernity, Cloud Atlas, electronic text, written word, history of books",https://ocw.mit.edu/courses/literature/21l-715-media-in-cultural-context-fall-2015 +21L.995,"Special Topics in Literature: Milton's ""Paradise Lost""",IAP,2008,Paradise Lost; John Milton: Lucifer; Adam and Eve; Genesis; Fallen Angel; sin; bible; William Blake; merit; thee and thou; Satan; angel; Urania; Bellerophon; Orpheus; Garden of Eden; forbidden fruit; God; Beelzebub; angels; heaven; hell; Raphael; serpent; Michael; creation,https://ocw.mit.edu/courses/literature/21l-995-special-topics-in-literature-milton-s-paradise-lost-january-iap-2008 +21M.011,Introduction to Western Music,Spring,2006,western music; baroque music; classical music; romantic music; Bach; modernist music; listening skills; social context of music; cultural context of music; major composers; Haydn; Mozart; concerto; opera; Beethoven; Vivaldi; Handel; Schubert; Chopin; jazz,https://ocw.mit.edu/courses/music-and-theater-arts/21m-011-introduction-to-western-music-spring-2006 +21M.013J,"The Supernatural in Music, Literature and Culture",Fall,2013,Macbeth; Dido and Aeneas; Faust; Liszt; Berlioz; Murnau; Turn of the Screw; magic; witches; witchcraft; belief; superstition; sorcery; ghost; spirit; heaven; hell; devil; angel; occult; paranormal; religion; allegory; Bible; God; sin; alchemy; astrology; mystic; mysticism; Europe; European history; medieval; Renaissance; Shakespeare; Goethe; Henry James; 19th century America; metaphysics; pragmatism; death; afterlife; soul; phantom; myth; spell; wizard; wisdom;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-013j-the-supernatural-in-music-literature-and-culture-fall-2013 +21M.030,Introduction to World Music,Fall,2006,enthomusicology; field study; music analysis; anthropology; culture; globalization; crossover; folk music; ethnic music; roots music; international music; gamelan; raga; blues;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-030-introduction-to-world-music-fall-2006 +21M.030,Introduction to World Music,Spring,2013,enthomusicology; field study; music analysis; culture; dance; globalization; folk music; ethnic music; international music; gamelan; raga; Senegal; sabar;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-030-introduction-to-world-music-spring-2013 +21M.051,Fundamentals of Music,Spring,2007,"singing; piano; ear training; sight-singing; Kodaly; voice; rhythm, melody; interval; scale; chord; musical notation; key; key signature; major scale; minor scale;",https://ocw.mit.edu/courses/music-and-theater-arts/21m-051-fundamentals-of-music-spring-2007 +21M.065,Introduction to Musical Composition,Spring,2014,form; structure; notation; musical score; composer; composing; music history; deep listening; sound; soundwalk; instrument building; contemporary music; avant-garde music; experimental music; graphic score; Musique Concrete; vocal music; ,https://ocw.mit.edu/courses/music-and-theater-arts/21m-065-introduction-to-musical-composition-spring-2014 +21M.113,Developing Musical Structures,Fall,2002,"music, analysis, description, performance, musical perception, units of perception, units of description, composition, melodies, percussion pieces, musical intuitions, projects, experiment, musical perception,",https://ocw.mit.edu/courses/music-and-theater-arts/21m-113-developing-musical-structures-fall-2002 +21M.220,Early Music,Fall,2010,musicology; music history; music composition; medieval music; church music; chant; Gregorian chant; religious music; liturgy; monody; polyphony; Trecento; Elizabethan London; motet; madrigal; Renaissance; ,https://ocw.mit.edu/courses/music-and-theater-arts/21m-220-early-music-fall-2010 +21M.235,Monteverdi to Mozart: 1600-1800,Fall,2013,"Baroque, Classical, opera, oratorio, cantata, sonata, concerto, quartet, symphony, Bach, Handel, Haydn, Monteverdi,Mozart, Purcell, Schutz, Vivaldi",https://ocw.mit.edu/courses/music-and-theater-arts/21m-235-monteverdi-to-mozart-1600-1800-fall-2013 +21M.250,Schubert to Debussy ,Fall,2006,romanticism; romantic music; classical music; chamber music; orchestra; opera; Brahms; Mahler; Schubert; Mendelssohn; Chopin; Liszt; Wagner; Verdi; Schumann; Dvorak; Tchaikovsky; church music; ,https://ocw.mit.edu/courses/music-and-theater-arts/21m-250-schubert-to-debussy-fall-2006 +21M.250,Beethoven to Mahler,Spring,2014,"Beethoven, Schubert, Berlioz, Chopin, Brahms, Wagner, Verdi, Tchaikovsky, Mahler, Lied, Lieder, song, choral music, opera, piano sonata, character cycle, concerto, symphony, symphonic poem",https://ocw.mit.edu/courses/music-and-theater-arts/21m-250-beethoven-to-mahler-spring-2014 +21M.260,Stravinsky to the Present,Spring,2016,music history; 20th century; contempory music; classical music; serial music; electronic music; minimalism; modernism,https://ocw.mit.edu/courses/music-and-theater-arts/21m-260-stravinsky-to-the-present-spring-2016 +21M.262,Modern Music: 1900-1960,Fall,2006,contemporary music; 20th century music; modern art; serialism; atonal; atonality; microtonal; musicology; composition; concert music; classical music; chamber music; American music; music history;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-262-modern-music-1900-1960-fall-2006 +21M.263,Music Since 1960,Spring,2006,composition; contemporary music; classical music; improvisation; serialism; minimalism; rock; jazz; tonality; neo-tonal; recording; sampling; chamber music; pantonal; atonal; avant-garde;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-263-music-since-1960-spring-2006 +21M.269,Studies in Western Music History: Quantitative and Computational Approaches to Music History,Spring,2012,music informatics; computational methods; statistical analysis; musicology; music theory; musicology; open source software; ,https://ocw.mit.edu/courses/music-and-theater-arts/21m-269-studies-in-western-music-history-quantitative-and-computational-approaches-to-music-history-spring-2012 +21M.271,Symphony and Concerto,Spring,2007,classical music; 18th century; 19th century; 20th century; orchestra; chamber music; piano; violin; baroque; romantic; musical form; musical analysis; Mozart; Beethoven; Schubert; Brahms; Tchaikovsky; Stravinsky.,https://ocw.mit.edu/courses/music-and-theater-arts/21m-271-symphony-and-concerto-spring-2007 +21M.289,Islam/Media,Spring,2015,"Qur'an, hadith, middle east, Muslim, sound, Islamic art, video, jihad, pilgrimage, hajj, protest, women in islam, ISIS",https://ocw.mit.edu/courses/music-and-theater-arts/21m-289-islam-media-spring-2015 +21M.291,Music of India,Spring,2007,raga; rag; raag; hindustani; mode; sarod; tabla; dhrupad; khyal; thumri; gharana; sitar; tal; taal; tala; world music; classical music; non-western music; indian music; indian; timbre; improvisation; ,https://ocw.mit.edu/courses/music-and-theater-arts/21m-291-music-of-india-spring-2007 +21M.293,Music of Africa,Fall,2005,african music; world music; west Africa; drumming; song; dance; kora; ethnomusicology; Senegal; Mali; Ghana; Nigeria; Lamine Toure; mbalax; hip-hop; rhythm; Wolof; griot; sabar; Salif Keita; Oumou Sangare; Ali Farka Toure; highlife; juju; afro-beat; afro-pop; afrobeat; afropop; Fela Kuti; King Sunny Ade; Ewe; Yoruba; ethnography,https://ocw.mit.edu/courses/music-and-theater-arts/21m-293-music-of-africa-fall-2005 +21M.294,Popular Musics of the World,Spring,2005,world music; pop music; globalization; recording; Afro-pop; afropop; reggae; bhangra; rave; hip-hop; enthnomusicology; world beat; Senegal; Fela Kuti; African music; Paul Simon; Graceland; rap; rap music; dance; anthropology; japanese pop; Egypt; Egyptian pop; techno; youth culture; karaoke; ska; dancehall; Bob Marley,https://ocw.mit.edu/courses/music-and-theater-arts/21m-294-popular-musics-of-the-world-spring-2005 +21M.295,American Popular Music,Fall,2014,"American popular music, Tin Pan Alley, blues, hillbilly, swing, post-war, Rock 'n' Roll, British invasion, outside the mainstream, grunge, 1960s, 1970s, 1980s, 1990s",https://ocw.mit.edu/courses/music-and-theater-arts/21m-295-american-popular-music-fall-2014 +21M.299,The Beatles,Fall,2017,"John Lennon +The Quarrymen +Paul McCartney +George Harrison +Skiffle +The Rainbows +The Moondogs +Johnny and the Moondogs +Manchester +Brian Epstein +George Martin +Pete Best +Ringo Starr +Liverpool +Please Please Me +Parlophone +With the Beatles +Beatlemania +She Loves You +Twist and Shout +With the Beatles +A Hard Day's Night +I Should Have Known Better +If I Fell +Beatles for Sale +Help! +Ticket to Ride +The Night Before +It's Only Love +Rubber Soul +Day Tripper +We Can Work It Out +Elvis +Revolver +Sgt. Pepper's Lonely Hearts Club Band +Tell Me Why +A Day in the Life +Strawberry Fields +With a Little Help From My Friends +concept album +Magical Mystery Tour +Mellotron +White Album +Yoko Ono +Apple Records +Let It Be +Yellow Submarine +Abbey Road +rock and roll +blues +Phil Spector +Wall Of Sound +Across the Universe +Get Back +Two of Us",https://ocw.mit.edu/courses/music-and-theater-arts/21m-299-the-beatles-fall-2017 +21M.301,Harmony and Counterpoint I,Spring,2005,Music; harmony; counterpoint; melody; formal practices; western music; classical music; central Europe; eighteenth century; diatonic harmony; tow parts; tones of figuration; composition; listening; analysis; sight-singing; keyboard musicianship.,https://ocw.mit.edu/courses/music-and-theater-arts/21m-301-harmony-and-counterpoint-i-spring-2005 +21M.302,Harmony and Counterpoint II,Spring,2005,Harmony; counterpoint; melody; formal practices; western music; Classical; idiom; central Europe; 1750–1825; chromatic harmony; chromatic modulation; keyboard laboratory; sight-singing laboratory.,https://ocw.mit.edu/courses/music-and-theater-arts/21m-302-harmony-and-counterpoint-ii-spring-2005 +21M.303,Writing in Tonal Forms I ,Spring,2009,composition; composing; listening; form; structure; harmony; melody; rhythm; motif; theme; voicing; chord; scale; cadence; tonality; tonal music; phrasing; canon; classical music; chamber music; aesthetics; musical analysis; romantic music; romantic poetry; lieder; string quartet; ,https://ocw.mit.edu/courses/music-and-theater-arts/21m-303-writing-in-tonal-forms-i-spring-2009 +21M.304,Writing in Tonal Forms II,Spring,2009,composition; composing; listening; form; structure; harmony; melody; rhythm; motif; theme; voicing; chord; scale; cadence; tonality; tonal music; atonal music; phrasing; canon; classical music; chamber music; aesthetics; musical analysis; string quartet; prokofiev; sonata form; Haydn; Mozart; Beethoven;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-304-writing-in-tonal-forms-ii-spring-2009 +21M.342,Composing for Jazz Orchestra,Fall,2008,jazz band; large ensemble jazz; modern jazz; contemporary jazz; big band; swing; Duke Ellington; George Russell; Bill Lowe; Mulatu Astatke; Ethiojazz; Ethio-jazz; ethiopian jazz; Ethiopiques; Either-Orchestra; Russ Gershon; Aardvark Jazz Orchestra; Gil Evans; Miles Davis; Birth of the Cool; Steve Lajoie; jazz arranging; jazz composition; improvisation; Walter Thompson; Soundpainting,https://ocw.mit.edu/courses/music-and-theater-arts/21m-342-composing-for-jazz-orchestra-fall-2008 +21M.350,Musical Analysis,Spring,2008,composition; composing; listening; form; structure; harmony; melody; rhythm; musicology; motive; theme; voicing; chord; scale; cadence; tonality; tonal music; phrasing; canon; symphony; sontata; classical music; chamber music; aesthetics; Schenker; Schenkerian analysis;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-350-musical-analysis-spring-2008 +21M.351,Music Composition,Fall,2008,classical music; composer; contemporary music; 20th century music; chamber music; atonal; post-tonal; avant-garde music; orchestration; art song; song; ,https://ocw.mit.edu/courses/music-and-theater-arts/21m-351-music-composition-fall-2008 +21M.355,Musical Improvisation,Spring,2013,improvised music; collaboration; jazz; film score; Indian music; electro-acoustic music; graphic score; ,https://ocw.mit.edu/courses/music-and-theater-arts/21m-355-musical-improvisation-spring-2013 +21M.361,Composing with Computers I (Electronic Music Composition),Spring,2008,computer music; sound; music; audio; listening; electronic music; new music; electronica; computer music; sound art; noise; noise music; avant-garde; contemporary music; modern music; composition; recording; music production; recording studio; audio software; recording software; sampling; synthesis; audio engineering; mixing,https://ocw.mit.edu/courses/music-and-theater-arts/21m-361-composing-with-computers-i-electronic-music-composition-spring-2008 +21M.380,Music and Technology (Contemporary History and Aesthetics),Fall,2009,audio; music technology; sound recording; sound reproduction; contemporary music; experimental music; electronic music; synthesis; synthesizers; music history; music software; analog recording; digital recording; digital audio; music composition; computer music; Musique concrète; rock music; rock and roll; hip hop; circuit bending; phonograph; radio; noise music; recording studio; sequencer; sampling; sampler; sound art; electric guitar; turntablism; scratching; electro-acoustic music; music copyright;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-380-music-and-technology-contemporary-history-and-aesthetics-fall-2009 +21M.380,Music and Technology: Algorithmic and Generative Music,Spring,2010,Music composition; music history; music aesthetics; algorithmic composition; generative music; computer music; electronic music; contemporary music; music synthesis;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-380-music-and-technology-algorithmic-and-generative-music-spring-2010 +21M.380,Music and Technology: Live Electronics Performance Practices,Spring,2011,Music composition; music history; computer music; music performance; electronic music; contemporary music; music synthesis; improvisation; analog electronics; live electronic music; electroacoustic improvisation;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-380-music-and-technology-live-electronics-performance-practices-spring-2011 +21M.380,Music and Technology: Recording Techniques and Audio Production,Fall,2016,"audio engineering +sound recording +music recording +digital audio +digital audio workstation +microphone +amplifier +mixing +recording studio +effects +high fidelity",https://ocw.mit.edu/courses/music-and-theater-arts/21m-380-music-and-technology-recording-techniques-and-audio-production-fall-2016 +21M.380,Music and Technology: Sound Design,Spring,2016,"audio design, synthesis, sound editing, audio editing, soundscape,soundtrack, computer game, video game, film,",https://ocw.mit.edu/courses/music-and-theater-arts/21m-380-music-and-technology-sound-design-spring-2016 +21M.385,Interactive Music Systems,Fall,2016,"audio synthesis +musical structure +human computer interaction +HCI +visual presentation +interactive musical experiences +audio synthesis +mixing +looping +MIDI sequencing +generative composition; motion sensors +music games +graphics +UI +visualization +aesthetics +python",https://ocw.mit.edu/courses/music-and-theater-arts/21m-385-interactive-music-systems-fall-2016 +21M.410,Vocal Repertoire and Performance: African American Composers,Spring,2005,"vocal repertoire, vocal performance, African American composers, spirituals, black composers",https://ocw.mit.edu/courses/music-and-theater-arts/21m-410-vocal-repertoire-and-performance-african-american-composers-spring-2005 +21M.410,Vocal Repertoire and Performance: Women Composers,Spring,2007,vocal repertoire; vocal performance; art song; opera; aria; choral music; sacred music; singing; vocal; song; Amy Beach; women composers,https://ocw.mit.edu/courses/music-and-theater-arts/21m-410-vocal-repertoire-and-performance-women-composers-spring-2007 +21M.542,Interdisciplinary Approaches to Musical Time,IAP,2010,musical analysis; music theory; music appreciation; music composition; music performance; temporality; physics; memory; film score; poetry,https://ocw.mit.edu/courses/music-and-theater-arts/21m-542-interdisciplinary-approaches-to-musical-time-january-iap-2010 +21M.603,Principles of Design,Fall,2005,Design theories; textual analysis; script analysis; technical skills; rendering; presentation; historical research; performance; Lysistrata; Aristophanes.,https://ocw.mit.edu/courses/music-and-theater-arts/21m-603-principles-of-design-fall-2005 +21M.604,Playwriting I,Spring,2005,"script, playwright, play writing, writing, characters, plot, action, sound, scene, act, dialogue, plays.",https://ocw.mit.edu/courses/music-and-theater-arts/21m-604-playwriting-i-spring-2005 +21M.606,Introduction to Stagecraft,Spring,2009,"stagecraft, shop skills, shop machines, basic handwork, tools, scenery, costume, set constuction, props, stage management, lighting, scene painting, student project, safety, knots, ",https://ocw.mit.edu/courses/music-and-theater-arts/21m-606-introduction-to-stagecraft-spring-2009 +21M.611,Foundations of Theater Practice,Fall,2009,"set design, costuming, Shakespeare, acting, film, scripts, live theater, textual analysis, narrative structure, media adaptations, Waiting for Godot, Macbeth",https://ocw.mit.edu/courses/music-and-theater-arts/21m-611-foundations-of-theater-practice-fall-2009 +21M.621,Theater and Cultural Diversity in the U.S.,Spring,2008,Theater; Culture; Diversity; Performance; American; African; Asian; Script; Chicano; Native American; Political; Act; Dance; diversity; united states; gender; video,https://ocw.mit.edu/courses/music-and-theater-arts/21m-621-theater-and-cultural-diversity-in-the-u-s-spring-2008 +21M.670J,Traditions in American Concert Dance: Gender and Autobiography,Spring,2008,"world traditions in dance, American concert dance, gender, autobiography, Katherine Dunham, Alvin Ailey, Isadora Duncan, Martha Graham, George Balanchine, American dance, choreography, race, sex, student work",https://ocw.mit.edu/courses/music-and-theater-arts/21m-670-traditions-in-american-concert-dance-gender-and-autobiography-spring-2008 +21M.675,Dance Theory and Composition,Fall,2003,Dance; Theory; Composition; Ideology; Contemporary; Weight; Space; Time; Effort; Shape; Body; Workshop,https://ocw.mit.edu/courses/music-and-theater-arts/21m-675-dance-theory-and-composition-fall-2003 +21M.710,Script Analysis,Fall,2005,"script analysis, dramatic interpretation, theater, plays, dramatic analysis, theatrical production, script, dialog, conflict, character, historical context, plot, setting, scene, directing, theatrical production, staging, design. ",https://ocw.mit.edu/courses/music-and-theater-arts/21m-710-script-analysis-fall-2005 +21M.710,Script Analysis,Fall,2011,"script analysis, dramatic interpretation, theater, plays, dramatic analysis, theatrical production, script, dialog, conflict, character, historical context, plot, setting, scene, directing, theatrical production, staging, design. ",https://ocw.mit.edu/courses/music-and-theater-arts/21m-710-script-analysis-fall-2011 +21M.715,The Craft of Costume Design,Fall,2009,"crafting, period costuming, distressing techniques, fake leather, armor, wigs, gauntlets, costume jewelry, corsets, masks, felt hat, metal finish, fabric manipulation",https://ocw.mit.edu/courses/music-and-theater-arts/21m-715-the-craft-of-costume-design-fall-2009 +21M.732,Beginning Costume Design and Construction,Fall,2008,Theater; workshop; design; costume; psychology; clothing; character analysis; script; directorial concept; period; research; drawing; rendering; skills; practical exercises; construction; drafting; draping; tools; projects.,https://ocw.mit.edu/courses/music-and-theater-arts/21m-732-beginning-costume-design-and-construction-fall-2008 +21M.734,Lighting Design for the Theatre,Fall,2003,Lighting; Design; Theatre; Theater; Stagecraft; Technical; Stage; Production,https://ocw.mit.edu/courses/music-and-theater-arts/21m-734-lighting-design-for-the-theatre-fall-2003 +21M.734,Design for the Theater: Scenery,Spring,2005,Design; Theater; Scenery; Stagecraft; Culture; Play; Script; Set; Prop; Costume; Act; Strindberg; Apollinaire; Cocteau; Lorca; O'Neill; Bartok; Mascagni; Strauss.,https://ocw.mit.edu/courses/music-and-theater-arts/21m-734-design-for-the-theater-scenery-spring-2005 +21M.735,"Technical Design: Scenery, Mechanisms, and Special Effects",Spring,2004,Technical; Design; Theater; Scenery; Stage; Theatre; Production; Lighting; Rigging; Flats; Drops; Structure; Pyrotechnics; Atmospherics; Special Effects,https://ocw.mit.edu/courses/music-and-theater-arts/21m-735-technical-design-scenery-mechanisms-and-special-effects-spring-2004 +21M.775,Hip Hop,Fall,2007,Hip Hop; Dance; Rap; Black; breaking; visual culture; Music; African; American; African-American; world music; DJ; history; literature; sexuality; mysogyny; feminism; performance; electronic music; activism; politics; consumerism; race; artist; racism; turntablism; gangsta; gangster; beats; graffiti; fashion; popular culture; urban; authenticity; ,https://ocw.mit.edu/courses/music-and-theater-arts/21m-775-hip-hop-fall-2007 +21M.785,Playwrights' Workshop,Spring,2012,theater; play; script; plot; one-act play; theatrical; acting; playwright; character; pacing; student play;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-785-playwrights-workshop-spring-2012 +21M.846,Topics in Performance Studies: Comedy Across Media,Spring,2018,"comedy +laughter +Plato +Aristotle +humor +jokes +Gary Trudeau +pantomime +physical comedy +Charlie Chaplin +Jerry Lewis +stand up comedy +anarchistic comedy +concrete comedy +interventionists comedy +counterfactual comedy +history +dada +Lenny Bruce +Richard Pryor +Andy Kaufman +",https://ocw.mit.edu/courses/music-and-theater-arts/21m-846-topics-in-performance-studies-comedy-across-media-spring-2018 +21M.873,Theater Arts Topics - The Internationalist,Fall,2004,Acting; directing; design; theater; one-act; full length; pre-rehearsal; workshop; production; theater arts; directed practice; stagecraft; Dramashop; rehearsal; Anne Washburn; play; The Internationalist; Sonenberg; auditions; technical.,https://ocw.mit.edu/courses/music-and-theater-arts/21m-873-theater-arts-topics-fall-2004-january-iap-2005 +21M.873,Theater Arts Topics - Suburbia,IAP,2008,Acting; directing; design; theater; one-act; full length; pre-rehearsal; workshop; production; theater arts; directed practice; stagecraft; Dramashop; rehearsal; subUrbia; David Gammons; Eric Bogosian; play; auditions; technical; audio; video; images;,https://ocw.mit.edu/courses/music-and-theater-arts/21m-873-theater-arts-topics-suburbia-january-iap-2008 +21M.S53,Chinese Popular Musics in Dialogue,Spring,2014,"Chinese popular music, Cantonese popular music, Taiwanese popular music, Shidaiqu, Cantopop, Taiwanese rap, Chinese rock'n'roll, music sociology, cultural studies, transnational music studies, ethnomusicology",https://ocw.mit.edu/courses/music-and-theater-arts/21m-s53-chinese-popular-musics-in-dialogue-spring-2014 +21W.011,Writing and Rhetoric: Rhetoric and Contemporary Issues,Fall,2015,"writing +rhetoric +ethics +social justice +poverty +homeless +injustice +civic +service +community +", +21W.015,Writing and Rhetoric: Writing about Sports,Fall,2013,"sport, writing, revision, baseball, tennis, voice, audience, essay, gender, race, mudville, NCAA, basketball, drugs, steroid, roids, rhetoric, basketball, ESPN, football, opiate, people, friday, oral, boxing, athlete", +21W.016,Writing and Rhetoric: Designing Meaning,Fall,2016,"rhetoric, meaning, persuasion, political speeches, debates, argument, political beliefs, cultural beliefs, policy, economics, oral presentation, writing", +21W.021,"Writing and Experience: MIT: Inside, Live +",Fall,2013,MIT; history; culture; writing; campus; graphic essay; journal; Angles; Ilona Karmel Writing Prize; library; freewriting; museum; workshop; archives; student; , +21W.022.03,Writing and Experience: Reading and Writing Autobiography,Spring,2014,"writing, autobiography, non-fiction, fiction, essay, experience, memoir", +21W.031,Science Writing and New Media: Explorations in Communicating about Science & Technology,Spring,2017,"writing, science, technology, communication, scientific writing, technical writing, media, science essays, scientific research, communication", +21W.034,Science Writing and New Media: Perspectives on Medicine and Public Health,Fall,2016,"medicine, public health, physicians, medical research, scientists, AIDS, asthma, malaria, obesity, critical review, Scientific American, clinical practice, doctors, patients", +21W.035,Science Writing and New Media: Science Writing for the Public,Spring,2018,"science writing +writing +science +technology +communications +medicine +public +public interest +education +literacy +science literacy +scientific literacy +research", +21W.035.01,Science Writing and New Media: Communicating Science to the Public,Fall,2016,"science writing, writing, science, technology, communications, medicine, public, public interest, education, literacy, science literacy, scientific literacy, research", +21W.036,Science Writing and New Media: Writing and the Environment,Spring,2022,"science writing +environment +journalism +social science +narrative essay +critical review +climate", +21W.731-1,Writing and Experience: Exploring Self in Society,Spring,2004,"writing, personal narrative, writing and experience, self in society, life narrative, sense of self, family narrative, James Baldwin, Andre Dubus, William Faulkner, Charlotte Perkins Gilman, Toni Morrison, George Orwell, Amy Tan, Alice Walker, craft, storytelling, fiction, nonfiction, short fiction, short story, journal, diary", +21W.735,Writing and Reading the Essay,Fall,2004,reading; writing; essay; literary; rhetorical; tradition; genre; prose; antiquity; modern; popular; form; print; media; web; functions; commentary; others; textual; numerical; data; discovery; meaning; personal experience; narration; specialized; knowledge; general; audience., +21W.735,Writing and Reading the Essay,Fall,2005,"Writing; reading; essay; iterary genre; nonfiction writers; fiction writers; poets; scientists; physicians; Didion; Bacon; White, E.B.; Walker; Oates; Orwell; Gould; Wolfe; Woolf; Eiseley.", +21W.742,Writing About Race,Spring,2013,"race, gender, latino, black, african american, post-racism, racism", +21W.742J,Writing About Race: Narratives of Multiraciality,Fall,2008,"multiracial, multi-race, mixed-race, multiraciality, multiple descent, hybrid populations, mixed ancestry, race, assimilation, integration, ethnicity, identity, self, heritage, multicultural, mixed heritage, mulato, mestizo, +oppression, immigration, diaspora, racism, sterotype, family, cultural +studies", +21W.747,Rhetoric,Spring,2005,"Rhetoric; critical thinking; writing; speaking;assignments; analyze; texts; original thinking; examination; subject matter; History; Theory; Aristotle, Plato, presidential speeches.", +21W.747,Classical Rhetoric and Modern Political Discourse,Fall,2009,"ethics, rhetoric, persuasion, analytical skills, critical thinking, persuasive writing, oral presentation, Classical Rhetoric, Modern Political Discourse, classical rhetoric; modern politics.", +21W.747,Rhetoric,Spring,2015,"ethics, rhetoric, speech, orator, oration, speaking, persuasion, analytical skills, critical thinking, persuasive writing, oral presentation, Classical Rhetoric, Modern Political Discourse, classical rhetoric, commencement, inauguration", +21W.747-2,Rhetoric: Rhetoric of Science,Spring,2006,rhetoric; science; rhetorical view; art; persuasion; analysis; learning; rhetorical analysis; aristotle; research; laboratory; engineering;, +21W.755,Writing and Reading Short Stories,Spring,2012,short story; creative writing; voice; point of view; character; place; plot; pace; conflict; obstacle; writer's block; workshop; incident; description; publishing; revelation; reader; writer; free writing; rewrite, +21W.756,Writing and Reading Poems,Fall,2006,"poetry, essay writing, creative writing, imitation, contemporary poetry", +21W.758,Genre Fiction Workshop,Spring,2013,"writing, creative writing, fiction, fiction writing, writing fiction, genre fiction, genre, genres, fantasy, fantasy writing, science fiction, mystery, historical fiction, preternatural romance, horror, steampunk, workshop, revision", +21W.758,Genre Fiction Workshop: Fantasy,Fall,2016,"fantasy, film, gaming, literature, wizards, dragons, novels, genre, reading, writing, stories, legends, short stories, TV shows, narrative media, workshops, creative writing", +21W.759 ,Writing Science Fiction,Spring,2016,"writing +scifi +sci fi +science fiction +fantasy +fiction +literature +genre +workshop +speculative fiction +subgenre +world building +worldbuilding +protagonist +characters +future +theme +futurist +publishing + + +", +21W.763J,Transmedia Storytelling: Modern Science Fiction,Spring,2014,"transmedia, scifi, kitsch, zombies, storytelling, narrative, workshop, speculative, fiction", +21W.775,Writing about Nature and Environmental Issues,Fall,2006,American nature writing; environmental journalism; environmentalist essay, +21W.775,Writing about Nature and Environmental Issues,Spring,2017,"writing, American landscape, wilderness, symbolism, humans, animals, non-fiction, history, ecology, environmental policy, anthropology", +21W.777,The Science Essay,Spring,2009,"technology; creative non-fiction; science writing; technology and society; science technology and society; memoir; biography; reflection; popular science; science literature; public understanding of science; policy; debate; journalism; nature; nature writing; ecology; health; medicine; culture; cultural context; mind, matter, scientific, natural reality, virtual, Darwin, life, discover, machine, natural history, reality, machine, educational technology, design and experimentation, education reform, standards and standardized testing, +scientific models, methods of solving problems, student learning, and careers in education, risk, science, society, ethics, +politics, technology, history, america, controversy, atomic, literature, philosophy, religion, western, politics, nature, history, +ethics, industrial culture, aristotle, thoreau, wells, faulkner, early modern, +contemporary", +21W.777,Science Writing in Contemporary Society,Spring,2017,"writing, science, technology, medicine, nature, Elizabeth Kolbert, Atul Gawande, Michael Pollan, narrative, media, science writing, culture, society, climate change, Malcolm Gladwell, investigative essays, book reviews", +21W.780,Communicating in Technical Organizations,Fall,2001,Communicating; Technical; Organizations; document; abstracts; executive; summaries; memos; proposals; progress; reports; PowerPoint; Web; poster; writing, +21W.794,Graduate Technical Writing Workshop,IAP,2019,"genre +rhetorical situations +abstracts +stasis theory +information management +academic integrity +use of sources +synthesizing and structuring information +discourse analysis +genre analysis +rhetorical moves +metadiscourse +", +22.081J,Introduction to Sustainable Energy,Fall,2010,"energy transfer, clean technologies, energy resource assessment, energy conversion, wind power, nuclear proliferation, nuclear waste disposal, carbon management options, geothermal energy, solar photovoltaics, solar thermal energy, biomass energy, biomass conversion, eco-buildings, hydropower",https://ocw.mit.edu/courses/nuclear-engineering/22-081j-introduction-to-sustainable-energy-fall-2010 +22.313J,Thermal Hydraulics in Power Technology,Spring,2007,"reactor; nuclear reactor; thermal behavior; hydraulic; hydraulic behavior; heat; modeling; steam; stability; instability; thermo-fluid dynamic phenomena; single-heated channel-transient analysis, Multiple-heated channels, Loop analysis, single and two-phase natural circulation, Kinematics; two-phase flows, subchannel analysis; Core thermal analysis",https://ocw.mit.edu/courses/nuclear-engineering/22-313j-thermal-hydraulics-in-power-technology-spring-2007 +22.314J,Structural Mechanics in Nuclear Power Technology,Fall,2006,"nuclear power plant systems; structure, function, operating conditions, and mechanical-structural design requirements; modeling; component design; mechanical loading; brittle fracture, inelastic behavior; elevated temperatures; neutron irradiation; seismic effects.",https://ocw.mit.edu/courses/nuclear-engineering/22-314j-structural-mechanics-in-nuclear-power-technology-fall-2006 +22.52J,Statistical Thermodynamics of Complex Liquids,Spring,2004,"self-assembly in surfactant-water (micellar) and surfactant-water-oil (micro-emulsion) systems; theory of polymer solutions; scattering techniques, light, x-ray, and neutron scattering; complex liquids; modern theory of liquid state relevant to structured (supramolecular) liquids",https://ocw.mit.edu/courses/nuclear-engineering/22-52j-statistical-thermodynamics-of-complex-liquids-spring-2004 +22.55J,Principles of Radiation Interactions,Fall,2004,interaction of radiation with biological material; how different types of radiation deposit energy; secondary radiations; how radiation affects cells; biological effects; effects of radiation on biological systems; DNA damage; in vitro cell survival models; in vivo mammalian systems; radiation therapy; radiation syndromes in humans; carcinogenesis; Environmental radiation sources; radiation protection,https://ocw.mit.edu/courses/nuclear-engineering/22-55j-principles-of-radiation-interactions-fall-2004 +22.56J,Noninvasive Imaging in Biology and Medicine,Fall,2005,"theory and application of noninvasive imaging methods, biology, medicine, neuroimaging, X-ray CT, PET/SPECT, MRI, optical imaging, molecular imaging, scanning methods, imaging systems",https://ocw.mit.edu/courses/nuclear-engineering/22-56j-noninvasive-imaging-in-biology-and-medicine-fall-2005 +22.611J,Introduction to Plasma Physics I,Fall,2003,plasma phenomena; energy generation; controlled thermonuclear fusion; astrophysics; Coulomb collisions; transport processes; charged particles; magnetic fields; plasma confinement schemes; MHD models; simple equilibrium; stability analysis; Two-fluid hydrodynamic plasma models; wave propagation; kinetic theory; Vlasov plasma model; electron plasma waves; Landau damping; ion-acoustic waves; streaming instabilities,https://ocw.mit.edu/courses/nuclear-engineering/22-611j-introduction-to-plasma-physics-i-fall-2003 +22.611J,Introduction to Plasma Physics I,Fall,2006,plasma phenomena; energy generation; controlled thermonuclear fusion; astrophysics; Coulomb collisions; transport processes; charged particles; magnetic fields; plasma confinement schemes; MHD models; simple equilibrium; stability analysis; Two-fluid hydrodynamic plasma models; wave propagation; kinetic theory; Vlasov plasma model; electron plasma waves; Landau damping; ion-acoustic waves; streaming instabilities,https://ocw.mit.edu/courses/nuclear-engineering/22-611j-introduction-to-plasma-physics-i-fall-2006 +22.68J,Superconducting Magnets,Spring,2003,"Focuses on one important engineering application of superconductors—generation of large-scale and intense magnetic fields. Review of electromagnetic theory; detailed treatment of magnet design and operational issues, including ""usable"" superconductors, field and stress analyses, magnet instabilities, ac losses and mechanical disturbances, quench and protection, experimental techniques, and cryogenics. New high-temperature superconductors for magnets—design and operational issues at high temperatures.",https://ocw.mit.edu/courses/nuclear-engineering/22-68j-superconducting-magnets-spring-2003 +22.812J,Nuclear Energy Economics and Policy Analysis,Spring,2004,electric power industry; nuclear power; fuel cycle;analyzing private and public policy alternatives; discounted cash flow methods; engineering economics; nuclear waste management; weapons proliferation; deregulation; restructuring,https://ocw.mit.edu/courses/nuclear-engineering/22-812j-managing-nuclear-technology-spring-2004 +22.A09,Career Options for Biomedical Research,Fall,2006,freshman seminar; career; career planning; biotech; hospital; imaging; medical imaging; biologist; radiation science; research; scientist; hospital; doctor; medicine; MRI; radiology; neuroscience,https://ocw.mit.edu/courses/nuclear-engineering/22-a09-career-options-for-biomedical-research-fall-2006 +22.S902,Do-It-Yourself (DIY) Geiger Counters,IAP,2015,"geiger counter, nuclear safety, hands-on, nuclear decay, background radiation",https://ocw.mit.edu/courses/nuclear-engineering/22-s902-do-it-yourself-diy-geiger-counters-january-iap-2015 +22.THT,Undergraduate Thesis Tutorial,Fall,2015,"senior thesis, scholarly publishing, academic writing, prospectus, elevator pitch, citations, bibliography, hypothesis, elevator pitch",https://ocw.mit.edu/courses/nuclear-engineering/22-tht-undergraduate-thesis-tutorial-fall-2015 +24.04J,Justice,Spring,2012,social justice; liberty; equality; utilitarianism; libertarianism; egalitarian liberalism; entitlement; immigration; fairness; ghetto poor; global poor; principles; moral desert; welfare contractualism; G.A. Cohen; Jeremy Bentham; John Stuart Mill; Robert Nozick; Milton Friedman;,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-04j-justice-spring-2012 +24.06J,Bioethics,Spring,2009,medical ethics; ethics; genetics; life support; stem cell; GM; genetically modified; genetic engineering; risk; biomedical; medicine; cloning; euthanasia; enhancing or cheating; abortion; eugenics; slippery slope; organ transplant; organ donor; disease; public health; health care; ,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-06j-bioethics-spring-2009 +24.08J,Philosophical Issues in Brain Science,Spring,2009,"brain, philosophy, neuroscience, cognitive sciences, solidity, cohesion, stimulus, rapid learning, memory, sensory input, +consciousness, cognitive functions, behavioral functions. ",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-08j-philosophical-issues-in-brain-science-spring-2009 +24.235J,Philosophy of Law,Spring,2012,paternalism; law; philosophy; moral content; punishment; rights; jurisprudence; common law; civil law; civil disobedience; political obligation; judges; decision theory; Hart; Dworkin; Scalia; Raz; Thomson; Bentham; Mill; Langton;,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-235j-philosophy-of-law-spring-2012 +24.906J,Linguistic Studies of Bilingualism,Fall,2012,language; verbal behavior; bilingualism; code-switchng; speech; grammatical theory; lateralization; diglossia; linguistic structure; multilingualism; education; bilingual brain;,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-906j-linguistic-studies-of-bilingualism-fall-2012 +24.941J,The Lexicon and Its Features,Spring,2007,lexicon; features; sound categories; acoustic and articulatory correlates; languages; models of word recognition; linguistics;cognitive science,https://ocw.mit.edu/courses/linguistics-and-philosophy/24-941j-the-lexicon-and-its-features-spring-2007 +24.S95,Linguistics in K-12 Education,Spring,2023,, +24.S96,"Linguistics and Social Justice: +Language, Education, and Human Rights",Fall,2021,"social justice +minority languages +indigenous languages +creoles +colonialism +postcolonialism +Haiti +Caribbean",https://ocw.mit.edu/courses/linguistics-and-philosophy/24-s96-linguistics-and-social-justice-language-education-and-human-rights-fall-2021 +3.012Sx,Structure of Materials,Spring,2019,,https://ocw.mit.edu/courses/materials-science-and-engineering/3-012sx-structure-of-materials-spring-2019 +3.021J,Introduction to Modeling and Simulation,Spring,2012,,https://ocw.mit.edu/courses/materials-science-and-engineering/3-021j-introduction-to-modeling-and-simulation-spring-2012 +3.051J,Materials for Biomedical Applications,Spring,2006,"interactions between proteins, cells +and surfaces of biomaterials; surface chemistry and physics of metals, polymers and ceramics; +Surface characterization methodology; Quantitative assays of cell behavior +in culture; Organ replacement therapies; +Acute and chronic response to implanted biomaterials; biosensors, +drug delivery and tissue engineering.",https://ocw.mit.edu/courses/materials-science-and-engineering/3-051j-materials-for-biomedical-applications-spring-2006 +3.091SC,Introduction to Solid State Chemistry,Fall,2010,"college chemistry, atom, molecule, periodic table, electron shell, chemical bonding, crystallography, x-ray spectroscopy, amorphous solid, chemical reaction, chemical energy, aqueous solution, solid solution, organic chemistry, polymer, semiconductor, phase diagram, material processing, history of chemistry, metallurgy, chemical equilibrium, physical chemistry",https://ocw.mit.edu/courses/materials-science-and-engineering/3-091sc-introduction-to-solid-state-chemistry-fall-2010 +3.15x,"Electrical, Optical, and Magnetic Materials and Devices",Spring,2020,"properties of materials +electric +optical +magnetic +semiconductors +metals +organics +insultors +devices +emerging technology +drift +diffusion +recomibination +generation +p-n junctions +equilibrium +bias +ideal diode equation +real diodes +bipolar junction trasistors +MOSFETs +field effect transistors +photodevices +LED +heterojunction laser +organic electronic displays +liquid crystal displays +photonic systems +optical fibers +magnetism +anisotropy +transformers +DC motors +hard disc data storage +optical storage +magnetooptical storage +domain wall energy + + +",https://ocw.mit.edu/courses/materials-science-and-engineering/3-15x-electrical-optical-and-magnetic-materials-and-devices-spring-2020 +3.40J,Physical Metallurgy,Fall,2009,"point, line and interfacial defects; stereographic projection; annealing; spinodal decomposition; nucleation; growth; particle coarsening; structure-function relationships; interstitial and substitutional solid solutions; processing and structure of metals; strength, stiffness, and ductility; crystallography; phase transformations; microstructural evolution; steel; aluminum.",https://ocw.mit.edu/courses/materials-science-and-engineering/3-40j-physical-metallurgy-fall-2009 +3.A04,Modern Blacksmithing and Physical Metallurgy,Fall,2008,"freshman seminar, forge, casting, lost-wax, steel, phase diagrams, student work, photos, ",https://ocw.mit.edu/courses/materials-science-and-engineering/3-a04-modern-blacksmithing-and-physical-metallurgy-fall-2008 +3.A08,Attraction and Repulsion: The Magic of Magnets,Fall,2005,magnetism; electromagnetic; electromagnetism; freshman seminar; magnetic field; Mr. Magnet; levitation; hard disk; magnetoptic; ferromagnetic; ferromagnetism; imaging; SQUID; biomagnetism; ferromagnetic; NMR;,https://ocw.mit.edu/courses/materials-science-and-engineering/3-a08-attraction-and-repulsion-the-magic-of-magnets-fall-2005 +3.A26,Freshman Seminar: The Nature of Engineering,Fall,2005,biomimicry; bird; feather; bone; structure; plant structure; cellular solids; freshman seminar; service learning; biomimetic research; biomimetics; biology; mimetic; physics; nature; natural engineering; wood; tree; tree trunk;,https://ocw.mit.edu/courses/materials-science-and-engineering/3-a26-freshman-seminar-the-nature-of-engineering-fall-2005 +3.A27,Case Studies in Forensic Metallurgy,Fall,2007,case studies; failure; fracture; seminar; stainless steel; aluminum; catastrophic failure; soldering; brazing; welding; corrosion; oxidation; fatigue; ,https://ocw.mit.edu/courses/materials-science-and-engineering/3-a27-case-studies-in-forensic-metallurgy-fall-2007 +4.001J,CityScope: New Orleans,Spring,2007,new orleans; hurricane katrina; flooding; rebuilding; problem-solving; future of the city; city footprint; natural disaster; housing; urban reconstruction; bring new orleans back commission; disaster recovery; flood protection; parks and open spaces; lower ninth ward restoration; city design; sustainable city; sustainable new orleans; public housing; urban ecology; urban infrastructure; port of new orleans; louisiana,https://ocw.mit.edu/courses/architecture/4-001j-cityscope-new-orleans-spring-2007 +4.110J,"Integrative Design Across Disciplines, Scales, and Problem Contexts",Spring,2013,"design, media, animation, image, data, visualization, representation, database, Processing, fabrication, technology, systems, model, AI, intelligence, programming, optimization, machine, play, game, utopia, future, dystopia, science fiction, environment, growth, organization",https://ocw.mit.edu/courses/architecture/4-110j-design-across-scales-disciplines-and-problem-contexts-spring-2013 +4.125A,Architecture Studio: Building in Landscapes,Fall,2005,architecture; tectonics; place making; space; Space Between; urban design; urban redesign; village; neighborhood; mixed-use public space; light and space; affordable design; green design; LEED; cultural understanding; path; place; space as activator;,https://ocw.mit.edu/courses/architecture/4-125a-architecture-studio-building-in-landscapes-fall-2005 +4.125B,Architecture Studio: Building in Landscapes,Fall,2005,architecture; tectonics; place making; space; Space Between; urban design; urban redesign; village; neighborhood; mixed-use public space; light and space; affordable design; green design; LEED; cultural understanding; path; place; space as activator;,https://ocw.mit.edu/courses/architecture/4-125b-architecture-studio-building-in-landscapes-fall-2005 +4.131B,"Architectural Design, Level II: Material and Tectonic Transformations: The Herreshoff Museum",Fall,2003,architecture; design; tectonics; representation; materials; construction; presentation; sketching; metaphor; boat building; shipyard renovation; adaptive reuse; public and private space; visual arts; America's Cup; racing; displacement; lightness; mass; strength; energy; speed,https://ocw.mit.edu/courses/architecture/4-131b-architectural-design-level-ii-material-and-tectonic-transformations-the-herreshoff-museum-fall-2003 +4.155B,"Architectural Design, Level III: A Student Center for MIT",Fall,2004,architecture; tectonics; materials; MIT; campus living; student center; activation; Heidegger; place making; urban design; urban redesign; village; neighborhood; mixed-use public space; light and space; affordable design; movement; place; life; activity,https://ocw.mit.edu/courses/architecture/4-155b-architectural-design-level-iii-a-student-center-for-mit-fall-2004 +4.163J,Urban Design Studio: Providence,Spring,2005,urban planning; community; stakeholders; development; urban growth; Providence; Rhode Island; institutional mechanisms; housing; waterfront; port; built form; public space; landscape; path and access systems; parking; density; activity location and intensity; planning; finance; public/private partnerships; parcelization; phasing; multi-disciplinary teams;,https://ocw.mit.edu/courses/architecture/4-163j-urban-design-studio-providence-spring-2005 +4.241J,Theory of City Form,Spring,2013,cities; urbanism; architecture; modernism; typology; form; space; grid; industrialization; urban history; Kevin Lynch; political urbanism; London; Paris; Jerusalem; Johannesburg; New York; St. Petersburg; Barcelona; Vienna; Chicago; Berlin; Chandigarh; urban development; utopianism; suburb; suburban development; ,https://ocw.mit.edu/courses/architecture/4-241j-theory-of-city-form-spring-2013 +4.42J,Fundamentals of Energy in Buildings,Fall,2010,energy in buildings; ventilation; air conditioning; forms of energy; energy conservation; heat transfer; energy losses from buildings,https://ocw.mit.edu/courses/architecture/4-42j-fundamentals-of-energy-in-buildings-fall-2010 +4.A21,Stories Without Words: Photographing the First Year,Fall,2006,MIT; campus; architecture; student life; photography; digital media; digital editing; Photoshop; HTML; web design; visual representation; documentation; light; detail; poetics; advising; freshman seminar; freshman experience; landscape; light; significant detail; place; poetics; narrative; urban planning; seeing; digital photography; digital editing; storytelling; community; urban revitalization; neighborhood;,https://ocw.mit.edu/courses/architecture/4-a21-stories-without-words-photographing-the-first-year-fall-2006 +4.S26,Territory: Spatial Reification of Power,Spring,2016,"architecture, territory, cities, landscapes, regions, spatial systems, place and power, politics, land division, property, private vs. public, borders, countries, neighborhoods, buildings, mapping, cartography",https://ocw.mit.edu/courses/architecture/4-s26-territory-spatial-reification-of-power-spring-2016 +4.S33,Unmanageability: Pathless Realities and Approaches,Spring,2015,"creativity, art, management philosophies, self-management, entrepreneurial, innovation, capitalism, technology, design, science, philosophy, cultural theory",https://ocw.mit.edu/courses/architecture/4-s33-unmanageability-pathless-realities-and-approaches-spring-2015 +4.S67,Landscape Experience: Seminar in Land/Art,Fall,2016,"landscape, art, architecture, Utah, Arizona, New Mexico, Texas, United States, property, power, tradition, political positions, philosophical positions, pilgrimage, property development, history",https://ocw.mit.edu/courses/architecture/4-s67-landscape-experience-seminar-in-land-art-fall-2016 +5.07SC,Biological Chemistry I,Fall,2013,"protein structure, enzymes, catalysis, biochemical transformations, organic cofactors, inorganic cofactors, redox cofactors, metabolism, glycolysis, glycogen synthesis, gluconeogenesis, fatty acid synthesis, fatty acid degradation, pentose phosphate pathway, Krebs cycle, oxidative phosphorylation",https://ocw.mit.edu/courses/chemistry/5-07sc-biological-chemistry-i-fall-2013 +5.08J,Biological Chemistry II ,Spring,2016,"ribosome, proteosome, fatty acid synthases, polyketide synthases, non-ribosomal polypeptide synthases, polymerases, protein synthesis, protein folding, protein degradation, PK synthase, NRP synthase, isoprenoids, cholesterol homeostasis, metal ion homeostasis, reactive oxygen species, NOX2 proteins, NOX isozymes, nucleotide metabolism, purine nucleotide metabolism, pyrimidine nucleotide metabolism, deoxynucleotide biosynthesis, ",https://ocw.mit.edu/courses/chemistry/5-08j-biological-chemistry-ii-spring-2016 +5.111SC,Principles of Chemical Science,Fall,2014,"chemistry, biological molecules, inorganic molecules, organic molecules, atomic structure, molecular electronic structure, thermodynamics, acid-base equilibrium, redox equilibrium, chemical kinetics, catalysis +",https://ocw.mit.edu/courses/chemistry/5-111sc-principles-of-chemical-science-fall-2014 +5.95J,Teaching College-Level Science and Engineering,Spring,2009,"teaching, college-level science and engineering, teaching equations, designing exam questions, absorbing lectures, evils of PowerPoint, planning a course, politics in academia, teaching for change, teaching with blackboards and slides, lecture performance, course design",https://ocw.mit.edu/courses/chemistry/5-95j-teaching-college-level-science-and-engineering-spring-2009 +5.95J,Teaching College-Level Science and Engineering,Fall,2015,"teaching, college-level science and engineering, STEM, teaching skills, intended learning outcomes, active learning techniques, student learning, teaching methodologies, educational technology, teaching philosophy, inclusive classroom ",https://ocw.mit.edu/courses/chemistry/5-95j-teaching-college-level-science-and-engineering-fall-2015 +6.01SC,Introduction to Electrical Engineering and Computer Science I,Spring,2011,Python programming; object-oriented programming; state machines; signals and systems; linear time-invariant; LTI; poles; circuits; op-amps; Thevenin; Norton; superposition; probability; state estimation; search algorithms,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-01sc-introduction-to-electrical-engineering-and-computer-science-i-spring-2011 +6.021J,Quantitative Physiology: Cells and Tissues,Fall,2004,"quantitative physiology, cells, tissues, mass transport, electrical signal generation, biological membranes, membranes, diffusion, osmosis, chemically mediated transport, active transport, ion transport, equilibrium potential, resting potential, action potential, voltage-gated ion channels",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-021j-quantitative-physiology-cells-and-tissues-fall-2004 +6.041SC,Probabilistic Systems Analysis and Applied Probability,Fall,2013,probability; probability models; bayes rule; discrete random variables; continuous random variables; bernoulli process; poisson process; markov chains; central limit theorem; statistical inference,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-041sc-probabilistic-systems-analysis-and-applied-probability-fall-2013 +6.042J,Mathematics for Computer Science,Fall,2005,"Elementary discrete mathematics for computer science and engineering. mathematical definitions; proofs and applicable methods; formal logic notation; proof methods; induction; well-ordering; sets; relations; elementary graph theory; integer congruences; asymptotic notation and growth of functions; permutations and combinations, counting principles; discrete probability; recursive definition; structural induction; state machines and invariants; recurrences; generating functions +",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-042j-mathematics-for-computer-science-fall-2005 +6.042J,Mathematics for Computer Science,Fall,2010,formal logic notation; proof methods; induction; sets; relations; graph theory; integer congruences; asymptotic notation; growth of functions; permutations; combinations; counting; discrete probability; ,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-042j-mathematics-for-computer-science-fall-2010 +6.042J,Mathematics for Computer Science,Spring,2015,ormal logic notation; proof methods; induction; sets; relations; graph theory; integer congruences; asymptotic notation; growth of functions; permutations; combinations; counting; discrete probability; ,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-042j-mathematics-for-computer-science-spring-2015 +6.042J,(OLL) Mathematics for Computer Science ,Spring,2015,ormal logic notation; proof methods; induction; sets; relations; graph theory; integer congruences; asymptotic notation; growth of functions; permutations; combinations; counting; discrete probability; ,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/OLL +6.045J,"Automata, Computability, and Complexity",Spring,2011,finite automata; Turing machine; halting problem; computability; computational complexity; polynomial time; P; NP; NP complete; probabilistic algorithms; private-key cryptography; public-key cryptography; randomness,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-045j-automata-computability-and-complexity-spring-2011 +6.046J,Introduction to Algorithms (SMA 5503),Fall,2005,algorithms; efficient algorithms; sorting; search trees; heaps; hashing; divide-and-conquer; dynamic programming; amortized analysis; graph algorithms; shortest paths; network flow; computational geometry; number-theoretic algorithms; polynomial and matrix calculations; caching; parallel computing,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-046j-introduction-to-algorithms-sma-5503-fall-2005 +6.046J,Design and Analysis of Algorithms,Spring,2012,sorting; search trees; heaps; hashing; divide and conquer; dynamic programming; greedy algorithms; amortized analysis; graph algorithms; shortest paths,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-046j-design-and-analysis-of-algorithms-spring-2012 +6.046J,Design and Analysis of Algorithms,Spring,2015,algorithm; sorting; search trees; heaps; hashing; divide and conquer; dynamic programming; greedy algorithms; amortized analysis; graph algorithms; shortest paths; network flow; cryptography,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-046j-design-and-analysis-of-algorithms-spring-2015 +6.050J,"Information, Entropy, and Computation",Spring,2008,,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-050j-information-and-entropy-spring-2008 +6.055J,The Art of Approximation in Science and Engineering,Spring,2008,"approximation, science, engineering, managing complexity, divide and conquer, heterogeneous hierarchies, homogeneous hierarchies, proportional reasoning, conservation/box models, dimensional analysis, special cases, extreme cases, discretization, spring models, symmetry, invariance, discarding information, oil imports, tree representations, gold, random walks, UNIX, triangle bisection, pentagonal heat flow, jump heights, simple calculus, drag, cycling, swimming, flying, flight, algebraic symmetry, densities, hydrogen size, bending of light, Buckingham Pi Theorem, pulley acceleration, waves",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-055j-the-art-of-approximation-in-science-and-engineering-spring-2008 +6.071J,"Introduction to Electronics, Signals, and Measurement",Spring,2006,electricity; electronics applications; laboratory; analog and digital circuits; signals; measurement fundamentals; ,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-071j-introduction-to-electronics-signals-and-measurement-spring-2006 +6.152J,Micro/Nano Processing Technology,Fall,2005,"microelectronics; Microelectronics processing; integrated circuits, vacuum, chemical vapor deposition, CVD, oxidation, diffusion, implantation, lithography, soft lithography, etching, sputtering, evaporation, interconnect, metallization, crystal growth, reliability, fabrication, processing, photolithography, physical vapor deposition, MOS, MOS capacitor, microcantilever, microfluidic.",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-152j-micro-nano-processing-technology-fall-2005 +6.241J,Dynamic Systems and Control,Spring,2011,dynamic systems; multiple inputs; multiple outputs; MIMO; feedback; control systems; linear time-invariant; optimal control; robust control; linear algebra; least squares,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-241j-dynamic-systems-and-control-spring-2011 +6.243J,Dynamics of Nonlinear Systems,Fall,2003,nonlinear systems; deterministic dynamical systems; ordinary differential equations; planar autonomous systems; Picard iteration; contraction mapping theorem; Bellman-Gronwall lemma; Lyapunov methods; feedback linearization; nonlinear circuits; control systems,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-243j-dynamics-of-nonlinear-systems-fall-2003 +6.251J,Introduction to Mathematical Programming,Fall,2009,"Formulations; +Simplex method; +Duality theory; +Sensitivity analysis; +Robust optimization; +Large scale optimization; +Network flows; +The Ellipsoid method; +Interior point methods; +Semidefinite optimization; +Discrete optimization +",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-251j-introduction-to-mathematical-programming-fall-2009 +6.252J,Non-linear Programming,Spring,2003,"nonlinear programming, non-linear programming, nonlinear optimization, unconstrained optimization, gradient, conjugate direction, Newton, quasi-Newton methods, constrained optimization, feasible directions, projection, interior point, Lagrange multiplier, convex analysis, Lagrangian relaxation, nondifferentiable optimization, integer programming, optimality conditions, Lagrange multiplier theory, duality theory, control, communications, power systems, resource allocation",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-252j-nonlinear-programming-spring-2003 +6.263J,Data Communication Networks,Fall,2002,"data communication networks, architecture, network performance, network operation, next generation data networks, network algorithms, mathematics, probability theory, layered network architecture, Link Layer protocols, high-speed packet switching, queueing theory, Local Area Networks, Wide Area Networks",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-263j-data-communication-networks-fall-2002 +6.336J,Introduction to Numerical Simulation,Fall,2003,Numerical Simulation; simulation; mathematics; network problems; matrix solution; Newton method; nonlinear problems; discretization methods; differential equations; integral equations; model-order reduction; Monte Carlo,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-336j-introduction-to-numerical-simulation-sma-5211-fall-2003 +6.436J,Fundamentals of Probability,Fall,2018,"probabilistic models +sample space +conditional probability +random variables +abstract integration +product measure +joint distributions +convolution +multivariate normal distribution +stochastic processes +markov chains +martingales",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-436j-fundamentals-of-probability-fall-2018 +6.541J,Speech Communication,Spring,2004,speech communication; natural languages; sound patterns; lexicons; speech production; articulatory phonetics; acoustical theory; speech production; phonetic features; prosodic aspects of speech; lexical access; speech recognition; speech generation; speech disorders,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-541j-speech-communication-spring-2004 +6.542J,"Laboratory on the Physiology, Acoustics, and Perception of Speech",Fall,2005,Experimental investigations of speech processes. Topics: measurement of articulatory movements; measurements of pressures and airflows in speech production; computer-aided waveform analysis and spectral analysis of speech; synthesis of speech; perception and discrimination of speechlike sounds; speech prosody; models for speech recognition; speech disorders; and other topics.,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-542j-laboratory-on-the-physiology-acoustics-and-perception-of-speech-fall-2005 +6.551J,Acoustics of Speech and Hearing,Fall,2004,sound; speech communication; human anatomy; speech production; sound production; airflow; filtering; vocal tract; auditory physiology; acoustical waves; mechanical vibrations; cochlear structures; sound perception; spatial hearing; masking; auditory frequency selectivity; physical processes; sound propagation; human speech; acoustics; speech mechanics; auditory system; sound direction; ear,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-551j-acoustics-of-speech-and-hearing-fall-2004 +6.720J,Integrated Microelectronic Devices,Spring,2007,"integrated microelectronic devices, physics, silicon, circuit, semiconductor, p-n junction, metal-oxide semiconductor structure, metal-semiconductor junction, MOS field-effect transistor, bipolar junction transistor, energy band diagram, short-channel MOSFET, device characterization, device design",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-720j-integrated-microelectronic-devices-spring-2007 +6.777J,Design and Fabrication of Microelectromechanical Devices,Spring,2007,microsystem design; material properties; microfabrication technologies; structural behavior; sensing methods; fluid flow; microscale transport; noise; amplifiers feedback systems; sensors; actuators; sensing/control systems; optical MEMS; bioMEMS; inertial sensors; sensitivity; signal-to-noise;realistic microfabrication process,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-777j-design-and-fabrication-of-microelectromechanical-devices-spring-2007 +6.781J,Submicrometer and Nanometer Technology,Spring,2006,"submicron and nanometer structures; optical and electron microscopy; Surface characterization, preparation, and measurement techniques; Resist technology; optical projection, interferometric, X-ray, ion, and electron lithography; Aqueous, ion, and plasma etching techniques; Lift-off and electroplating; Ion implantation; microelectronics, microphotonics, information storage, and nanotechnology.",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-781j-submicrometer-and-nanometer-technology-spring-2006 +6.852J,Distributed Algorithms,Fall,2009,"distributed algorithms, multiprocessor programming, synchronous networks, asynchronous networks, asynchronous shared memory, self-stabilizing algorithms, theory of timed I/O automata, wait-free computability, failure detectors, spanning trees, atomic objects, impossibility of consensus",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-852j-distributed-algorithms-fall-2009 +6.854J,Advanced Algorithms,Fall,2005,amortization; randomization; fingerprinting; word-level parallelism; bit scaling; dynamic programming; network flow; linear programming; fixed-parameter algorithms; approximation algorithms; string algorithms; network optimization; parallel algorithms; computational geometry; online algorithms; external memory; external cache; external streaming; data structures;,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-854j-advanced-algorithms-fall-2005 +6.854J,Advanced Algorithms,Fall,2008,Linear Programming; Network Flows; Approximation Algorithms; Planarity Testing of Graphs; Number-Theoretic Algorithms; Data Structures,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-854j-advanced-algorithms-fall-2008 +6.856J,Randomized Algorithms,Fall,2002,Randomized Algorithms; algorigthms; efficient in time and space; randomization; computational problems; data structures; graph algorithms; optimization; geometry; Markov chains; sampling; estimation; geometric algorithms; parallel and distributed algorithm,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-856j-randomized-algorithms-fall-2002 +6.863J,Natural Language and the Computer Representation of Knowledge,Spring,2003,natural language processing; computational methods; computer science; artificial intelligence; linguistic theory; psycholinguistics; applications; thematic structure; lexical-conceptual structure; semantic structure; pragmatic structure; discourse structure; phonology; morphology; 2-level morphology; kimmo; hmm tagging; tagging; rule-based tagging; part of speech tagging; brill tagger; parsing; syntax; automata; word modeling; grammars; parsing algorithms; shift-reduce parsers; Earley's algorithm; chart parsing; context-free parsing; feature-based parsing; natural language system design; integrated lexicon; syntactic features; semantic interpretation; compositionality; quantifiers; lexical semantic; semantics; machine translation; language learning; computational models of language; origins of language.,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-863j-natural-language-and-the-computer-representation-of-knowledge-spring-2003 +6.868J,The Society of Mind,Fall,2011,"marvin minsky, artificial intelligence, society of the mind, emotion machine, cognitive psychology, cognitive theory, philosophy of the mind, ",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-868j-the-society-of-mind-fall-2011 +6.876J,Advanced Topics in Cryptography,Spring,2003,interactive proofs; zero-knowledge proofs; zero-knowledge proofs of knowledge; non-interactive zero-knowledge proofs; secure protocols; two-party secure computation; multiparty secure computation; chosen-ciphertext security,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-876j-advanced-topics-in-cryptography-spring-2003 +6.877J,Computational Evolutionary Biology,Fall,2005,"computational approaches, evolutionary biology,evolutionary theory and inferential logic of evolution by natural selection; computational and algorithmic implications and requirements of evolutionary models, whole-genome species comparison, phylogenetic tree construction, molecular evolution, homology and development, optimization and evolvability, heritability, disease evolution, detecting selection in human populations, and evolution of language; extensive laboratory exercises in model-building and analyzing evolutionary data",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-877j-computational-evolutionary-biology-fall-2005 +6.933J,The Structure of Engineering Revolutions,Fall,2001,"engineering revolution, engineering, history, engineering artifacts, interdisciplinary, invention, patents, integrated approach",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-933j-the-structure-of-engineering-revolutions-fall-2001 +6.S062,Generative Artificial Intelligence in K12 Education,Fall,2023,, +6.S079,Nanomaker,Spring,2013,clean energy; energy sources; energy storage; energy consumption; photovoltaic; piezoelectric; thermoelectric; LED; light emitting diode; organic LED; analytical biology; analytical chemistry; microfluidics; spectrometer; energy efficiency,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-s079-nanomaker-spring-2013 +6.S095,Programming for the Puzzled,IAP,2018,"Programming +Coding +Algorithms +Python +programming puzzle +algorithmic puzzle +Merge sort +Quicksort +Divide and Conquer +Pivot-based portioning +In-place sorting +Recursive function +Recursive fibonacci +optimization +enumerative search +iterative search +backtracking search +bipartite graphs",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-s095-programming-for-the-puzzled-january-iap-2018 +6.S096,Introduction to C and C++,IAP,2013,C programming; C++ programming; memory management; pointers; preprocessor macros; object oriented programming; debugging,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-s096-introduction-to-c-and-c-january-iap-2013 +6.S096,Effective Programming in C and C++,IAP,2014,"programming, C, C++, structure, object-oriented, code, memory, abstraction, assembly, stack, software, inheritance, scope, design, environment, cost, code review, project, best practice",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-s096-effective-programming-in-c-and-c-january-iap-2014 +6.S191,Introduction to Deep Learning,IAP,2020,"Deep learning +Computer vision +Natural language processing +NLP +Algorithms +Neural networks +TensorFlow +Machine learning +Sequence modeling +AI +Artificial intelligence",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-s191-introduction-to-deep-learning-january-iap-2020 +6.S897,Machine Learning for Healthcare,Spring,2019,"machine learning +healthcare +AI +artificial intelligence +deep learning +clinical data +modeling +medicine +risk stratification +diagnosis +disease progression +",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-s897-machine-learning-for-healthcare-spring-2019 +6.S898,Climate Change Seminar,Fall,2019,"climate science +climate change +climate models +decision making +economics +mitigation +adaptation +geoengineering +policy +politics +computer science +simulation",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-s898-climate-change-seminar-fall-2019 +6.S980,Machine Learning for Inverse Graphics,Fall,2022,, +7.01SC,Fundamentals of Biology,Fall,2011,"amino acids, carboxyl group, amino group, side chains, polar, hydrophobic, primary structure, secondary structure, tertiary structure, quaternary structure, x-ray crystallography, alpha helix, beta sheet, ionic bond, non-polar bond, van der Waals interactions, proton gradient, cyclic photophosphorylation, sunlight, ATP, chlorophyll, chlorophyll a, electrons, hydrogen sulfide, biosynthesis, non-cyclic photophosphorylation, photosystem II, photosystem I, cyanobacteria, chloroplast, stroma, thylakoid membrane, Genetics, Mendel, Mendel's Laws, cloning, restriction enzymes, vector, insert DNA, ligase, library, E.Coli, phosphatase, yeast, transformation, ARG1 gene, ARG1 mutant yeast, yeast wild-type, cloning by complementation, Human Beta Globin gene, protein tetramer, vectors, antibodies, human promoter, splicing, mRNA, cDNA, reverse transcriptase, plasmid, electrophoresis, restriction enzymes, vector, DNA sequencing, primer, template, capillary tube, laser detector, human genome project, recombinant DNA, clone, primer, primer walking, subcloning, computer assembly, shotgun sequencing, open reading frame, databases, polymerase chain reaction (PCR), polymerase, nucleotides, Thermus aquaticus, Taq polymerase, thermocycler, resequencing, in vitro fertilization, pre-implantation diagnostics, forensics, recombinant DNA, genetic engineering, DNA sequences, therapeutic proteins, E. coli, DNA sequencing, disease-causing mutations, cleavage of DNA, bacterial transformation, recombinant DNA revolution, biotechnology industry, Robert Swanson, toxin gene, pathogenic bacterium, biomedical research, S. Pyogenes, origin of replication ",https://ocw.mit.edu/courses/biology/7-01sc-fundamentals-of-biology-fall-2011 +7.02CI,Experimental Biology - Communications Intensive,Spring,2005,"scientific writing, technical writing, scientific communication, science writing, research article, title, abstract, introduction, methods, results, discussion, conclusion, laboratory research paper",https://ocw.mit.edu/courses/biology/7-02ci-experimental-biology-communications-intensive-spring-2005 +7.29J,Cellular Neurobiology,Spring,2012,"nervous system, neurons, synaptic transmission, neurochemistry, neurodevelopment, membrane channels, resting potential, action potential, synapse, neurotransmitters, receptors, axon, olfaction, thermoreception",https://ocw.mit.edu/courses/biology/7-29j-cellular-neurobiology-spring-2012 +7.88J,Protein Folding and Human Disease,Spring,2015,"protein folding, misfolding, aggregation, protein structures, folding intermediates, off-pathway aggregation, amyloid formation, Key chaperones, chaperonins, human protein deposition diseases, Alzheimer’s disease, Parkinson’s disease, Huntington’s disease, amyloids, prions, amino acid sequence, amyloid polymerization,chaperone structure and function, folding and assembly of fibrous proteins",https://ocw.mit.edu/courses/biology/7-88j-protein-folding-and-human-disease-spring-2015 +7.89J,Topics in Computational and Systems Biology,Fall,2010,"Computational Biology, Systems Biology, Genomics, Protein Function, Nucleic Acid Binding Factors, microarray analysis, genome-wide mapping, gene expression, evolutionary dynamics, sequencing, translation, network motifs, pathway modeling, synthetic biology, metagenomics, signal transduction",https://ocw.mit.edu/courses/biology/7-89j-topics-in-computational-and-systems-biology-fall-2010 +7.90J,Computational Functional Genomics,Spring,2005,systems biology; genome structure; DNA; RNA; transcription; stem cell; biology; microarray; gene expression; statistical data analysis; chromatin; gene sequence; genomic sequence; motif; protein; error model; diagnostic; gene clustering; phenotype; clustering; proteome,https://ocw.mit.edu/courses/biology/7-90j-computational-functional-genomics-spring-2005 +7.91J,Foundations of Computational and Systems Biology,Spring,2014,"computational biology, systems biology, bioinformatics, artificial intelligence, sequence analysis, proteomics, sequence alignment, protein folding, structure prediction, network modeling, phylogenetics, pairwise sequence comparisons, ncbi, blast, protein structure, dynamic programming, genome sequencing, DNA, RNA, x-ray crystallography, NMR, homologs, ab initio structure prediction, DNA microarrays, clustering, proteome, computational annotation",https://ocw.mit.edu/courses/biology/7-91j-foundations-of-computational-and-systems-biology-spring-2014 +7.A12,Freshman Seminar: Structural Basis of Genetic Material: Nucleic Acids,Fall,2005,"nucleic acids, DNA, RNA, genetics, genes, genetic material, double helix, molecular biology, biotechnology, structure, function, heredity, complementarity, biological materials, genetic code, oligonucleotides, supercoiled DNA, polyribosome, tRNA, reverse transcription, central dogma, transcription",https://ocw.mit.edu/courses/biology/7-a12-freshman-seminar-structural-basis-of-genetic-material-nucleic-acids-fall-2005 +8.01L,Physics I: Classical Mechanics,Fall,2005,"Introductory classical mechanics, space, time, straight-line kinematics, motion in a plane, forces, static equilibrium, particle dynamics, conservation of momentum, relative inertial frames, non-inertial force, work, potential energy, conservation of energy, ideal gas, rigid bodies, rotational dynamics, vibrational motion, conservation of angular momentum, central force motions, fluid mechanics, Technology-Enabled Active Learning. ",https://ocw.mit.edu/courses/physics/8-01l-physics-i-classical-mechanics-fall-2005 +8.01SC,Classical Mechanics,Fall,2016,, +8.01X,Physics I: Classical Mechanics with an Experimental Focus,Fall,2002,"Newton; mechanics; Newtonian mechanics; experiments; +estimation; kinematics; force; Newton’s Laws; energy; work; heat; momentum; collisions; torque; angular momentum; +properties of materials; kinetic theory; atom; special relativity; data analysis +",https://ocw.mit.edu/courses/physics/8-01x-physics-i-classical-mechanics-with-an-experimental-focus-fall-2002 +8.02T,Electricity and Magnetism,Spring,2005,electromagnetism; electrostatics; electric charge; Coulomb's law; electric structure of matter; conductors ; dielectrics; electrostatic field ; potential; electrostatic energy;Electric currents;magnetic fields ; Ampere's law; Magnetic materials;Time-varying fields ; Faraday's law of induction; electric circuits; Electromagnetic waves ; Maxwell's equations,https://ocw.mit.edu/courses/physics/8-02t-electricity-and-magnetism-spring-2005 +8.02X,Physics II: Electricity & Magnetism with an Experimental Focus,Spring,2005,electromagnetism; electrostatics; electric charge; Coulomb's law; electric structure of matter; conductors; dielectrics; electrostatic field; electrostatic potential; electrostatic energy; electric current; magnetic field; Ampere's law; magnetic; electric; time-varying fields; Faraday's law; induction; circuits; electromagnetic waves; Maxwell's equations;,https://ocw.mit.edu/courses/physics/8-02x-physics-ii-electricity-magnetism-with-an-experimental-focus-spring-2005 +8.03SC,Physics III: Vibrations and Waves,Fall,2016,"mechanical vibrations; waves; simple harmonic motion; superposition; forced vibrations; resonance, coupled oscillations; normal modes; vibrations of continuous systems; reflection; refraction; phase; group velocity. Optics; wave solutions to Maxwell's equations; polarization; Snell's Law; interference; Huygens's principle",https://ocw.mit.edu/courses/physics/8-03sc-physics-iii-vibrations-and-waves-fall-2016 +8.13/8.14,"Experimental Physics I & II ""Junior Lab""",Fall,2016,"Junior Lab +experimental physics +photoelectric effect +Poisson statistics +electromagnetic pulse +Franck-Hertz experiment +relativistic dynamics +nuclear magnetic resonance +cosmic-ray muons +Rutherford Scattering +Johnson noise +shot noise +quantum mechanics +Mössbauer spectroscopy +Doppler-free laser spectroscopy +Raman spectroscopy",https://ocw.mit.edu/courses/physics/8-13-14-experimental-physics-i-ii-junior-lab-fall-2016-spring-2017 +8.14/8.13,"Experimental Physics I & II ""Junior Lab"" EvilTwin",Fall,2016,,https://ocw.mit.edu/courses/physics/ThisIsADummyRecord +8.282J,Introduction to Astronomy,Spring,2006,"solar system; stars; interstellar medium; the Galaxy; the Universe; planets; planet formation; star formation; stellar evolution; supernovae; compact objects; white dwarfs; neutron stars; black holes; plusars, binary X-ray sources; star clusters; globular and open clusters; interstellar medium, gas, dust, magnetic fields, cosmic rays; distance ladder; galaxies, normal and active galaxies, jets; gravitational lensing; large scaling structure; Newtonian cosmology, dynamical expansion and thermal history of the Universe; cosmic microwave background radiation; big-bang nucleosynthesis.",https://ocw.mit.edu/courses/physics/8-282j-introduction-to-astronomy-spring-2006 +8.370x,Quantum Information Science I,Spring,2018,"quantum computing +classical computing +quantum mechanics +reversible computation +quantum measurement +quantum protocols +quantum algorithms +quantum communication +teleportation +superdense coding +Deutsch-Jozsa and Simon’s algorithm +Grover’s quantum search algorithm +Shor’s quantum factoring algorithm +noise channels +quantum channels +quantum key distribution + +",https://ocw.mit.edu/courses/physics/8-370x-quantum-information-science-i-spring-2018 +8.371x,Quantum Information Science II,Spring,2018,"quantum computing +quantum information +quantum error correction +quantum states +efficient quantum computing +fault tolerance +noise correction codes +error correction codes +density matrices +noisy quantum operations",https://ocw.mit.edu/courses/physics/8-371x-quantum-information-science-ii-spring-2018 +8.591J,Systems Biology,Fall,2004,"molecular systems biology: constructing and modeling of genetic networks, control theory and genetic networks, lambda phage as a genetic switch, synthetic genetic switches, bacterial chemotaxis, genetic oscillators, and circadian rhythms; cellular systems biology: reaction diffusion equations, local activation and global inhibition models, gradient sensing systems, and center finding networks; developmental systems biology: general pattern formation models, modeling cell-cell communication, quorum sensing, and models for Drosophilia development.",https://ocw.mit.edu/courses/physics/8-591j-systems-biology-fall-2004 +8.591J,Systems Biology,Fall,2014,"molecular systems biology, genetic networks, control theory,synthetic genetic switches, bacterial chemotaxis, genetic oscillators, circadian rhythms, cellular systems biology, reaction diffusion equations, local activation, global inhibition models, gradient sensing systems, center finding networks,general pattern formation models, cell-cell communication, quorum sensing",https://ocw.mit.edu/courses/biology/8-591j-systems-biology-fall-2014 +8.592J,Statistical Physics in Biology,Spring,2011,"Statistical physics, Bioinformatics; DNA; gene finding; sequence comparison; phylogenetic trees; biopolymers; DNA double helix; secondary structure of RNA; protein folding; protein motors, membranes; cellular networks; neural networks; evolution.",https://ocw.mit.edu/courses/physics/8-592j-statistical-physics-in-biology-spring-2011 +8.S271,Nuclear Weapons – History and Future Prospects,Spring,2022,, +9.00SC,Introduction to Psychology,Fall,2011,"psychology, brain, vision, attention, consciousness, learning, memory, language, thinking, intelligence, emotion, personality, human development, stress, psychopathology, social psychology +",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-00sc-introduction-to-psychology-fall-2011 +9.013J,Cell and Molecular Neurobiology,Spring,2008,"cellular, molecular neurobiology, cells, membranes, ion channels, receptors, synaptic transmission, axon guidance, targeting, neuronal cell biology, synapse formation, plasticity",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-013j-cell-and-molecular-neurobiology-spring-2008 +9.110J,"Neurology, Neuropsychology, and Neurobiology of Aging",Spring,2005,"aging, memory loss,cognition, neurodegeneration,Parkinson's disease,Alzheimer's disease, aging brain, neurobiology, neurology, neuropsychology, brain atrophy, learning, memory, recollection, emotional memory, implicit memory, Huntington's disease, working memory, dementia",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-110j-neurology-neuropsychology-and-neurobiology-of-aging-spring-2005 +9.19J,Cognitive & Behavioral Genetics,Spring,2001,"cognition, language, emotion, personality, behavior, gene mapping, personality traits, Mendelian genetics, genetic mapping techniques, statistical analysis, environmental, genetic programs, evolutionary genetics, social, ethical",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-19j-cognitive-behavioral-genetics-spring-2001 +9.22J,A Clinical Approach to the Human Brain,Fall,2006,"brain, fMRI, visual, spatial, dyslexia, development, motor activities, anatomy, cellular function, neurons, synapes, neurotransmitters, diseases, animal studies, clinical cases, activity-dependent development, critical periods, plasticity, learning, emotional disorders, vision, language, motor function, pain, placebo effects, emotional states, education, dementia.",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-22j-a-clinical-approach-to-the-human-brain-fall-2006 +9.29J,Introduction to Computational Neuroscience,Spring,2004,"neural coding, dynamics, convolution, correlation, linear systems, Fourier analysis, signal detection theory, probability theory, information theory, neural excitability, stochastic models, ion channels, cable theory",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-29j-introduction-to-computational-neuroscience-spring-2004 +9.301J,Neural Plasticity in Learning and Development,Spring,2002,"plasticity, learning, memory, invertebrates, mammals., molecular, cellular, genetic, electrophysiological, behavior",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-301j-neural-plasticity-in-learning-and-development-spring-2002 +9.322J,Genetic Neurobiology,Fall,2005,"neurobiology, genetics, bacterial chemoreception, neurogenomics, genetic analysis, axonal pathfinding, neurodevelopment, synapse formation, neurogenetics, higher brain function, neuronal ensembles, molecular analysis",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-322j-genetic-neurobiology-fall-2005 +9.52-A,Investigating the Neural Substrates of Remote Memory using fMRI,Spring,2003,"fMRI, episodic memory, semantic memory, episodic stimuli, scanning,",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-52-a-investigating-the-neural-substrates-of-remote-memory-using-fmri-spring-2003 +9.52-B,Topics in Brain and Cognitive Sciences Human Ethology,Spring,2001,"ethology, sociobiology, learning, Social Status, Cross-Cultural Differences, Persuasion, Politics, Self-, Individual, Sexuality, Dimorphisms in body and behavior;, social organization, dominance structures, evolution of sexual signals, emancipation, Mating, reproduction, Emotion, Facial Expression, Displays, General Non-Verbal Communicatio, Sex Modeling behaviors, Machine interfaces, Cognitive ethology, Comparative cognition, Signs, Symbols, Behavioral modification, pharmacology",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-52-b-topics-in-brain-and-cognitive-sciences-human-ethology-spring-2001 +9.52-C,Computational Cognitive Science,Spring,2003,,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-52-c-computational-cognitive-science-spring-2003 +9.520-A,Networks for Learning: Regression and Classification,Spring,2001,"Learning, Perspective, Regularized, Kernel Hilbert Spaces , Approximation, Nonparametric, Ridge Approximation, Networks, Finance, Statistical Learning Theory , Consistency , Empirical Risk, Minimization Principle, VC-Dimension, VC-bounds , Regression, Structural Risk Minimization, Support Vector Machines, +Kernel Engineering , Computer Vision, Computer Graphics, Neuroscience, Approximation Error, Approximation Theory, +Bioinformatics, Bagging, Boosting, Wavelets, Frames",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-520-a-networks-for-learning-regression-and-classification-spring-2001 +9.56J,Abnormal Language,Fall,2004,"linguistics, abnormal language, syntax, language acquisition, binding theory, finiteness, syntactic theory, language lateralization, hemispherectomies, aphasia, language loss, syntactic working memory, comprehension, Extended Optional Infinitive Stage, syntactic movement, animal communication, EOI stage, Williams syndrome, language processing",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-56j-abnormal-language-fall-2004 +9.57J,Language Acquisition,Fall,2001,"first language, acquisition, linguistic structure, sentence structure, morphology, learning, parameter-setting, maturation.",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-57j-language-acquisition-fall-2001 +9.591J,Language Processing,Fall,2004,"language processing, language, Sentence processing, Discourse processing, Morphological processing, storage, access , Speech processing, computation, Ambiguity, connectionist models, thought, acquisition, critical period phenomena, acquisition of speech, word acquisition, eye-tracking, cross-modal priming, neural imaging methods.",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-591j-language-processing-fall-2004 +9.59J,Lab in Psycholinguistics,Spring,2017,"linguistics +language +psychology +comprehension +sentence +symbolic +lexicon +syntax +semantics +programming +R +statistics +analysis +data +mechanical turk +pragmatics +prosody +memory +context +regression",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-59j-lab-in-psycholinguistics-spring-2017 +9.641J,Introduction to Neural Networks,Spring,2005,"synaptic connectivity, computation, learning, multilayer perceptrons, recurrent networks, amplifiers, attractors, hybrid computation, Backpropagation, Hebbian learning, perception, motor control, memory, neural development",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-641j-introduction-to-neural-networks-spring-2005 +9.66J,Computational Cognitive Science,Fall,2004,"computational theory, human cognition, artificial intelligence, human knowledge representation, inductive learning, inductive reasoning, innate knowledge, machine learning, cognitive science, computational cognitive science",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-66j-computational-cognitive-science-fall-2004 +9.75J,Psychology of Gender,Spring,2003,"individual, thoughts, feelings, actions, gender, gender development, gender differences, cognition, emotion, gender stereotypes, mental health, sexuality, close relationships, work",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-75j-psychology-of-gender-spring-2003 +9.913-A,Intensive Neuroanatomy,IAP,2002,"peripheral nervous systems, CNS, PNS, structure, nerve cell bodies, ascending and descending tracts, spinal cord, brainstem , cranial nerve nuclei, ascending/descending pathways, amine-containing cells, cerebellar, vestibular systems, cranial nerves, skeletal and branchial arch, diencephalon, Telencephalon, Motor systems, motor neurons, motor units, medial, lateral pathways, sensory systems, visual, auditory, somatosensory, olfaction, limbic system, autonomic control, Papez circuit, neocortex",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-913-a-intensive-neuroanatomy-january-iap-2002 +9.916-A,Probability and Causality in Human Cognition,Spring,2003,,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-916-a-probability-and-causality-in-human-cognition-spring-2003 +9.95-A,Research Topics in Neuroscience,IAP,2003,"Neurons, Neural Networks, Prefrontal Cortex, Cognitive Control, Hippocampal Memory Formation, Sleep, Learning, Motor Skills, +Brain, Objects, Eye, Synapse, organization",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-95-a-research-topics-in-neuroscience-january-iap-2003 +9.S915,Developmental Cognitive Neuroscience,Spring,2012,"development, cognition, theory of mind, neuroscience, childhood, learning, plasticity, executive function, perception,",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-s915-developmental-cognitive-neuroscience-spring-2012 +CC.111,Modern Conceptions of Freedom,Spring,2013,"enlightenment; the Constitution; Machiavelli; Hobbes; Locke; Rousseau, Tocqueville; Nietzche; founders; liberty; popular sovereignty; human nature; politics; Leviathan; government; Declaration of Independence; American constitutionalism; Federalist Papers; equality; statesmanship; Lincoln; modernity; +",https://ocw.mit.edu/courses/concourse/cc-111-modern-conceptions-of-freedom-spring-2013 +CC.112,Philosophy of Love,Spring,2013,romantic longing; D.H. Lawrence; ethics; Kant; sexual longing; eros; agape; philia; unconditional love; duty; intention; sex; power; universal longing; friendship; mutuality; Sartre; Plato; Rumi; Aristotle; Buber; robot,https://ocw.mit.edu/courses/concourse/cc-112-philosophy-of-love-spring-2013 +CC.S10,Prohibition and Permission,Spring,2007,eating; disgust; bible; mary rowlandson; shakespeare; twelfth night; melville; typee; kafka; dietary laws; fasting; feasting; gender; family; sanction; permission; culture; food; social practices; metamorphosis,https://ocw.mit.edu/courses/concourse/cc-s10-prohibition-and-permission-spring-2007 +CC.S10,History and Philosophy of Mechanics: Newton's Principia Mathematica,Fall,2011,"intellectual history, history of mathematics, history of science and technology, Isaac Newton, calculus, laws of motion",https://ocw.mit.edu/courses/concourse/cc-s10-history-and-philosophy-of-mechanics-newtons-principia-mathematica-fall-2011 +CMS.100,Introduction to Media Studies,Fall,2014,mass communication; mass film; television; video games; recorded music; digital media; multimedia; media literacy; social media; media convergence,https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-100-introduction-to-media-studies-fall-2014 +CMS.300,Introduction to Videogame Studies,Fall,2011,"game design, video games, game analysis, player. PC, videogame, fiction, narrative",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-300-introduction-to-videogame-studies-fall-2011 +CMS.301,Introduction to Game Design Methods,Spring,2016,"game design, prototyping, play testing, user experience, design practice, design studies, design exploration, board games",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-301-introduction-to-game-design-methods-spring-2016 +CMS.360,Introduction to Civic Media,Fall,2012,"social media, civic media, hacktivism, ",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-360-introduction-to-civic-media-fall-2012 +CMS.361,Networked Social Movements: Media & Mobilization,Spring,2014,"movement, occupy, society, network, protest, power, politic, crowd, abortion, capitalism, democracy, justice, ideology, framing, identity, transmedia, revolt, globalism, feminism, twilight, civil, change, lulz, anonymous, remix, disobedience, buffy, cotinelpro, internet, tumblr, resistance, tyranny",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-361-networked-social-movements-media-mobilization-spring-2014 +CMS.362,Civic Media Codesign Studio,Spring,2016,"civic media, worker owned cooperatives, service learning, community, co-design, user experience, social transformation, design, inequality",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-362-civic-media-codesign-studio-spring-2016 +CMS.362,Civic Media Collaborative Studio,Fall,2020,"civic media +community participation +project ideation +prototyping +stewardship +participatory design +codesign +project management +iterative development",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-362-civic-media-codesign-studio-fall-2020 +CMS.405,Media and Methods: Seeing and Expression,Spring,2013,"media, design, visual design, visual literacy, comics, semiotics, sequential art, signs, shapes, patterns, augury, cognition, creativity, psychology, image, imago, mimesis, representation, icon, iconology, iconoclasm, iconogasm, gestalt, ideology, text, shahrazad, myth, mythos, mythology, typography, type, information design, color, space, visual culture, digital media",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-405-media-and-methods-seeing-and-expression-spring-2013 +CMS.407,Media and Methods: Sound,Fall,2012,"photograph, audio, history of audio, piracy, digital music, MP3s",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-407-media-and-methods-sound-fall-2012 +CMS.594,Education Technology Studio,Spring,2019,"education technology +learning analytics +playtesting +practice spaces +ideation +prototype +universal design for learning +udl +empathy interview +edtech +teacher +educational data mining",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-594-education-technology-studio-spring-2019 +CMS.608,Game Design,Spring,2008,"games, narrative, playtesting, student work, student notes, chance, competition, information, probability, strategy, theory, symbolism, rules, gambling, emergence, progression, randomness, cooperation",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-608-game-design-spring-2008 +CMS.608,Game Design,Fall,2010,"games, puzzles, narrative, playtesting, chance, competition, strategy, rules, gambling, emergence, progression, randomness, cooperation, iterative design, prototyping, game mechanics, aesthetics",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-608-game-design-fall-2010 +CMS.608,Game Design,Spring,2014,"game, design, board, cards, sport, prototyping, dice, usability, constraint, playground, stratego, strategy, random, choice, play, tabletop, monopoly, indoor, mechanic, simulation, pitch, strategery, cooperative, social, lockbox, pandemic, rules, indie",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-608-game-design-spring-2014 +CMS.611J,Creating Video Games,Fall,2014,"game, videogame, software, prototyping, play, test, scrum, agile, code, project management, game design",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-611j-creating-video-games-fall-2014 +CMS.615,Games for Social Change,Fall,2013,"games, society, civic, engagement, change, world, peace, purposeful, media, play, sweatshop, refugee, terrorism, kitty",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-615-games-for-social-change-fall-2013 +CMS.631,Data Storytelling Studio: Climate Change,Spring,2017,"data visualization, data analysis, data cleaning, statistics, environment, climate communications, audience analysis, mapping, interactive",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-631-data-storytelling-studio-climate-change-spring-2017 +CMS.633,Digital Humanities,Spring,2015,"digital humanities, data visualization, data representation, digital archives, humanities, data mining, databases, GIS , design, prototype, programming",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-633-digital-humanities-spring-2015 +CMS.701,Current Debates in Media,Spring,2015,"mass media, economics, politics, ideology, propaganda, net neutrality, big data, digital hacktivism, digital rebellion, media violence, gamification, collective intelligence, participatory culture, intellectual property, artificial intelligence, gender studies, gaming, video games",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-701-current-debates-in-media-spring-2015 +CMS.796,Major Media Texts,Fall,2006,"modern media, media texts, theater, drama, film, art, literature, performance, philip pullman, shakespeare, mary shelley, emily dickinson, fugard ",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-796-major-media-texts-fall-2006 +CMS.801,Media in Transition,Fall,2012,"books, history of books, media, digital media, information management, gutenberg revolution",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-801-media-in-transition-fall-2012 +CMS.840,At the Limit: Violence in Contemporary Representation,Fall,2013,"violence, serial, killer, psycho, masculinity, white, sex, rape, assault, underclass, boredom, repetition, America, Ellis, Palahniuk, fight, club, Cooper, frisk, Sontag, pain, ultraviolence, squib, metaphor, Fargo, Coen, Benjamin, commodities, blankness, beast, Manson, portraits, signs, Henry, Se7en, Pitt, Fincher, desire, fragmentation, television, TV, reality, culpability, Bazin, Resevoir, Tarantino, postmodern, gore, cartoon, humor, Oldboy, Haneke",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-840-at-the-limit-violence-in-contemporary-representation-fall-2013 +CMS.876,History of Media and Technology,Spring,2005,communications media technological development Eternal War; history of media; media; technology; propaganda; war,https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-876-history-of-media-and-technology-spring-2005 +CMS.950,Workshop I,Fall,2005,"Comparative; media; studies; workshop; visual narrative; digital; images;Web gallery; soundscapes; storytelling; digital video; +Flash animation; machinima; games; class blog; location-based narratives; handheld devices; PDA; cellphones. +",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-950-workshop-i-fall-2005 +CMS.951,Workshop II: Qualitative Social Science Methods for Media Studies,Spring,2015,"qualitative social science methods, media studies, interview, participants, observation, focus groups, cultural probes, sociology, ethnography, data, data organization, data analysis, reciprocity, ethics, studying up, risk, social science",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-951-workshop-ii-qualitative-social-science-methods-for-media-studies-spring-2015 +CMS.S63,Playful Augmented Reality Audio Design Exploration,Fall,2019,"augmented reality +AR +VR +audio design +game design +prototyping +playtesting +music +iterative design +rapid prototyping",https://ocw.mit.edu/courses/comparative-media-studies-writing/cms-s63-playful-augmented-reality-audio-design-exploration-fall-2019 +EC.050,Recreate Experiments from History: Inform the Future from the Past: Galileo,IAP,2010,"Galileo, vertical fall, terrestrial rotation, secondary qualities, special injunction, star furthest, igneous particles, stellar sphere, Galileo Galilei, Copernican Opinion, The Mathematics of Strength, The Parabolic Path of Projectiles, Conservation of Motion, Nicolaus Copernicus, Definition of Uniform Acceleration, Italian physicist, mathematician, astronomer, philosopher, Scientific Revolution, telescope and consequent astronomical observations, Copernicanism, astronomy,modern physics, father of modern science, +motion, uniformly accelerated objects, kinematics, observational astronomy, satellites, moons, sunspots, applied science and technology, improved military compass, Copernicanism, Dialogue Concerning the Two Chief World Systems.",https://ocw.mit.edu/courses/edgerton-center/ec-050-recreate-experiments-from-history-inform-the-future-from-the-past-galileo-january-iap-2010 +EC.210,"Visualization for Mathematics, Science, and Technology Education ",Spring,2016,"visual communication, communication, STEM, science communication, graphic design, animation, interactive design, graphics, illustration, typography, visual storytelling, data visualization, storytelling, ",https://ocw.mit.edu/courses/edgerton-center/ec-210-visualization-for-mathematics-science-and-technology-education-spring-2016 +EC.701J,D-Lab I: Development,Fall,2009,development project; appropriate technology; sustainable development; intermediate technology; stakeholder analysis; China; India; Rwanda; Sierra Leone; Tanzania; Africa; developing country; international development; third world; poverty; bottom of the pyramid;cooking; latrine; grain mill; solar energy; stove; energy; charcoal; wheelchair; poverty; water; water quality; safe water; water treatment; health; sanitation; World Bank; NGO; United Nations; ICT4D; ICT4C; microfinance; micro-finance; AIDS; HIV; wind power; solar power; biomass; biodiesel; biogas; agriculture; farming; food; green revolution; millenium development goals;,https://ocw.mit.edu/courses/edgerton-center/ec-701j-d-lab-i-development-fall-2009 +EC.710,D-Lab: Medical Technologies for the Developing World,Spring,2010,global health; medicine; developing nation; third world; disease; disease prevention; vaccine; immunization; drug; health diagnostic; medical informatics; appropriate technology; sustainable development; inequality; poverty; poor; medical device; medical device design; innovation; prototyping; co-creation,https://ocw.mit.edu/courses/edgerton-center/ec-710-d-lab-medical-technologies-for-the-developing-world-spring-2010 +EC.711,D-Lab: Energy,Spring,2011,sustainable energy; renewable energy; green energy; sustainable development; third world; appropriate technology; solar power; wind power; micro-hydro power; design; co-creation; Nicaragua,https://ocw.mit.edu/courses/edgerton-center/ec-711-d-lab-energy-spring-2011 +EC.715,D-Lab Dissemination: Implementing Innovations for the Common Good ,Spring,2007,"development, innovation, technology implementation, third world, developing nations, social business plan, project development, poverty, hygiene, health",https://ocw.mit.edu/courses/edgerton-center/ec-715-d-lab-disseminating-innovations-for-the-common-good-spring-2007 +EC.715,"D-Lab: Water, Sanitation, and Hygiene",Fall,2019,"water +sanitation +hygiene +environment +wastewater +water quality +public health +handwashing +developing world",https://ocw.mit.edu/courses/edgerton-center/ec-715-d-lab-water-sanitation-and-hygiene-fall-2019 +EC.716,D-Lab: Waste,Fall,2015,"d-lab, waste, global waste systems, waste-pickers, waste generation, waste management, consumer culture, waste streams, innovation, downcycling, upcycling, waste assessment, e-waste, city planning, integrated waste management, environment, recycling, technology",https://ocw.mit.edu/courses/edgerton-center/ec-716-d-lab-waste-fall-2015 +EC.719,"D-Lab: Water, Climate Change, and Health",Spring,2019,"water +climate change +health +climate models +planetary health +ocean acidification +sustainability +climate science +global warming +sea level rise +public health +",https://ocw.mit.edu/courses/edgerton-center/ec-719-d-lab-water-climate-change-and-health-spring-2019 +EC.720J,D-Lab II: Design,Spring,2010,appropriate technology; sustainable development; participatory development; co-creation; poverty; product design; third world; cookstove; washing machine,https://ocw.mit.edu/courses/edgerton-center/ec-720j-d-lab-ii-design-spring-2010 +EC.721,Wheelchair Design in Developing Countries,Spring,2009,appropriate technology; engineering; local production; third world; disabled; disability; assistive technology; human power; Africa; Tanzania; Zambia; Kenya; handicap; handicapped; poverty; rural; discrimination; orthopedic; mobility; tricycle; handcycle; product design; business plan; ergonomics; manufacturing; stakeholder; service learning;,https://ocw.mit.edu/courses/edgerton-center/ec-721-wheelchair-design-in-developing-countries-spring-2009 +EC.722,Special Topics at Edgerton Center:Developing World Prosthetics,Spring,2010,jaipur foot; developing nation; third world; amputation; amputee; appropriate technology; sustainable development; co-creation; inequality; poverty; poor; medical device design; innovation; prototyping; orthotics; prosthesis; prosthetic technology; pediatric extendable prosthetic; cosmetic shell; vacuum casting,https://ocw.mit.edu/courses/edgerton-center/ec-722-special-topics-at-edgerton-center-developing-world-prosthetics-spring-2010 +EC.S01,Internet Technology in Local and Global Communities,Spring,2005,"information technology; IT; global communities; digital divide; MIT-Africa Internet Technology Initiative; MIT-AITI; African countries; Ethiopia; Ghana; Kenya; IT-related issues; java; java server pages; JSP; programming principles, cutting-edge internet technology; free open-source systems; entrepreneurship;",https://ocw.mit.edu/courses/edgerton-center/ec-s01-internet-technology-in-local-and-global-communities-spring-2005-summer-2005 +EC.S02,Water Jet Technologies,Spring,2005,water jet cutter; laser jet cutter; CNC machining; manufacture; machining; fabrication; design; build; construction; MIT Hobby Shop; metalworking; woodworking,https://ocw.mit.edu/courses/edgerton-center/ec-s02-water-jet-technologies-spring-2005 +EC.S06,Prototypes to Products,Fall,2005,solar water disinfection; SODIS; internet kiosk; developing nation; appropriate technology; sustainable development; international development; prototyping; product design; Gantt chart; Pert chart; SWOT; funding; entrepreneurship,https://ocw.mit.edu/courses/edgerton-center/ec-s06-prototypes-to-products-fall-2005 +EC.S06,Practical Electronics,Fall,2004,electronics; circuit; analog circuits; testing circuits; bridge circuits; passive components; resistors; diodes; capacitors; filters; flip-flops; relays; transistors; switches; rectifiers; function generators; comparators; operational amplifiers; op-amps; timing circuits; sensors; actuators,https://ocw.mit.edu/courses/edgerton-center/ec-s06-practical-electronics-fall-2004 +EC.S06,Design for Demining,Spring,2007,"humanitarian demining; landmines; landmine detection; landmine removal; landmine disposal; landmines in 80 countries; 20,000 civilian victims per year; MIT Design for Demining; product design; development process; identification of needs; idea generation; prototyping; blast testing; manufacture; deployment; demining community; hand tools; protective gear; safety equipment; educational graphics; teaching materials; field trip; US Army base; demining training;",https://ocw.mit.edu/courses/edgerton-center/ec-s06-design-for-demining-spring-2007 +EC.S07,Photovoltaic Solar Energy Systems,Fall,2004,solar radiation; solar flux; photovoltaics; solar gain; solar energy; solar energy collection systems; design; cost-benefit analysis; green energy; hardware; stand-alone collectors; flat-plate collectors; PV stations; utilities,https://ocw.mit.edu/courses/edgerton-center/ec-s07-photovoltaic-solar-energy-systems-fall-2004 +EC.S11,Engineering Capacity in Community-Based Healthcare,Fall,2005,developing country; Africa; Zambia; AIDS; HIV; ART; public health; health policy; NGO; disease; sex; antiretroviral; VCT; counseling; community; CD4; WHO; ,https://ocw.mit.edu/courses/edgerton-center/ec-s11-engineering-capacity-in-community-based-healthcare-fall-2005 +ES.010,Chemistry of Sports,Spring,2013,"chemistry, sports, triathlon, anatomy and physiology, nutrition, bicycle, swimming, running, exercise",https://ocw.mit.edu/courses/experimental-study-group/es-010-chemistry-of-sports-spring-2013 +ES.113,Ancient Greek Philosophy and Mathematics,Spring,2016,"greek, philosophy, mathematics, definition, reason, argument, proof, rationality, irrationality, truth, ethics, Euclid, Plato, Aristotle, Nicomachus, Theon of Smyrna, Bacon, Descartes, Dededkind, Newton. ",https://ocw.mit.edu/courses/experimental-study-group/es-113-ancient-greek-philosophy-and-mathematics-spring-2016 +ES.114,Non-violence as a Way of Life,Fall,2018,"non-violence +ethics +Tolstoy +Gandhi +Martin Luther King +truth +love +conflict resolution +coercion +manipulation +kindness +cruelty +forgiveness +anger +emotion +punishment +revenge",https://ocw.mit.edu/courses/experimental-study-group/es-114-non-violence-as-a-way-of-life-fall-2018 +ES.240,Composing Your Life: Exploration of Self through Visual Arts and Writing,Spring,2006,"self-exploration, self-expression, photography, +representations of self, family history, race, gender, personal values, letters, emails, blogs, journals, poetry, memoirs,autobiographies, self-portraiture, narrative.",https://ocw.mit.edu/courses/experimental-study-group/es-240-composing-your-life-exploration-of-self-through-visual-arts-and-writing-spring-2006 +ES.242,Gender Issues in Academics and Academia,Spring,2004,"gender, education, men, women, boys, girls, male, female, academia, academe, academics, academic, learning, school, schools, discrimination, diversity, equality, courses, standardized test, test, ap, sat, faculty, tenure, title ix, title 9, feminine mystique, glass ceiling, single-sex, sex, classroom, women's studies, esl, mit, gay, lesbian, bisexual, transgendered, transsexual",https://ocw.mit.edu/courses/experimental-study-group/es-242-gender-issues-in-academics-and-academia-spring-2004 +ES.246,Current Events and Social Issues,Fall,2004,"Current Events, Social Issues, Politics, War, Pornography, Sexism, Feminism, criminal punishment, marijuana policy, drug policy, social security, discrimination, racism, outsourcing, arab-israeli conflict, abortion, rwanda, genocide, civil disobedience",https://ocw.mit.edu/courses/experimental-study-group/es-246-current-events-and-social-issues-fall-2004 +ES.253,AIDS and Poverty in Africa,Spring,2005,Africa; HIV; AIDS; Poverty; Zimbabwe; Botswana; Namibia; Angola; Zaire; South Africa; sub-Sahara Africa,https://ocw.mit.edu/courses/experimental-study-group/es-253-aids-and-poverty-in-africa-spring-2005 +ES.255,Physics of Rock Climbing,Spring,2006,climbing; rock climbing; physics,https://ocw.mit.edu/courses/experimental-study-group/es-255-physics-of-rock-climbing-spring-2006 +ES.256,The Coming Years,Spring,2008,futurology; historiography; change; fractals; nuclear war; global warming; bioterrorism; singularity; politics; memetics; demographics; power laws; recent past; near future; prediction; history; revolution; memes; ,https://ocw.mit.edu/courses/experimental-study-group/es-256-the-coming-years-spring-2008 +ES.258,"Gödel, Escher, Bach",Spring,2007,Bach; Escher; Godel; artificial intelligence; AI; strange loops; tangled hierarchies; formal systems; informal systems; number theory; form in mathematics; figure and ground; consistency; completeness; Euclidean; non-Euclidean; geometry; recursive structures; theories of meaning; propositional calculus; typographical number theory; Zen; levels of description; theory of mind; undecidability; self-reference; self-representation; Turing test; machine intelligence,https://ocw.mit.edu/courses/experimental-study-group/es-258-goedel-escher-bach-spring-2007 +ES.259,Information and Communication Technology in Africa,Spring,2006,"Information; information technology; communication; communication technology; innovation; Africa; international development; international aid; policy; +",https://ocw.mit.edu/courses/experimental-study-group/es-259-information-and-communication-technology-in-africa-spring-2006 +ES.260,Women's Novels: A Weekly Book Club,Spring,2006,"women's novels, literature, Edith Wharton, The House of Mirth; Toni Morrison, Jazz; Virginia Woolf, Mrs. Dalloway; Alice Walker, The Color Purple; Charlotte Bronte, Jane Eyre; Sheri Reynolds, The Rapture of Canaan; Jane Austen, Pride and Prejudice; and Sylvia Plath, The Bell Jar",https://ocw.mit.edu/courses/experimental-study-group/es-260-womens-novels-a-weekly-book-club-spring-2006 +ES.261,Poetry in Translation,Spring,2006,"translating poetry, translation, poetry, English, French, Spanish, Latin, Russian, Japanese, Chinese, Persian, literature, historical background, foreign culture.",https://ocw.mit.edu/courses/experimental-study-group/es-261-poetry-in-translation-spring-2006 +ES.268,The Mathematics in Toys and Games,Spring,2010,"toys, games, mathematics, game theory, probability, group theory, programming, combinatorial game theory",https://ocw.mit.edu/courses/experimental-study-group/es-268-the-mathematics-in-toys-and-games-spring-2010 +ES.269,Passing: Flexibility in Race and Gender,Spring,2009,"passing, race, gender, class, literacy, American literature, queer, genderqueer, transgender, Nella Larsen, Michel Foucault, sexuality, Judith Butler, transsexual, William Craft, Ellen Craft, modernism, post-modernism",https://ocw.mit.edu/courses/experimental-study-group/es-269-passing-flexibility-in-race-and-gender-spring-2009 +ES.272,Culture Tech,Spring,2003,"seminar, samurai, cooking, blacksmithing, Japan, Peru, China, U.S.A, England, longitude, marine navigation, clocks, cars, suburbia, weaving, quipus, encoding, aesthetics, Zen Buddhism, Inca Empire, culture, myths, technology, social change",https://ocw.mit.edu/courses/experimental-study-group/es-272-culture-tech-spring-2003 +ES.287,Kitchen Chemistry,Spring,2009,cooking; food; chemistry;experiment; extraction; denaturation; phase change; capsicum; biochemistry; chocolate; cheese; yeast; recipe; jam; pectin; enzyme; dairy; molecular gastronomy; salt; colloid; stability; liquid nitrogen; ice cream; biochemistry; biology; microbiology; physics,https://ocw.mit.edu/courses/experimental-study-group/es-287-kitchen-chemistry-spring-2009 +ES.291,Learning Seminar: Experiments in Education,Spring,2003,education; ESG; seminar; pedagogy; homeschooling; creativity; problem solving; ISP; philosophy; alternative; experiment; ,https://ocw.mit.edu/courses/experimental-study-group/es-291-learning-seminar-experiments-in-education-spring-2003 +ES.292,Writing Workshop,Spring,2008,"creative writing, writing, workshop, reading, reflection, revision, microfiction, essay, satire, contributors' note, OuLiPo",https://ocw.mit.edu/courses/experimental-study-group/es-292-writing-workshop-spring-2008 +ES.293,Lego Robotics,Spring,2007,"lego; robot; robotics; sensors; building techniques; motors;gearing; Handyboards; +Interactive C; Advanced robotics programming; ESG; seminar; student work; feedback control systems; photos; code",https://ocw.mit.edu/courses/experimental-study-group/es-293-lego-robotics-spring-2007 +ES.298,Art of Color ,Spring,2005,"visual design, studio projects, color, visual arts, color and value balance, warm colors, cold colors, interaction of colors, science of color, color theory, multi-media.",https://ocw.mit.edu/courses/experimental-study-group/es-298-art-of-color-spring-2005 +ES.333,Producing Educational Videos,Spring,2015,"video, education, production, communication, practice, feedback, reflection, iteration, collaborative creation, revision, project proposals, audio, visual, story board, white paper, critique, multimedia, portfolio, process, deliverable, youtube, publish, audience",https://ocw.mit.edu/courses/experimental-study-group/es-333-producing-educational-videos-spring-2015 +ES.S10,Drugs and the Brain,Spring,2013,"brain, drugs, pharmacology, neurotransmitters, drug mechanisms, brain disease, addiction, schizophrenia",https://ocw.mit.edu/courses/experimental-study-group/es-s10-drugs-and-the-brain-spring-2013 +ES.S41,Speak Italian With Your Mouth Full,Spring,2012,"italian, esg, experimental study group, cooking, Italy, language, foreign language",https://ocw.mit.edu/courses/experimental-study-group/es-s41-speak-italian-with-your-mouth-full-spring-2012 +ES.S60,The Art and Science of Happiness,Spring,2013,"happiness; positive psychology; optimism; gratitude; pleasure; cognitive style; pessimism; sadness; depression; unhappiness; suffering; relationships; wellness; flow; values; meaning; +",https://ocw.mit.edu/courses/experimental-study-group/es-s60-the-art-and-science-of-happiness-spring-2013 +ES.S71,"Increasing Your Physical Intelligence, Enhancing Your Social Smarts",Spring,2014,"physical intelligence, exercise, social interactions, training, balance, strength, flexibility, mindfulness, mind and body, cognitive development, self awareness ",https://ocw.mit.edu/courses/experimental-study-group/es-s71-increasing-your-physical-intelligence-enhancing-your-social-smarts-spring-2014 +ESD.00,Introduction to Engineering Systems,Spring,2011,systems engineering; system dynamics; complex sociotechnical systems; uncertainty; networks,https://ocw.mit.edu/courses/engineering-systems-division/esd-00-introduction-to-engineering-systems-spring-2011 +ESD.04J,Frameworks and Models in Engineering Systems,Spring,2007,frameworks and models in engineering systems; quantitative models; qualitative frameworks; complex engineering systems; analysis and design; emergent behavior; stochasticity; non-linearities; architectural system configuration; ,https://ocw.mit.edu/courses/engineering-systems-division/esd-04j-frameworks-and-models-in-engineering-systems-engineering-system-design-spring-2007 +ESD.051J,Engineering Innovation and Design,Fall,2012,design thinking; technology innovation; product design; engineering design; industrial design; design process; creative analysis; design project implementation; usability; user experience,https://ocw.mit.edu/courses/engineering-systems-division/esd-051j-engineering-innovation-and-design-fall-2012 +ESD.10,Introduction to Technology and Policy,Fall,2006,politics; decision making; negotiation; planning; wedge game; climate change; global warming; NRC; nuclear power; nuclear energy; nuclear proliferation; government; public policy; globalization; science; EPA; NSF; transportation; urban planning; standards; risk; risk assessment; engineering; energy; internet; network neutrality; regulation; security; 9/11; September 11; terrorism; defense; tradeoff;,https://ocw.mit.edu/courses/engineering-systems-division/esd-10-introduction-to-technology-and-policy-fall-2006 +ESD.123J,Systems Perspectives on Industrial Ecology,Spring,2006,sustainability; environment; manufacturing; life-cycle analysis; life-cycle assessment; LCA; system design; materials selection; waste; recycling; environmentalism; environmental policy; industrial policy;,https://ocw.mit.edu/courses/engineering-systems-division/esd-123j-systems-perspectives-on-industrial-ecology-spring-2006 +ESD.141,Technology Policy Negotiations,Spring,2006,technology policy; technology policy negotiations; negotiations; dispute resolution; communications skills; cross-cultural negotiations; economic development challenges;,https://ocw.mit.edu/courses/engineering-systems-division/esd-141-technology-policy-negotiations-spring-2006 +ESD.172J,X PRIZE Workshop: Grand Challenges in Energy,Fall,2009,energy; competition; innovation; incentivize prizes; resource allocation; innovation incentives; Ansari; X PRIZE; economic models of innovation; energy storage; grid-scale storage; prize matrix; genomics; Archon X PRIZE; Progressive Automotive X PRIZE; grand challenges; ,https://ocw.mit.edu/courses/engineering-systems-division/esd-172j-x-prize-workshop-grand-challenges-in-energy-fall-2009 +ESD.260J,Logistics Systems,Fall,2006,logistics systems; supply chain management; demand planning; procurement; inventory; transportation planning; reverse logistics; flexible contracting; postponement; portfolio management; dual sourcing,https://ocw.mit.edu/courses/engineering-systems-division/esd-260j-logistics-systems-fall-2006 +ESD.273J,Logistics and Supply Chain Management,Fall,2009,vehicle routing problems; dynamic lot sizing inventory models; stochastic and deterministic multi-echelon inventory systems; the bullwhip effect; pricing models; integration problems,https://ocw.mit.edu/courses/engineering-systems-division/esd-273j-logistics-and-supply-chain-management-fall-2009 +ESD.290,Special Topics in Supply Chain Management,Spring,2005,supply chain; RFID; tags; shipping; automotive; aerospace; internet; tracking; frequencies; radio control; radio tracking; packaging; materials; life sciences; healthcare; counterfeit avoidance; web data integration; smart containers; smart houses,https://ocw.mit.edu/courses/engineering-systems-division/esd-290-special-topics-in-supply-chain-management-spring-2005 +ESD.33,Systems Engineering,Summer,2004,systems engineering; systems approach; systems view; QFD; robust design; error budgeting; statistics; optimization; decision theory,https://ocw.mit.edu/courses/engineering-systems-division/esd-33-systems-engineering-summer-2004 +ESD.33,Systems Engineering,Summer,2010,systems engineering; innovation; critical parameter development; robust design; requirements engineering; design structure matrix; modeling and simulation; quality function deployment,https://ocw.mit.edu/courses/engineering-systems-division/esd-33-systems-engineering-summer-2010 +ESD.34,System Architecture,IAP,2007,systems; Product Development Process (PDP); architect; tradeoff; function; use case; scenario; creativity; complexity; interface; form; feature; requirements; design; optimization; risk;,https://ocw.mit.edu/courses/engineering-systems-division/esd-34-system-architecture-january-iap-2007 +ESD.342,Advanced System Architecture,Spring,2006,DSM; SDM; structured design methodology; graph; network; hierarchy; structure; social network; abstraction; motif; modularity; coarse-graining; Milgram; scaling; scalability; organization; organizational theory; internet; air transport; taxonomy; computational biology; complexity; power law; Pareto; Zipf; epidemic; navigation; fractal; size; robustness,https://ocw.mit.edu/courses/engineering-systems-division/esd-342-advanced-system-architecture-spring-2006 +ESD.342,Network Representations of Complex Engineering Systems,Spring,2010,enterprise architecture; complex networks; quantitative metrics; affiliation networks; decomposition methods; percolation theory,https://ocw.mit.edu/courses/engineering-systems-division/esd-342-network-representations-of-complex-engineering-systems-spring-2010 +ESD.36,System Project Management,Fall,2012,"system project management, product development, complex system development, project planning, project simulation, critical path method (CPM), PERT, design structure matrices (DSM), critical chain, system dynamics",https://ocw.mit.edu/courses/engineering-systems-division/esd-36-system-project-management-fall-2012 +ESD.57,Technology-based Business Transformation,Fall,2007,innovation; technology; strategy; business strategy; end-user; market; leadership; organization; disruptive technology; e-business; e-commerce; IBM; 1990s; innovator's dilemna; competitiveness; outsourcing;,https://ocw.mit.edu/courses/engineering-systems-division/esd-57-technology-based-business-transformation-fall-2007 +ESD.60,Lean/Six Sigma Processes,Summer,2004,lean thinking; variance reduction; design of experiments; team-based work systems; in-station process control; total productive maintenance; synchronous material flow; value stream mapping; knowledge and information flow; pull-based systems in contrasting industry settings; enterprise alignment,https://ocw.mit.edu/courses/engineering-systems-division/esd-60-lean-six-sigma-processes-summer-2004 +ESD.68J,Communications and Information Policy,Spring,2006,network; networking; telecommunications; data network; internet; services; wireless; public policy; FCC; regulation; information service; telecom; datacom; broadband; bandwidth; open access; spectrum; copyright; RIAA; IP; intellectual property; DRM; privacy; piracy; layered model; interconnection; competition; VoIP; IPTV; network neutrality; ISP; telco; ,https://ocw.mit.edu/courses/engineering-systems-division/esd-68j-communications-and-information-policy-spring-2006 +ESD.69,Seminar on Health Care Systems Innovation,Fall,2010,"health systems, quality improvement, safety, health care delivery, payment by results, health care and information technology, process change, uncertainty in clinical decision, variation in clinical decision, performance measures in health care",https://ocw.mit.edu/courses/engineering-systems-division/esd-69-seminar-on-health-care-systems-innovation-fall-2010 +ESD.70J,Engineering Economy Module,Fall,2009,excel; spreadsheet; modeling; dynamic modeling; analysis; data table; goal seek; sensitivity analysis; simulation; random number generator; counting; modeling uncertainties; random variables; statistical package; flexibility; contingency rules; excel solver; solver; ,https://ocw.mit.edu/courses/engineering-systems-division/esd-70j-engineering-economy-module-fall-2009 +ESD.71,Engineering Systems Analysis for Design,Fall,2008,real options; flexibility; flexible design; engineering systems; complex projects; evaluation over time; risk; uncertainty; valuation; timing; uncertainty modeling; flexibility valuation; methods; design analysis; lattice analysis; monte carlo simulation; flexibility identification,https://ocw.mit.edu/courses/engineering-systems-division/esd-71-engineering-systems-analysis-for-design-fall-2008 +ESD.72,Engineering Risk-Benefit Analysis,Spring,2007,"risk analysis, decision analysis, uncertainty, cost-benefit analysis, remedial action alternative, probability, utility functions, environmental remediation, risk aversion, multistage decision models, axioms of rational behavior, design decisions, fault-tolerant design, risk management",https://ocw.mit.edu/courses/engineering-systems-division/esd-72-engineering-risk-benefit-analysis-spring-2007 +ESD.86,"Models, Data and Inference for Socio-Technical Systems ",Spring,2007,statistics; statistical model; modelling; probability; probabilistic model; risk assessment; system analysis; system design; systems engineering; distributions; poisson; markov; queuing theory; congestion; traffic; regression; hypothesis testing; inference; operations research; Weibull analysis;,https://ocw.mit.edu/courses/engineering-systems-division/esd-86-models-data-and-inference-for-socio-technical-systems-spring-2007 +ESD.932,Technology Policy Organizations,Spring,2005,"technology policy; communications skills; cross-cultural negotiations; economic development challenges; Organizational Processes; regulation; entrepreneurship; multi-national; non-governmental non-profit; individual motivation; teamwork; systems change + +",https://ocw.mit.edu/courses/engineering-systems-division/esd-932-technology-policy-organizations-spring-2005 +ESD.932,Engineering Ethics,Spring,2006,philosophy; myth; Kant; John Stuart Mill; Kierkegaard; Augustine; Joseph Campbell; risk; disaster; honesty; whisteblower; social responsibility; Pugwash; environment; bioethics; lawsuit; praxistics; decision making; management; accident; choice; morals; complexity; judgement; consequence;,https://ocw.mit.edu/courses/engineering-systems-division/esd-932-engineering-ethics-spring-2006 +ESD.933,Technology Policy Negotiations and Dispute Resolution,Spring,2005,technology policy; technology policy negotiations; negotiations; dispute resolution; communications skills; cross-cultural negotiations; economic development challenges;,https://ocw.mit.edu/courses/engineering-systems-division/esd-933-technology-policy-negotiations-and-dispute-resolution-spring-2005 +ESD.S43,Green Supply Chain Management,Spring,2014,"supply chain management, Carbon footprint, life cycle analysis, environmental policy, environmentally sustainable supply chain systems, reverse logistics systems, supply chain sustainability strategy,multi-stakeholder engagements, green supply chain strategy, Carbon Disclosure Project",https://ocw.mit.edu/courses/engineering-systems-division/esd-s43-green-supply-chain-management-spring-2014 +ESD.S51,Systems Leadership and Management Praxis,Summer,2014,"decision-making, leadership development, high-tech business, smartphones, management, high-tech competition, Back Bay Battery online simulation, Nokia, HTC, Apple, Sony, Research in Motion",https://ocw.mit.edu/courses/engineering-systems-division/esd-s51-systems-leadership-and-management-praxis-summer-2014 +HST.021,Musculoskeletal Pathophysiology,IAP,2006,"musculoskeletal, bone, joints, connective tissue, biomechanics, muscle, metabolic bone diseases, calcium homeostasis, phosphate homeostasis, mineralization",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-021-musculoskeletal-pathophysiology-january-iap-2006 +HST.035,Principle and Practice of Human Pathology,Spring,2003,human pathology; disease mechanisms; cellular pathology; molecular pathology; diagnostic tools; surgical pathology; diagnostic spectroscopy; functional imaging; molecular imaging; molecular diagnostics; medicine; immune system; transplantation; diagnosis; neoplasia; pathobiology; pathophysiology,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-035-principle-and-practice-of-human-pathology-spring-2003 +HST.071,Human Reproductive Biology,Fall,2005,"clinical case, physiology, endocrinology, pathology, human reproduction, quantitative analysis, reproductive technology, reproduction, prenatal diagnosis, in vitro fertilization, abortion, menopause, contraception, reproductive biology, menstrual cycle, fertility, impotence, anatomy, sexual differentiation, sex, pregnancy",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-071-human-reproductive-biology-fall-2005 +HST.121,Gastroenterology,Fall,2005,"gastroenterology, anatomy, physiology, biochemistry, biophysics, bioengineering, gastrointestinal tract, pancreas, liver, biliary tract system, gross pathology, microscopic pathology, clinical diseases, molecular, cellular, pathophysiological processes, symptoms, medical, health",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-121-gastroenterology-fall-2005 +HST.131,Introduction to Neuroscience,Fall,2005,"neuroscience, neurobiology, neurochemistry, neurocytology, ion channels, neurons, synapse, synaptic plasticity, action potentials, neurophysiology, psychopharmacology, spinal cord, brainstem, neuroanatomy, cerebellum, cranial nerve, basal ganglia",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-131-introduction-to-neuroscience-fall-2005 +HST.151,Principles of Pharmacology,Spring,2005,"health care, pharmacology, pharmacologic agents, medical, pre-clinical, biophysics, biochemistry, physiology related to drug action, interaction, distribution, metabolism, toxicity",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-151-principles-of-pharmacology-spring-2005 +HST.161,Molecular Biology and Genetics in Modern Medicine,Fall,2007,genetics; genes; genetic disorders; inborn error; muscular dystrophy; PKU; phenylketoneuria; cancer; tumors; gene therapy; disease; birth defects; chromosomes; leukemia; RNAi; hemophilia; thalassemia; deafness; mutations; hypertrophic cardiomyopathy; epigenetics; rett syndrome; prenatal diagnosis; LOD scores; gene linkage; mitochondrial disorders; degenerative disorders; complex traits; Mendelian inheritance,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-161-molecular-biology-and-genetics-in-modern-medicine-fall-2007 +HST.176,Cellular and Molecular Immunology,Fall,2005,"immunology, immune system, lymphocyte, antigen, receptors, antibody, T cells, signal transduction, immunity, transplantation, autoimmunity",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-176-cellular-and-molecular-immunology-fall-2005 +HST.410J,Projects in Microscale Engineering for the Life Sciences,Spring,2007,cell manipulation; microchips; lithography; rapid prototyping; optical imaging of cells; cell sorting; microfluidics; osmosis; diffusion; microfabrication; models of diffusion; laminar flow; MATLAB data analysis; cell traps; experimental design; cytometry techniques; computer simulation of neural behavior; casting PDMS; coulter counter; plasma bonding,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-410j-projects-in-microscale-engineering-for-the-life-sciences-spring-2007 +HST.502,Survival Skills for Emerging Researchers,Spring,2003,"scientific practice, medical research, proposal development, peer review, human subject review, animal research, misconduct, intellectual property, grant writing, career development",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-502-survival-skills-for-researchers-the-responsible-conduct-of-research-spring-2003 +HST.508,Genomics and Computational Biology,Fall,2002,"sequence, structure, function, complex biological networks, quantative modeling, functional genomics analyses, algorithyms, statistics, database, simulation, applied medicine, biotechnology, drug discovery, genetic engineering, computational biology",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-508-genomics-and-computational-biology-fall-2002 +HST.508,Quantitative Genomics,Fall,2005,"genomics, quantitative genomics, comparative genomics, genes, genome, SNPs, haplotypes, sequence alignment, protein structure, protein folding, proteomics, structural genomics, functional genomics, networks, systems biology, biological networks, RNA, DNA, gene expression, evolutionary genetics, population genetics",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-508-quantitative-genomics-fall-2005 +HST.510,"Genomics, Computing, Economics, and Society",Fall,2005,"genomics, bioengineering, biological engineering, personalized medicine, informatics, bioinformatics, human genome, stem cells, genetically modified organisms, biophysics, bioethics, society, bioeconomics, statistics, modeling, datamining, systems biology, technology development, biotechnology, public policy, health policy, business, economics",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-510-genomics-computing-economics-and-society-fall-2005 +HST.512,Genomic Medicine,Spring,2004,"genomics; genomic medicine, genetics; genomic measurement; microarray; informatics; bioinformatics; computational biology; machine learning; pharmacogenomics; complex traits; individual pharmacology; cancer diagnostics; genetic disease; biomedical; genomes; bioethics; integrative genomics; genomic technologies",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-512-genomic-medicine-spring-2004 +HST.525J,Tumor Pathophysiology and Transport Phenomena,Fall,2005,tumor; cancer; tumor vasculature; antiangiogenesis; bone marrow-derived stem cells; BMDC; stem cell research; experimental cancer therapy; cancer research; tumor-host interactions; vascular normalization; vascular transport; interstitial transport; lymphatic transport; microcirculation; molecular therapeutics; blood vessels; angiogenesis; drug delivery; intravital microscopy,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-525j-tumor-pathophysiology-and-transport-phenomena-fall-2005 +HST.535,Principles and Practice of Tissue Engineering,Fall,2004,tissue engineering; scaffold; cell; stem cell; collagen; GAG; ECM; extracellular matrix; biomimetics; healing; skin; nerve; bone; cartilage;,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-535-principles-and-practice-of-tissue-engineering-fall-2004 +HST.542J,Quantitative Physiology: Organ Transport Systems,Spring,2004,"electrocardiogram, cardiovascular system, cardiovascular physiology, electrophysiology, myocardial cells, electrocardiography, physiological fluid mechanics, respiratory physiology, renal physiology, quantitative physiology, pulmonary mechanics, heart, arrhythmia, pulmonary modeling, clinical electrocardiography, ECG, EKG, ischemia, infarction, vector cardiogram, purkinje fibers, QRS waveform, tachycardia, action potential, depolarization, afterdepolarization, total lung capacity, systolic, diastolic, residual volume, vital capacity",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/hst-542j-quantitative-physiology-organ-transport-systems-spring-2004 +HST.582J,Biomedical Signal and Image Processing,Spring,2007,signal processing; medicine; biological signal; diagnosis; diagnostic tool; physiology; cardiology; speech recognition; speech processing; imaging; medical imaging; MRI; ultrasound; ECG; electrocardiogram; fourier; FFT; applications of probability; noise; MATLAB; digital filter; DSP;,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-582j-biomedical-signal-and-image-processing-spring-2007 +HST.583,Functional Magnetic Resonance Imaging: Data Acquisition and Analysis ,Fall,2008,"medical imaging; medical lab; medical technology; magnetic resonance imaging; MRI; fMRI; signal processing; human brain mapping; function, image formation physics; metabolism; psychology; physiology; image signals; image processing; parenchymal; cerebrovascular neuroanatomy; neurology; functional data analysis; experimental design; statistical models; human subjects; informed consent; institutional review board requirements; safety; medical; brain scan; brain imaging; DTI; vision; ",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-583-functional-magnetic-resonance-imaging-data-acquisition-and-analysis-fall-2008 +HST.584J,"Magnetic Resonance Analytic, Biochemical, and Imaging Techniques",Spring,2006,"MRI, fMRI, Magnetic Resonance, Imaging",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-584j-magnetic-resonance-analytic-biochemical-and-imaging-techniques-spring-2006 +HST.590,Biomedical Engineering Seminar Series: Topics in Medical Ethics and Responsible Conduct in Research,Fall,2005,"ethics, medical ethics, responsible research, responsible conduct, ethical dilemmas, professional conduct, ethical issues, collaboration, risk management, personal integrity",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-590-biomedical-engineering-seminar-series-topics-in-medical-ethics-and-responsible-conduct-in-research-fall-2005-spring-2006 +HST.590,Biomedical Engineering Seminar Series: Developing Professional Skills,Fall,2006,interviews; job talk; grant writing; grant rejection; professional communication; careers in academia; career development; professional skills; medical career; science career; constructive criticism; biomedical entrepreneur,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-590-biomedical-engineering-seminar-series-developing-professional-skills-fall-2006 +HST.720,Physiology of the Ear,Fall,2004,"cochlear physiology, cochlea, ear, ear canal, inner ear, middle ear, outer ear, auditory pathway, auditory nerve, auditory brainstem, acoustic coupling, auditory periphery, acoustic signals, sound transmission, cochlear amplification, synaptic transmission, hair cell transduction, efferent feedback control, hearing disorders, hearing, cochlear mechanics, basilar membrane, auditory nerve fiber response, otoacoustic emissions, outer hair cell",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-720-physiology-of-the-ear-fall-2004 +HST.721,The Peripheral Auditory System,Fall,2005,"peripheral auditory system, hair cells, frequency tuning, cochlear mechanics, mechano-electric transduction, outer hair cells, electromotility, cochlear amplifier, endocochlear potential, inner ear, ear, afferent synaptic transmission, auditory nerve response, auditory pathway, middle ear, inner ear",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-721-the-peripheral-auditory-system-fall-2005 +HST.722J,Brain Mechanisms for Hearing and Speech,Fall,2005,"hearing, speech, auditory brainstem, auditory cortex, auditory reflexes, descending systems, human auditory system, speech motor control, auditory learning, cortical representation, dorsal cochlear nucleus, neural coding, thalamo-cortical organization, thalamo-cortical processing, audio-visual integration",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-722j-brain-mechanisms-for-hearing-and-speech-fall-2005 +HST.723J,Neural Coding and Perception of Sound,Spring,2005,"sound perception, neural coding, neural structures, neural mechanisms, sound localization, acoustic signals, auditory neurons, temporal coding, neural maps, feature detectors, learning and plasticity, auditory masking, musical pitch, speech coding, cochlear implants, auditory system, binaural interactions, cochlear nucleus, binaural hearing, frequency selectivity, auditory cortex, scene analysis, object formation",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-723-neural-coding-and-perception-of-sound-spring-2005 +HST.725,Music Perception and Cognition,Spring,2009,music perception; music cognition; music memory; pitch; timbre; consonance; harmony; tonality; melody; expressive timing; rhythmic hierarchies; auditory perception; auditory pathway; musical acoustics; power spectra; psychophysics; neurocomputational models; neural correlates; music therapy; synesthesia; absolute pitch,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-725-music-perception-and-cognition-spring-2009 +HST.730,Molecular Biology for the Auditory System,Fall,2002,"molecular biology, auditory system, human genetics, pedigree analysis, linkage, cloning, ethics, legal, disorder, cochlea, research literature",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-730-molecular-biology-for-the-auditory-system-fall-2002 +HST.750,Modeling Issues in Speech and Hearing,Spring,2006,hearing; speech; modeling biology; network model of the ear; model building; dimensional analysis and scaling; resampling; monte carlo; forward vs. inverse; chaos; limits of prediction; hodgkin; huxley; molecular mathematic biology; cochlear input impedance; auditory network; auditory morphology; electric model of neural cell fiber; electric diagrams of neural cells; linear regression; sensitivity analysis; cochlea; inner ear; middle ear; auditory cortex; scientific literature ;analysis; paper analysis; tent maps; quadratic maps; ,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-750-modeling-issues-in-speech-and-hearing-spring-2006 +HST.921,Information Technology in the Health Care System of the Future,Spring,2009,health care; health care policy; patient behavior; information management; medical informatics; medical records; health record; online medicine; PHR; EHR; patient privacy; entrepreneurship; start-up; innovation; cybermedicine; telemedicine; non-profit; pharmaceutical; insurance; hospital; doctor; patient; medicine; social networking; economies of scale; patient education; self-care; network integration; decision support tools; disease managment; health economics; clinical effectiveness; medical software; mobile applications; intellectual property; ,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-921-information-technology-in-the-health-care-system-of-the-future-spring-2009 +HST.930J,Social Studies of Bioscience and Biotech ,Fall,2005,"social medicine, social studies, ethics, social issues, medical ethics, informed consent, risk society, social ethics, clinical research, medical anthropology, bioethics",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-930j-social-studies-of-bioscience-and-biotech-fall-2005 +HST.934J,"Introduction to Global Medicine: Bioscience, Technologies, Disparities, Strategies ",Spring,2010,global health; social medicine; Partners in Health; health reform; cardiac therapeutics; health disparities,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-934j-introduction-to-global-medicine-bioscience-technologies-disparities-strategies-spring-2010 +HST.935,Narrative Ethics: Literary Texts and Moral Issues in Medicine,IAP,2007,,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-935-narrative-ethics-literary-texts-and-moral-issues-in-medicine-january-iap-2007 +HST.936x,Global Health Informatics to Improve Quality of Care,,2020,, +HST.939,Designing and Sustaining Technology Innovation for Global Health Practice,Spring,2008,global health; developing countries; third world; africa; underserved population; rural medicine; health technology; health ventures; medical technology; medical innovation; entrepreneurship; non-profit; pharmaceutical design; rapid diagnostic test; systems design; student projects; field work; mentor program; interdisciplinary; health economics; disease management; drug distribution,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-939-designing-and-sustaining-technology-innovation-for-global-health-practice-spring-2008 +HST.947,Medical Artificial Intelligence,Spring,2005,"artificial intelligence, applied systems, rule chaining, heuristic search, constraint propagation, constrained search, inheritance, identification trees, neural nets, genetic algorithms, human intelligence, knowledge representation, intelligent systems; diagnosis; clinical simulation; genomics; proteomics; bioinformatics; ",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-947-medical-artificial-intelligence-spring-2005 +HST.950J,Medical Computing,Spring,2003,"clinical data, healthcare information systems, patient privacy, security, medical education, computing, genomic medicine, decision analysis",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-950j-medical-computing-spring-2003 +HST.950J,Biomedical Computing,Fall,2010,"medical informatics, bioinformatics, developing countries, medical data, clinical data, probabilistic models, graphical models, information theory, decision support, expert systems, personal health records, bayesian networks, bayesian models, health information systems, public health informatics, predictive genomics, patient data privacy",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-950j-biomedical-computing-fall-2010 +HST.951J,Medical Decision Support,Spring,2003,"decision analysis, artificial intelligence, predictive model construction, evaluation, medical software, decision support, knowledge-based systems, learning systems, logistic regression, classification trees, neural networks, rough sets, computer-based diagnosis, planning monitoring, therapeutic interventions, machine learning methods",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-951j-medical-decision-support-spring-2003 +HST.951J,Medical Decision Support,Fall,2005,"decision analysis, artificial intelligence, predictive model construction, evaluation, medical software, decision support, knowledge-based systems, learning systems, logistic regression, classification trees, neural networks, rough sets, computer-based diagnosis, planning monitoring, therapeutic interventions, machine learning methods",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-951j-medical-decision-support-fall-2005 +HST.952,Computing for Biomedical Scientists,Fall,2002,"biomedical, java, computer science, database",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-952-computing-for-biomedical-scientists-fall-2002 +HST.953,Collaborative Data Science for Healthcare,Fall,2020,"data science +healthcare +electronic health records +AI in healthcare +machine learning in healthcare +data analysis",https://ocw.mit.edu/courses/health-sciences-and-technology/hst-953-collaborative-data-science-for-healthcare-fall-2020 +HST.S14,Health Information Systems to Improve Quality of Care in Resource-Poor Settings,Spring,2012,health informatics; clinical decision support; health care management; public health; international development; developing country; ,https://ocw.mit.edu/courses/health-sciences-and-technology/hst-s14-health-information-systems-to-improve-quality-of-care-in-resource-poor-settings-spring-2012 +IDS.333,Risk and Decision Analysis,Fall,2021,, +IDS.338J,Multidisciplinary System Design Optimization,Spring,2010,systems engineering; optimization; product design; multidisciplinary design optimization; subsystem identification; heuristic search methods; genetic algorithms; simulated annealing; Pareto optimality; design for value, +IDS.410J,Modeling and Assessment for Policy,Spring,2013,policy; modeling; NASA; economics; memo; oil spill; clean air; sports statistics; breast cancer; scientific assessment process; integrated assessment modeling; model frameworks; systems modeling; policy-analysis techniques; science policy; risk assessment; adaptive management , +IDS.505J,"Engineering, Economics and Regulation of the Electric Power Sector",Spring,2010,electricity generation; power system operation; electric power transmission regulation; electricity tariffs; renewable energy sources; universal access to electricity; energy retail markets; CO2 markets;, +IDS.720J,Tools for Analysis: Design for Real Estate and Infrastructure Development,Spring,2010,real estate; infrastructure analysis; design structure matrix; Monte Carlo simulation; certainty equivalence valuation; , +IDS.900,Doctoral Seminar in Engineering Systems,Fall,2011,"engineering systems, complexity, uncertainty, fragility, robustness, systems engineering, systems dynamics, agent modeling, systems simulations, large-scale systems change, modeling paradigms, cumulative knowledge, empirical data generation, boundary setting, network models, policy evaluation ", +IDS.900,Integrating Doctoral Seminar on Emerging Technologies,Fall,2005,uncertainty; risk; politics; forecasting; future; prediction; politics; disaster; space shuttle; nuclear power; nuclear energy; energy policy; government; technology assessment; OTA; GPS; internet; packet switching; data network; military; DEC; Digital Equipment; drug; pharmaceutical; air transport; aircraft; public policy; industrial policy; UAV; decision;, +IDS.910,Leadership Development,Fall,2002,"group dynamics, leadership, negotiation, bargaining, communication, visioning, relating, enabling, cross-cultural negotiation", +IDS.910,Leadership Development,Fall,2014,"leadership, science policy, technology policy, personal development, science education, communication, visioning, organizational management, elevator speech, DiSC personal assessment, behavior assessment", +MAS.110,Fundamentals of Computational Media Design,Fall,2008,analysis; synthesis; computational media; computational and traditional arts; typography; design; programming; javascript; contemporary digital art; machine age; media design; analog vs digital art; graphic design; web design; photography; storytelling; modern art; internet design; web 2.0; XO laptop; OLPC;,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-110-fundamentals-of-computational-media-design-fall-2008 +MAS.111,Introduction to Doing Research in Media Arts and Sciences,Spring,2011,"research, UROP, undergraduate research, presentations, digital media, media lab",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-111-introduction-to-doing-research-in-media-arts-and-sciences-spring-2011 +MAS.160,"Signals, Systems and Information for Media Technology",Fall,2007,"audio; visual; video; A/V; digital media; digital audio; digital video; photography; digitial photography; spectrum; Spectrum plot; amplitude modulation; AM; Fourier series; frequency modulation; FM; orthogonality; Walsh functions; basis sets. Sampling theorem; aliasing; reconstruction; +FFT; DFT, DTFT; z-transform; IIR; frequency response; filter; filter response; impulse response; noise; communications system; communications theory; information theory; communication channel; coding; error correction; DSP; signal processing; digital signal processing;",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-160-signals-systems-and-information-for-media-technology-fall-2007 +MAS.450,Holographic Imaging,Spring,2003,"holography, interference, diffraction, imaging of single points, three-dimensional images, ""hands-on"" approach, physical phenomena, holograms",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-450-holographic-imaging-spring-2003 +MAS.531,Computational Camera and Photography,Fall,2009,digital photography; digital imaging; image processing; applied optics; computer graphics; computer vision; ,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-531-computational-camera-and-photography-fall-2009 +MAS.622J,Pattern Recognition and Analysis,Fall,2006,"pattern recognition; feature detection; classification; probability theory; pattern analysis; conditional probability; bayes rule; random vectors, decision theory; ROC curves; likelihood ratio test; fisher discriminant; template-based recognition; feature extraction; eigenvector and multilinear analysis; linear discriminant; perceptron learning; optimization by gradient descent; support vecotr machines; K-nearest-neighbor classification; parzen estimation; unsupervised learning; clustering; vector quantization; K-means; Expectation-Maximization; Hidden markov models; viterbi algorithm; Baum-Welch algorithm; linear dynamical systems; Kalman filtering; Bayesian networks; decision trees; reinforcement learning; genetic algorithms",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-622j-pattern-recognition-and-analysis-fall-2006 +MAS.630,Affective Computing,Fall,2015,"neuroscience; emotion;perception; decision-making; creativity; autism; learning; +physiology of emotion, machine recognition; wearable systems; usability; frustration; robot; agent; artificial intelligence; synthetic character; avatar; affect; customer service; customer experience; empathy; humanoid",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-630-affective-computing-fall-2015 +MAS.632,Conversational Computer Systems,Fall,2008,digital voice; voice synthesis; speech synthesis; digital speech; audio; coding; noise; comprehension; audio browsing; voice messaging; voice recognition; call center; voice response; computer voice; computer speech; telephony; mobile applications; voicemail; ,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-632-conversational-computer-systems-fall-2008 +MAS.666,Developmental Entrepreneurship,Fall,2003,developing nations; entrepreneurship; management; technology; population growth; poverty; innovation; social conscience; humanitarian design; low-cost technology; distribution of technology,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-666-developmental-entrepreneurship-fall-2003 +MAS.712,How to Learn (Almost) Anything,Spring,2001,digital technology; learning; education; pedagogy; industry; technology; adaptive; teaching; classroom; K-12; higher education; syllabus; planning; fabrication; computing; interactive technology; peer instruction; artificial intelligence,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-712-how-to-learn-almost-anything-spring-2001 +MAS.714J,Technologies for Creative Learning,Fall,2009,lifelong kindergarten; educational technology; constructivism; Scratch software; LEGO Mindstorms; new media literacy; educational games;,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-714j-technologies-for-creative-learning-fall-2009 +MAS.742,Industrial Design Intelligence: A Cognitive Approach to Engineering,Fall,2003,industrial design; architecture; media design; fabrication; customization; waterjet cutter; 3D printing; 3D milling; CNC machines; CAD/CAM; product design; intelligent design; cognitive science; model making; prototyping; machining; milling,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-742-industrial-design-intelligence-a-cognitive-approach-to-engineering-fall-2003 +MAS.771,Autism Theory and Technology ,Spring,2011,"autism, autism technology, ASD, assistive technology, disability, mainstreaming, special needs, autism spectrum disorder",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-771-autism-theory-and-technology-spring-2011 +MAS.836,Sensor Technologies for Interactive Environments,Spring,2011,human-computer interaction; analog electronics; digital electronics; sensing; piezoelectric; optical sensor; inertial sensor; sensor network; electronic monitoring; ,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-836-sensor-technologies-for-interactive-environments-spring-2011 +MAS.845,Special Topics in Cinematic Storytelling,Spring,2004,storytelling; human communication; representation; causality; live media; recorded media; computation; user interface; interaction; digital media; information and story; authoring; interface; computer-assisted storytelling; cinema; film; television; mass media,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-845-special-topics-in-cinematic-storytelling-spring-2004 +MAS.863,How to Make (Almost) Anything,Fall,2002,"tutorials, hands-on, resources for designing and fabricating smart systems, smart systems, design, tutorial, fabrication",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-863-how-to-make-almost-anything-fall-2002 +MAS.865J,Quantum Information Science,Spring,2006,"quantum computation, quantum error correction codes, fault tolerance, quantum algorithms, quantum entanglement, quantum protocols, communication complexity, quantum cryptography, adiabatic quantum computation, ",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-865j-quantum-information-science-spring-2006 +MAS.878,Special Topics in Multimedia Production: Experiences in Interactive Art,Fall,2003,interactive art; digital media; modern art; media; representation; personal narrative; cinema; web-based art; multimedia; representation; temporal art; mobile art;,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-878-special-topics-in-multimedia-production-experiences-in-interactive-art-fall-2003 +MAS.961,Numeric Photography,Fall,1998,photography; computation; numeric photography; digital artworks; digital photography; java; interactive design; interactive media; aesthetics; signal processing; interaction design; programming; visual arts,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-961-numeric-photography-fall-1998 +MAS.961,Seminar on Deep Engagement,Fall,2004,deep engagement; human psyche; media; television; photography; art; advertising; film; popular culture; machine models; human bonding; audience; viewer / viewed; interactive spaces; visceral reactions; interactive learning; participatory conditions; physiology; psychology,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-961-seminar-on-deep-engagement-fall-2004 +MAS.961,Ambient Intelligence,Spring,2005,HCI; smart environments; smart networked objects; augmented and mixed realities; ubiquitous computing; pervasive computing; tangible computing; intelligent interfaces; wearable computing,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-961-ambient-intelligence-spring-2005 +MAS.961,Special Topics: Designing Sociable Media,Spring,2008,online; online behavior;internet; interface; interaction; cultural mores; social cues; virtual world; on-line community; social networking; storytelling; persona; web 2.0; email; IM; cooperation; marketing; surveillance; creativity; connection; conversation; mobility; web design; conceptual metaphor;,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-961-special-topics-designing-sociable-media-spring-2008 +MAS.961,"Networks, Complexity and Its Applications",Spring,2011,"social networks, complex networks, macroconnections, Watts and Strogatz Model, Barabási-Albert Model, Modularity and Community Structure, The Lorenz Attractor, Lyapunov Exponents, visualizing networks, network structure",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-961-networks-complexity-and-its-applications-spring-2011 +MAS.962,Special Topics in Media Technology: Computational Semantics,Fall,2002,"relational networks, external grounding, words, meaning, computational semantics, semantics, semiotics, agent, sign, signifier",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-962-special-topics-in-media-technology-computational-semantics-fall-2002 +MAS.962,Digital Typography,Fall,1997,digital typography; design; type; text; visual arts; computation; digital artworks; java; interactive design; interactive media; aesthetics; signal processing; interaction design; programming; transformations; communication; typographic design,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-962-digital-typography-fall-1997 +MAS.962,The Nature of Constructionist Learning,Spring,2003,constructionism; education; teaching; theories and approaches to learning; pedagogy; epsitemology; critical theory; computing; interactive technology; methodology; education strategy; mathematics; science; engineering,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-962-the-nature-of-constructionist-learning-spring-2003 +MAS.962,Common Sense Reasoning for Interactive Applications,Fall,2006,common sense; reasoning; interactive applications; computers; knowledge; facts; artificial intelligence; interface designs; solutions; problem; human-computer collaboration; implementation; user interface; computer system; programming language; ,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-962-common-sense-reasoning-for-interactive-applications-fall-2006 +MAS.962,Special Topics: New Textiles,Spring,2010,fabric; wearable electronics; weaving; sensors; ,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-962-special-topics-new-textiles-spring-2010 +MAS.963,Techno-identity: Who we are and how we perceive ourselves and others at the dawn of the 21st century,Spring,2002,"human identity, artificial intelligence, religious beliefs, social mores, philosophical theories, mediated identity, sensing identity, privacy, Post-human identity, what does it mean to be human",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-963-techno-identity-who-we-are-and-how-we-perceive-ourselves-and-others-spring-2002 +MAS.963,"Out of Context: A Course on Computer Systems That Adapt To, and Learn From, Context",Fall,2001,"computer systems, input, context, computer systems that adapt, smart computers, intelligent agent software, digital devices of the future, context-aware application",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-963-out-of-context-a-course-on-computer-systems-that-adapt-to-and-learn-from-context-fall-2001 +MAS.963,Technological Tools for School Reform,Fall,2005,modern technologies; school reforms; progressive school reform; CCSC; Community Charter School of Cambridge; charter schools; education; innovative education; No Child left behind; learning communities; shared display technologies; educational technology; media literacy,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-963-technological-tools-for-school-reform-fall-2005 +MAS.964,Common Sense Reasoning for Interactive Applications,Fall,2002,"artificial intelligence, common sense knowledge, human-computer collaboration, common sense, reasoning, interactive, computer applications",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-964-common-sense-reasoning-for-interactive-applications-fall-2002 +MAS.965,Special Topics in Media Technology : Cooperative Machines,Fall,2003,cooperative machines; robotics; electrical engineering; manufacture; human interaction; perception; emotion; theory of mind; behavior and the mind; robots; human-machine collaboration; intention and action; teamwork,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-965-special-topics-in-media-technology-cooperative-machines-fall-2003 +MAS.965,Social Visualization,Fall,2004,social visualization; internet; chat; mediation; faces; emotion; emoticons; cognition; recognition; personality; perception; depiction; virtual presence; conversation; rhythym; psychology; representation; design; privacy;,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-965-social-visualization-fall-2004 +MAS.965,Relational Machines,Spring,2005,relational machines; emotional design; technology; human relationships; emotional expression; representation and manipulation; measuring relationships and interactions; assitive robotics for elderly; robotic pets; robotic therapy; language processing; machine teammates; collaboration; interactive learning; tutorials; wearable agent interaction; ambient agent interaction,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-965-relational-machines-spring-2005 +MAS.965,NextLab I: Designing Mobile Technologies for the Next Billion Users,Fall,2008,appropriate technology; sustainable development; international development; micro-finance; social entrepreneurship; social venture; communications technology; cell phone; cellular technology; SMS; mobile phone; mobile technology; innovation; health care; economic empowerment; education; civic engagement; bottom of the pyramid; poverty; ICT; ICT4D; can you make a cellphone change the world?,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-965-nextlab-i-designing-mobile-technologies-for-the-next-billion-users-fall-2008 +MAS.966,Digital Anthropology,Spring,2003,digital anthropology; applied social science; media arts; digital-artifact enabled experimental sociology/anthropology; digital devices; sensors; wireless; prototypes; products; human organization; social dynamics; sociometrics; technology testbeds; measuring human interaction; digital artifacts; human systems,https://ocw.mit.edu/courses/media-arts-and-sciences/mas-966-digital-anthropology-spring-2003 +MAS.S62,Cryptocurrency Engineering and Design,Spring,2018,"Signatures +hashing +hash chains +e-cash +motivation +Proof of Work +Mining +Transactions +the UTXO model +Synchronization process +pruning +SPV +wallet types +OP_RETURN +Catena +Forks +Peer-to-peer networks +PoW +other fork types +Fees +Transaction malleability +segregated witness +Payment channels +Lightning Network +Cross-chain Swaps +Discreet Log Contracts +MAST +Taproot +Graftroot +Anonimity +Coinjoin +Signature Aggregation +Confidential Transactions +Ethereum +smart contracts +Proof of Work at Industrial Scales +Alternative consensus mechanisms +New Directions in Crypto +zkLedger +",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-s62-cryptocurrency-engineering-and-design-spring-2018 +MAS.S63,Engineering Health: Towards the Tricorder,Fall,2013,"medical, tricorder, prototyping, diagnostic, health, microscopy, imaging, antibodies, Crusher, nanoparticles, sensor, pulse, bones, McCoy, biomarker, nerd, microfluid, Beverly, immunoassay, immune, telemedicine",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-s63-engineering-health-towards-the-tricorder-fall-2013 +MAS.S66,"Indistinguishable From ...Magic as Interface, Technology, and Tradition",Spring,2015,"magic, technology, illusion, ritual, performance, design, interface, game design, machine learning, neuroscience, tricks, design exercise, deception, bots, user experience",https://ocw.mit.edu/courses/media-arts-and-sciences/mas-s66-indistinguishable-from-magic-as-interface-technology-and-tradition-spring-2015 +PE.210,SCUBA,Spring,2007,,https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-210-scuba-spring-2007 +PE.550,Designing Your Life,IAP,2007,"design, living an extraordinary life, life coaching, excuses, mistakes, changes, empowerment, love, vision, action plan, wisdom, balance, communication, fears, accountability, truth, setting goals, community, personal growth, leadership roles, career",https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-550-designing-your-life-january-iap-2007 +PE.550,Designing Your Life,Spring,2009,"design, living an extraordinary life, life coaching, excuses, mistakes, changes, empowerment, love, vision, action plan, wisdom, balance, communication, fears, accountability, truth, setting goals, community, personal growth, leadership roles, career, promises, consequences, haunting incidents, healing, lies, cleaning up, integrity",https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-550-designing-your-life-spring-2009 +PE.710,Tennis,Spring,2007,tennis; forehand; backhand; serve; volley; racket; footwork; agility; strength; training; lob; net; court; grip; smash; drop shot; return; tactics,https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-710-tennis-spring-2007 +PE.720,Weight Training,Spring,2006,exercise; weight lifting; weight training; nutrition; rest; anabolic; catabolic; protein; amino acids; muscle groups; complex lifts; olympic lifts; sets; reps; overtraining; technique; spotting; splits; programs,https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-720-weight-training-spring-2006 +PE.730,Archery,Spring,2006,archery; bow; arrow; stringing; tourney; technique; release; aim; firing; grouping; clusters; safety; stretching; video; high speed video; stance; sighting; speed shooting; balance; musculature; tournaments; distance; accuracy; ,https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-730-archery-spring-2006 +PE.740,Fencing,Spring,2007,fencing; en garde; advance; retreat; lunge; footwork; foil; jump lunge;grip; attack; bladework; simple thrust; fencing salute; right-of-way; fencing actions; disengagements; second intentions; feints,https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-740-fencing-spring-2007 +PE.810,Sailing,Spring,2007,sailing; boating; athletics; tacking; jibing; sail; stunsl; tiller; rudder; dock; dinghy; solo; duo; Charles River; MIT Sailing Pavilion; collegiate sports; physical education,https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-810-sailing-spring-2007 +PE.910,Physical Intelligence,IAP,2002,orientation; gravity; perception; proprioception; spatial perception; walking; movement; complex coordination; physical intelligence; learning; development; e-motion; flight,https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-910-physical-intelligence-january-iap-2002 +PE.920,PE for ME,Spring,2005,thinking; moving; being; kinesthetics; proprioception; movement; body; disbility; coordination; human organism; sensing; feeling; limbs; physical thinking; physical intelligence; coordination,https://ocw.mit.edu/courses/athletics-physical-education-and-recreation/pe-920-pe-for-me-spring-2005 +RES.1-001,Project Evaluation: Essays and Case Studies ,Fall,2023,"civil engineering project, engineering economics, net present value, life-cycle costing, benefit-cost analysis, project evaluation, cost estimation, large-scale infrastructure, building design, construction, transportation systems, urban development, environmental projects, water resource management", +RES.10,Physics of COVID-19 Transmission,Fall,2020,,https://ocw.mit.edu/courses/chemical-engineering/res-10-s95-physics-of-covid-19-transmission-fall-2020 +RES.10-001,Making Science and Engineering Pictures: A Practical Guide to Presenting Your Work,Spring,2016,"scientific photography, journal submissions, PDMS photography, microfluidic devices, microarrays, drug delivery device, petri dishes, E. Coli growth, flatbed scanner images, human physiome chip, lung on a chip, electronic camera +microscale solar cells, solar cell, E-Ink, tomato images +music box, Venus’ flower basket, Soft microfluidic sensor, paper-based microfluidics, diagnostic device, macro photography",https://ocw.mit.edu/courses/chemical-engineering/res-10-001-making-science-and-engineering-pictures-a-practical-guide-to-presenting-your-work-spring-2016 +RES.10-002,Ethics of Bias in AI,Spring,2023,"bias +ai +training data +Locke +natural right +equality +justice", +RES.10-002,Ethics of Bias in AI,Spring,2023,"bias +ai +training data +Locke +natural right +equality +justice", +RES.11-001,Edgerton Center CITE Reports,Fall,2015,"Technology evaluation, sustainable development, supply chain, solar lantern, water filter, water test kit",https://ocw.mit.edu/courses/urban-studies-and-planning/res-11-001-cite-reports-fall-2015 +RES.11-002,"Intentional Public Disruptions: Art, Responsibility, and Pedagogy",Fall,2017,"pedagogy +art education +art +science +technology +water crisis +education +social justice +oppression +potable water +curriculum",https://ocw.mit.edu/courses/urban-studies-and-planning/res-11-002-intentional-public-disruptions-art-responsibility-and-pedagogy-fall-2017 +RES.11-003,Climate Justice Instructional Toolkit,Fall,2023,"climate justice +environmental justice +student literacies +pedagogy +just transition +indigenous climate action +mining +energy justice +inclusiveness", +RES.11-550,Leveraging Urban Mobility Disruptions to Create Better Cities,Spring,2021,"mobility +equity +land use +urban form +accessibility +transit +autonomous vehicles +system integration",https://ocw.mit.edu/courses/urban-studies-and-planning/res-11-550-leveraging-urban-mobility-disruptions-to-create-better-cities-spring-2021 +RES.12-000,Evolution of Physical Oceanography,Spring,2007,,https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/res-12-000-evolution-of-physical-oceanography-spring-2007 +RES.12-001,Topics in Fluid Dynamics,Spring,2022,"simple pendulum, inviscid pendulum, viscous pendulum, Reynolds number, decay rate, nonlinear projectile problem, Coriolis force, inertial forces, centrifugal force, energy budget, Lagrangian velocity, Eulerian velocity, Eulerian equations.",https://ocw.mit.edu/courses/earth-atmospheric-and-planetary-sciences/res-12-001-topics-in-fluid-dynamics-spring-2022 +RES.12-002,Terrascope,Spring,2023,, +RES.14-003,The Roosevelt Project,Fall,2022,, +RES.15-001,MIT Sloan LearningEdge,Fall,2008,"management +leadership +sloan school of management +strategy +sustainability +action learning +system dynamics +operations management +operations research +finance +accounting +ethics",https://ocw.mit.edu/courses/sloan-school-of-management/res-15-001-mit-sloan-teaching-innovation-resources-mstir-fall-2008 +RES.15-002,Mission & Metrics: Finance Training for Federal Credit Program Professionals,Summer,2016,"finance, budget, credit reform, OMB, BAO, Federal financing, schedule, small business credit, agency staff, institutional analysis, risk management, corporate finance disciplines, private sector financial management, program operations, policy makers, statutes, regulations, standard operating procedure",https://ocw.mit.edu/courses/sloan-school-of-management/res-15-002-mission-metrics-finance-training-for-federal-credit-program-professionals-summer-2016 +RES.15-003,Shaping the Future of Work (15.662x),Spring,2016,"future of work, work, labor, career, opportunities, next generation, workforce, labor market, the New Deal, post-war, social contract, 1980s, Saturn, work systems, alternate models, global corporations, organization, labor union, job security, emerging models, new technology, collective negotiation, negotiation",https://ocw.mit.edu/courses/sloan-school-of-management/res-15-003-shaping-the-future-of-work-15-662x-spring-2016 +RES.15-004,System Dynamics: Systems Thinking and Modeling for a Complex World,IAP,2020,"system dynamics +control theory +feedback +nonlinear +mental models +attribution error +structure +patterns of behavior +boom and bust +dynamic complexity +flawed mental models +implementation failure +causal loops +simulation +testing ",https://ocw.mit.edu/courses/sloan-school-of-management/res-15-004-system-dynamics-systems-thinking-and-modeling-for-a-complex-world-january-iap-2020 +RES.16-001,Lean Enterprise en Español,IAP,2012,Lean; six sigma; Lean iniciativa de la industria aeroespacial; líderes empresariales; mapeo de la cadena de valor; cuidado de la salud; la medicina; simulación; cadena de suministro; Lean ingeniería; análisis de la cadena de valor; variabilidad; southwest airlines; Boeing; Rockwell Collins; Lockheed Martin; New Balance; Lean Enterprise; español,https://ocw.mit.edu/courses/aeronautics-and-astronautics/res-16-001-lean-enterprise-en-espanol-january-iap-2012 +RES.17-001,"MIT Election Data + Science Lab +",Fall,2020,"election science +data +elections +politics +voting +research",https://ocw.mit.edu/courses/political-science/res-17-001-mit-election-data-science-lab-fall-2020 +RES.17-002,MIT Governance Lab ,Spring,2023,, +RES.18-001,Calculus Online Textbook,Fall,2023,, +RES.18-002,Introduction to MATLAB,Spring,2008,"MATLAB, matrix, flow control, if statement, while statement, for loop",https://ocw.mit.edu/courses/mathematics/res-18-002-introduction-to-matlab-spring-2008 +RES.18-003,"Calculus for Beginners and Artists + +",Spring,2005,,https://ocw.mit.edu/courses/mathematics/res-18-003-calculus-for-beginners-and-artists-spring-2005 +RES.18-004,The Torch or The Firehose: A Guide to Section Teaching,Spring,2009,,https://ocw.mit.edu/courses/mathematics/res-18-004-the-torch-or-the-firehose-a-guide-to-section-teaching-spring-2009 +RES.18-005,Highlights of Calculus,Spring,2010,,https://ocw.mit.edu/courses/mathematics/res-18-005-highlights-of-calculus-spring-2010 +RES.18-007,Calculus Revisited: Multivariable Calculus,Fall,2011,Vector Arithmetic Vector Calculus; Partial Derivatives; Matrix Algebra; Multiple Integration; Dot Product; Cross Product; Polar Coordinates; Chain Rule; Maxima and Minima; Green's Theorem; Jacobian,https://ocw.mit.edu/courses/mathematics/res-18-007-calculus-revisited-multivariable-calculus-fall-2011 +RES.18-008,"Calculus Revisited: Complex Variables, Differential Equations, and Linear Algebra",Fall,2011,Complex Variables; Differential Equations; Linear Algebra; Complex Numbers; Conformal Mappings; Sequences and Series; Linear Differential Equations; Undetermined Coefficients; Power Series; Laplace Transforms; Vector Spaces; Spanning Vectors;Constructing Bases; Linear Transformations; Determinant; Eigenvectors; Dot Products; Orthogonal Functions,https://ocw.mit.edu/courses/mathematics/res-18-008-calculus-revisited-complex-variables-differential-equations-and-linear-algebra-fall-2011 +RES.18-009,Learn Differential Equations: Up Close with Cleve Moler and Gilbert Strang,Fall,2015,"differential equations; ODE, MATLAB; first order equations; second order equations; matrices; Laplace transform; linear algebra; eigenvalues; eigenvectors; Fourier series;Runge-Kutta; Tumbling box; predator-prey equations; Lorenz Attractor",https://ocw.mit.edu/courses/mathematics/res-18-009-learn-differential-equations-up-close-with-gilbert-strang-and-cleve-moler-fall-2015 +RES.18-010,A Vision of Linear Algebra,Spring,2020,"linear algebra +matrix +matrices +column space +orthogonal vectors +eigenvalues +eigenvectors +singular values +singular vectors, factorization +A = CR +SVD", +RES.18-011,Algebra I Student Notes,Fall,2021,,https://ocw.mit.edu/courses/mathematics/res-18-011-algebra-i-student-notes-fall-2021 +RES.18-012,Algebra II Student Notes,Spring,2022,"algebra +Schur’s Lemma +group +ideal class group +ring +polynomial Ring +field +number field +finite field +factorization +ideal factorization", +RES.18.006,Calculus Revisited: Single Variable Calculus,Fall,2010,,https://ocw.mit.edu/courses/mathematics/res-18-006-calculus-revisited-single-variable-calculus-fall-2010 +RES.2-002,Finite Element Procedures for Solids and Structures,Spring,2010,,https://ocw.mit.edu/courses/mechanical-engineering/res-2-002-finite-element-procedures-for-solids-and-structures-spring-2010 +RES.2-005,Girls Who Build: Make Your Own Wearables Workshop,Spring,2015,"high school, +workshop, +women in STEM, +fashion, jewelry, 3D printing, laser cut, wearable, programming, Arduino, manufacturing, mechanical design, circuits, code ",https://ocw.mit.edu/courses/mechanical-engineering/res-2-005-girls-who-build-make-your-own-wearables-workshop-spring-2015 +RES.2-006,Girls Who Build Cameras,Summer,2016,"high school, STEM, cameras, build, hands-on, introduction, technology, Lincoln Laboratory, Beaverworks Center, Raspberry Pi, coding, engineering, women in technology, workshop",https://ocw.mit.edu/courses/mechanical-engineering/res-2-006-girls-who-build-cameras-summer-2016 +RES.2-008,Thermodynamics and Climate Change,Summer,2022,"climate +climate change +carbon cycle +thermodynamics +combustion +enthalpy +fuels +entropy +engine +energy +solar energy +wind energy +energy storage +hydropower +nuclear", +RES.21G-001,"The User-Friendly Classroom +",Fall,2020,"international teaching assistants +education +students +user-friendly +phase diagram aerodynamics +plane +expectations +first day +graph theory +Ohms Law +",https://ocw.mit.edu/courses/global-studies-and-languages/res-21g-001-the-user-friendly-classroom-fall-2020 +RES.21G-003,Learning Chinese: A Foundation Course in Mandarin,Spring,2011,"Chinese, Mandarin, introductory, pinyin, tones, calligraphy, textbook, dialogue, vocabulary, reading, writing, speaking, traditional characters, simplified characters, grammar, history, cuisine,geography, dialect, culture",https://ocw.mit.edu/courses/global-studies-and-languages/res-21g-003-learning-chinese-a-foundation-course-in-mandarin-spring-2011 +RES.21G-01,Kana,Spring,2010,,https://ocw.mit.edu/courses/global-studies-and-languages/res-21g-01-kana-spring-2010 +RES.21g-505,"Kanji Learning Any Time, Any Place For Japanese V",Spring,2022,, +RES.21G-506,"Kanji Learning Any Time, Any Place for Japanese VI",Spring,2021,"advanced Japanese, kanji, Japanese kanji character, East Asian language",https://ocw.mit.edu/courses/global-studies-and-languages/res-21g-506-kanji-learning-any-time-any-place-for-japanese-vi-spring-2021 +RES.21G-601,Телемосты (Telebridges) Russian Conversation Exchange Site,,2021,, +RES.21H-001,Visualizing the Birth of Modern Tokyo,Spring,2021,"100 views, Kiyochika Kobayashi, woodblock prints, Edo, Koizumi Kishio, Imperial Capital, cosmopolitanism, ultranationalism, Meiji restoration, MIT Visualizing Cultures",https://ocw.mit.edu/courses/history/res-21h-001-visualizing-the-birth-of-modern-tokyo-spring-2021 +RES.21M-001,Heavy Metal 101,IAP,2023,, +RES.21W-01,Angles,Fall,2015,"writing, essay, exemplary, freshmen, online magazine, magazine, creative writing, literary, student work, example, communications, humanities, English", +RES.24-002,MIT-Haiti Initiative / Inisyativ MIT-Ayiti ,Spring,2023,"Haitian Kreyòl +Creole +Haiti +STEM +education +lesson plans +textbooks", +RES.3-002,Collaborative Design and Creative Expression with Arduino Microcontrollers,IAP,2017,"Arduino, microcontroller, open-source electronic prototyping platform, interactive electronic objects, hands-on class project, do-it-yourself, DIY, open hardware electronic devices, single-board computers, robotics hardware",https://ocw.mit.edu/courses/materials-science-and-engineering/res-3-002-collaborative-design-and-creative-expression-with-arduino-microcontrollers-january-iap-2017 +RES.3-003,Learn to Build Your Own Videogame with the Unity Game Engine and Microsoft Kinect,IAP,2017,"Unity Game Engine, Microsoft Kinect, video game design for beginners, build your own video game, cross-platform game engine, hands-on workshop, educational videogames, collaborative software development, short course, MIT IAP course",https://ocw.mit.edu/courses/materials-science-and-engineering/res-3-003-learn-to-build-your-own-videogame-with-the-unity-game-engine-and-microsoft-kinect-january-iap-2017 +RES.3-004,Visualizing Materials Science,Fall,2017,"energetics +visualization +Mathematica +simulation +Mohr's Circle +Fluid Flow +Hooke's Law +Cubic Solids +Modeling +Energy Analysis +Liquid Crystals +Spherical Distribution Problem +Vacancy Diffusion +Particle in a Tube +Mathematica Functions +Degree of Crystallinity +XRD Plots +Thin Film Rainbows +Real and Reciprocal Space in 2D and 3D +Perfect Diamond +Nanoparticle-polymer Network +Screw Dislocations +Magnet +Quantum Time Evolution +Split Operator Fourier Transform Algorithm +Tight Binding Model +Crystallography +Potential Energy Surfaces +2D Brillouin Zones +Crystallographic Point Groups +Crystalline Structures +Heat Transfer +Mohr's Circles",https://ocw.mit.edu/courses/materials-science-and-engineering/res-3-004-visualizing-materials-science-fall-2017 +RES.3-006,MICRO Mentoring Resources and Materials Science Curriculum,Spring,2021,, +RES.5-0001,Digital Lab Techniques,Spring,2007,,https://ocw.mit.edu/courses/chemistry/res-5-0001-digital-lab-techniques-manual-spring-2007 +RES.6-001,Electromagnetic Fields and Energy,Spring,2008,,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-001-electromagnetic-fields-and-energy-spring-2008 +RES.6-001,Continuum Electromechanics,Spring,2009,"continuum electromechanics, fluids, ferrofluids, jets",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-001-continuum-electromechanics-spring-2009 +RES.6-002,Electromagnetic Field Theory,Spring,2008,,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-002-electromagnetic-field-theory-a-problem-solving-approach-spring-2008 +RES.6-003,Electromechanical Dynamics,Spring,2009,"electromechanical dynamics, electromagnetic field theory, waves, dc machines, rotors, generators, motors",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-003-electromechanical-dynamics-spring-2009 +RES.6-005,Understanding Lasers and Fiberoptics,Spring,2008,"lasers, fiberoptics, unique properties, oscillator, optical amplifiers, simple laser operations, optimum power output, spontaneous emission broadening, collision broadening, Doppler broadening, spectrum of laser light, multifrequency output from lasers, optics of laser beams, manipulation of laser beams, amplifier limitations, laser cavities, single frequency selection, frequency stability of lasers, intensity stability of lasers, laser transverse modes, spectrum of transverse modes, Q-switching of lasers, cavity dumping of lasers, mode locking of lasers, laser categories, optically-pumped lasers, broadband optically-pumped lasers, bandwidth reduction and tuning of broadband lasers, electron-collision-pumped lasers, atom-collision-pumped lasers, +chemically-pumped lasers, electron-current-injection-pumped lasers, survey of popular lasers, laser applications, high beam collimation, small spot size, tunable wavelength, narrow spectral width, high intensity, short pulse",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-005-understanding-lasers-and-fiberoptics-spring-2008 +RES.6-006,Video Demonstrations in Lasers and Optics,Spring,2008,"lasers, optics, demonstrations, linear polarizer, polarization rotation, optical isolator, light, dielectric, scattering, Rayleigh scattering, reflection, glass-air boundary, air-glass boundary, Brewster's angle, total internal reflection, phase shifts, interference, fringe contrast, coherence, plane mirror cavity, curved mirror cavity, Fraunhofer diffraction, Fresnel diffraction, single slit, double-slit, multiple slit, optical fiber, light amplifier, argon laser",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-006-video-demonstrations-in-lasers-and-optics-spring-2008 +RES.6-007,Signals and Systems,Spring,2011,,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-007-signals-and-systems-spring-2011 +RES.6-008,Digital Signal Processing,Spring,2011,,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-008-digital-signal-processing-spring-2011 +RES.6-009,"How to Process, Analyze and Visualize Data",IAP,2012,"data analysis, data cleaning, visualization, big data, statistics, hypothesis testing, regression, text processing, large datasets, Hadoop, MapReduce",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-009-how-to-process-analyze-and-visualize-data-january-iap-2012 +RES.6-010,Electronic Feedback Systems,Spring,2013,"electronic feedback systems, operational amplifiers, electromagnetic fields, stability, root locus, feedback compensation, nonlinearities, system dynamics",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-010-electronic-feedback-systems-spring-2013 +RES.6-011,The Art of Insight in Science and Engineering: Mastering Complexity,Fall,2014,"approximation, science, engineering, complexity, divide and conquer, abstraction, symmetry, proportion, dimension, lumping, probabalistic reasoning",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-011-the-art-of-insight-in-science-and-engineering-mastering-complexity-fall-2014 +RES.6-012,Introduction to Probability,Spring,2018,probability; probability models; bayes rule; discrete random variables; continuous random variables; bernoulli process; poisson process; markov chains; central limit theorem; statistical inference,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-012-introduction-to-probability-spring-2018 +RES.6-013,AI 101,Fall,2021,"machine learning +artificial intelligence +general AI +narrow AI +classification +clustering +regression +training data +supervised learning +unsupervised learning +reinforcement learning",https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-013-ai-101-fall-2021 +RES.6-033,Principles of Computer System Design: An Introduction,Spring,2009,,https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/res-6-004-principles-of-computer-system-design-an-introduction-spring-2009 +RES.7-001,Pre-7.01: Getting up to Speed in Biology,Summer,2019,"biology +cells +molecules +inheritance +genetics +DNA +RNA +tRNA +mutations +pedigrees +phenotype +genotype +genetic engineering + +",https://ocw.mit.edu/courses/biology/res-7-001-pre-7-01-getting-up-to-speed-in-biology-summer-2019 +RES.7-003,Brave New Planet,Fall,2020,"internet +deepfakes +artificial intelligence +climate change +carbon emission +ecosystems +genetic engineering +gene drives +autonomous weapons +killer robots +future of war +predictive algorithms ",https://ocw.mit.edu/courses/biology/res-7-003-brave-new-planet-fall-2020 +RES.7-004,BioNook Online Biology Resource,,,, +RES.7-005,Biology Teaching Assistant (TA) Training,Fall,2021,"teaching, curriculum, recitation", +RES.7-006,7.03x Genetics on edX,,,"biology, genetics, molecular biology ", +RES.7-007,7.06x Cell Biology on edX,,,"cell transport +cell signaling +cytoskeleton +cell cycle +cell-cell interactions +", +RES.7-008,"7.28x Molecular Biology on edX +",Spring,2023,, +RES.7-009,MIT 7.InTInclusive Teaching,Fall,2022,"Teaching +Education +Curriculum +Inclusive +Intersectionality", +RES.8-001,Applied Geometric Algebra,Spring,2009,,https://ocw.mit.edu/courses/physics/res-8-001-applied-geometric-algebra-spring-2009 +RES.8-002,"A WikiTextBook for Introductory Mechanics + +",Fall,2009,,https://ocw.mit.edu/courses/physics/res-8-002-a-wikitextbook-for-introductory-mechanics-fall-2009 +RES.8-003,Physics Demonstration Videos,Spring,2012,"physics, laboratory, demonstrations, videos",https://ocw.mit.edu/courses/physics/res-8-003-physics-demonstration-videos-spring-2012 +RES.8-004,Reducing the Danger of Nuclear Weapons and Proliferation,IAP,2015,"nuclear proliferation, nuclear weapons, south asia, deterrence theory, india, pakistan, kargil war, operation parakram, nuclear war, abolition, obama, bomb, cold war, escalation, treaty, deterrence, missiles, disarmament",https://ocw.mit.edu/courses/physics/res-8-004-reducing-the-danger-of-nuclear-weapons-and-proliferation-january-iap-2015 +RES.8-005,Vibrations and Waves Problem Solving,Fall,2012,"vibrations; waves; mass on a spring; LC circuit; simple harmonic motion; harmonic oscillators, damping, coupled oscillators, traveling waves, standing waves; electromagnetic waves; interference; radiating electromagnetic waves; Quality Factor Q; ",https://ocw.mit.edu/courses/physics/res-8-005-vibrations-and-waves-problem-solving-fall-2012 +RES.8-007,Cosmic Origin of the Chemical Elements ,Fall,2019,"stars +telescopes +heavy elements +astronomy +stellar archeology +chemical elements +supernovae",https://ocw.mit.edu/courses/physics/res-8-007-cosmic-origin-of-the-chemical-elements-fall-2019 +RES.8-008,Nuclear Weapons Education Project,Spring,2022,, +RES.8-009,Introduction to Oscillations and Waves ,Summer,2017,"mechanical vibrations +waves +simple harmonic motion +simple harmonic oscillator +classical pendulum +damped oscillation +driven oscillation +coupled oscillation +wave equation +Maxwell’s equations +standing waves +traveling waves +electromagnetic waves +linear dynamics", +RES.8-010,Introduction to Statistical Physics ,Summer,2018,"statistical physics +statistical mechanics +probability +thermodynamics +random variables +entropy +free energy +Boltzmann distribution +partition function +ideal gas +Laplace's method +mean field ising model", +RES.9-0002,Statistics & Visualization for Data Analysis & Inference,IAP,2009,"hierarchical normal model, kidney cancer death rates, jumping distribution, educational testing example, posterior predictive simulations, postpaid incentives, posterior predictive checking, attentional delay, using posterior simulations, incident smokers, partially statistics, visualization, data, analysis, inference, classified observations, log posterior density, hyperprior distribution, overdispersed starting points, posterior predictive checks, iterative weighted linear regression, posterior predictive distribution, chain simulation algorithms, noninformative distribution, jumping kernel, ignorable design, unnormalized posterior density, noninformative uniform, central posterior interval, log posterior distribution, radon model, varying intercept model, storable votes, multilevel estimates, binned residual plot, folder nes, robit regression, unmodeled data, robit model, unmodeled parameters, predictive replications, fitting multilevel models, full multilevel model, overdispersed model, flight simulator data, varying treatment effects, simple multilevel model, pooling factor, binned residuals, ignorability assumption, log uranium, multilevel logistic regression model, replicated datasets, predictive comparison, output glm",https://ocw.mit.edu/courses/brain-and-cognitive-sciences/res-9-0002-statistics-and-visualization-for-data-analysis-and-inference-january-iap-2009 +RES.9-003,"Brains, Minds and Machines Summer Course",Summer,2015,neuroscience; cognition; cognitive science; brain; intelligence; neural circuit; vision; audition; speech; robotics; articifical intelligence; computational neuroscience; machine learning;,https://ocw.mit.edu/courses/brain-and-cognitive-sciences/res-9-003-brains-minds-and-machines-summer-course-summer-2015 +RES.9-004,Nancy's Brain Talks,,,"perceptual functions +cognitive functions +functional organization +cortical regions +networks +cognitive neuroscience +neuroanatomy +experimental design +visual pathway +reward system +speech, music +auditory skills +language +mentalizing +theory of mind +deep networks +attention +awareness", +RES.9-005,fMRI Bootcamp,,2017,, +RES.9-006,AFNI Training Bootcamp (CBMM),Spring,2018,, +RES.9-007,MEG Tutorials (CBMM),,,, +RES.9-008,BCS Computational Tutorials (CBMM),,,, +RES.BLOSS,Blended Learning Open Source Science or Math Studies (BLOSSOMS) ,Spring,2010,, +RES.CMS-001,Media Literacy in the Age of Misinformation,Spring,2021,"deepfake +media literacy +critical thinking +AI +artificial intelligence +machine learning +ethics +misinformation",https://ocw.mit.edu/courses/comparative-media-studies-writing/res-cms-001-media-literacy-in-the-age-of-deepfakes-spring-2021 +RES.CMS-154,Launching Innovation in Schools,Spring,2019,"education +launching innovation +sustaining innovation +teaching +learning +collaboration +partnerships +instructional improvement initiative +cycle of experiment and experience +creative tension +measuring progress",https://ocw.mit.edu/courses/comparative-media-studies-writing/res-cms-154-launching-innovation-in-schools-spring-2019 +RES.CMS-155,"Design Thinking for Leading and Learning +",Spring,2019,"design thinking +K-12 +education +systemic change +technology +schools +school systems +problem-solving +communication",https://ocw.mit.edu/courses/comparative-media-studies-writing/res-cms-155-design-thinking-for-leading-and-learning-spring-2019 +RES.CMS-501,Envisioning the Graduate of the Future,Spring,2020,"education +college +vocation +careers +high school +learners +graduate profile +secondary school +future of work",https://ocw.mit.edu/courses/comparative-media-studies-writing/res-cms-501-envisioning-the-graduate-of-the-future-spring-2020 +RES.CMS-502,"Competency-Based Education: The Why, What, and How",Spring,2020,,https://ocw.mit.edu/courses/comparative-media-studies-writing/res-cms-502-competency-based-education-the-why-what-and-how-spring-2020 +RES.CMS-503,"Becoming a More Equitable Educator: Mindsets and Practices +",Spring,2020,"education +college +inquiry +practice +action +action project +educator mindsets +case study",https://ocw.mit.edu/courses/comparative-media-studies-writing/res-cms-503-becoming-a-more-equitable-educator-mindsets-and-practices-spring-2020 +RES.CMS-504,Sorting Truth From Fiction: Civic Online Reasoning,Spring,2021,, +RES.EC-001,Exploring Fairness in Machine Learning for International Development,Spring,2020,"machine learning +artificial intelligence +AI +fairness +bias +ethics +computer science",https://ocw.mit.edu/courses/edgerton-center/res-ec-001-exploring-fairness-in-machine-learning-for-international-development-spring-2020 +RES.EC-002,Lean Research Skills for Conducting Interviews,Spring,2021,"interview +research +evaluation +design +lean research +",https://ocw.mit.edu/courses/edgerton-center/res-ec-002-lean-research-skills-for-conducting-interviews-spring-2021 +RES.EC-003,D-Lab Student Showcases,Spring,2022,, +RES.EC-004,Energy Needs Assessment Toolkit,Spring,2017,, +RES.ENV-001,Climate Action Hands-On: Harnessing Science with Communities to Cut Carbon,IAP,2017,"citizen science, community science, natural gas, methane, gas leak, methane leak, climate change, global warming, greenhouse gas, GHG, environmental data", +RES.ENV-003,EarthDNA's Climate 101,Fall,2019,"climate change +education +public policy +presentations +global warming +carbon emissions + +", +RES.ENV-004,MIT Climate Portal,Fall,2020,"climate science +climate change +nuclear energy +mining +greenhouse gases +carbon pricing +carbon offsets +energy storage +hydrogen +ocean acidification +Paris Agreement +Fusion +Biofuel +renewable energy +carbon capture", +RES.ENV-005,"Climate Science, Risk & Solutions (Climate Primer)",Fall,2020,, +RES.ENV-006,Teaching with Sustainability,IAP,2022,"education +sustainability +SDGs +UNESCO +sustainable development goals +lesson plans +positivist +pos-positivist", +RES.ES-001,MIT Prison Education Initiative Discussions About Incarceration,IAP,2021,"MIT PEI, mass incarceration, criminal justice reform, policing, legal system, restorative justice",https://ocw.mit.edu/courses/experimental-study-group/res-es-001-mit-prison-education-initiative-discussion-about-incarceration-january-iap-2021 +RES.GEM4,Global Enterprise for Micro-Mechanics and Molecular Medicine (GEM4),Summer,2006,, +RES.HS-002,Chemistry Behind the Magic: Chemical Demonstrations for the Classroom,,,, +RES.HS-003,ChemLab Boot Camp,,,, +RES.HST-001,MIT Little Devices Lab,Fall,2021,"health technologies +medical technologies +medical devices +nurses +healthcare innovation +diagnostics +microfluidics +biofabrication +drug delivery",https://ocw.mit.edu/courses/health-sciences-and-technology/res-hst-001-mit-little-devices-lab-fall-2021 +RES.LL-001,Introduction to Radar Systems,Spring,2007,to be supplied, +RES.LL-002,Adaptive Antennas and Phased Arrays,Spring,2010,, +RES.LL-003,"Build a Small Radar System Capable of Sensing Range, Doppler, and Synthetic Aperture Radar Imaging ",IAP,2011,applied electromagnetics; RF design; signal processing; analog design; radar system design; practical electronics; MATLAB, +RES.LL-004,LL EduCATE: Introduction to Engineering Concepts,Spring,2022,"engineering +computer science +software engineering +bioengineering +civil engineering +chemical engineering +data science +electrical engineering +environmental engineering +mechanical engineering +nuclear engineering +software engineering", +RES.LL-005,Mathematics of Big Data and Machine Learning,IAP,2020,"machine learning, big data, artificial intelligence, AI, data analytics, dynamic distributed dimensional data model, D4M, associate arrays, group theory, entity analysis, perfect Power Law, bio sequence correlation, Accumulo, Kronecker graphs, data processing ", +RES.MAS-001,RAISE (Responsible AI for Social Empowerment and Education),Spring,2022,"Artificial Intelligence, AI, MIT RAISE, STEM education, teacher's workshop",https://ocw.mit.edu/courses/media-arts-and-sciences/res-mas-001-raise-responsible-ait-for-social-empowerment-and-education-spring-2022/ +RES.MAS-002,Day of AI,Spring,2022,"Artificial intelligence, STEM education, teacher's training, teacher's workshop",https://ocw.mit.edu/courses/media-arts-and-sciences/res-mas-002-day-of-ai-spring-2022/ +RES.STP-001,Science Policy Bootcamp,IAP,2011,"science policy; globalization; innovation system; ""valley of death""; DARPA; energy technology; Edison's Invention Factory; Bell Labs; Genetech; genome project; Xerox Parc; competitiveness debate", +RES.STR-001,Geographic Information System (GIS)Tutorial,IAP,2022,, +RES.STR-002,Data Management,Spring,2016,"Data Management, Data Storage, Data Management Plan, DMPTool, Data Sharing, Open Data, File Organization, version control", +RES.TL-002,STAR: Software Tools for Academics and Researchers,Spring,2012,structural biology; molecular 3-D viewer; Protein Data Bank; genetic cross; genetic cross simulator; DNA; ORF; Open Reading Frame; genomic gene expression; microarray analysis; hydrological analysis; watersheds; molecular dynamics; atomistic materials modeling; distributed computer cluster;Elastic Compute Cloud; EC2; parallel programming; OpenMP; OpenMPI ; , +RES.TLL-004,STEM Concept Videos,Fall,2013,"Communication, Conservation, Derivatives and Integrals, Differential Equations, Governing Rules, Linear Systems, Problem Solving, Representations, Quantum aspects of the atomic model, Statistical thermodynamics, Vector spaces and linear transformations, professional competencies, problem solving, communication, active learning", +RES.TLL-005,How to Speak,IAP,2018,"communication +public speaking +job interviews +lectures +presentations +slides +oral exams +using props", +RES.TLL-007,Case Studies in Social and Ethical Responsibilities of Computing,,,"case studies +ethics +computing +data science +computing professionals +policy specialists +social responsibilities +ethical responsibilities +technology +discussion questions", +RES.TLL-008,Social and Ethical Responsibilities of Computing (SERC),Spring,2023,"ethics +computing +privacy +surveillance +justice +human rights +AI +algorithms +environment +social +robotics +policy +law", +RES.TLL-009,IIT Joint Entrance Exam Preparation,Fall,2022,, +RES.TLL-01,Guidelines for Teaching @ MIT and Beyond,Spring,2016,"educational experiences +guidelines on teaching +guidelines on learning +evidence-based practices +curriculum and teaching +higher education", +STS.001,Technology in American History,Spring,2006,colonization; Civil War; World War II; Cold War; industrialization; mass production; craftsmanship; transportation; Taylorism; aeronautics; systems approach; computers; control; automation; nature; popular culture; terrorism; engineering; hobbyist; communications; Internet; machine age; Apollo program; biotechnology; environment;,https://ocw.mit.edu/courses/science-technology-and-society/sts-001-technology-in-american-history-spring-2006 +STS.002,Toward the Scientific Revolution,Fall,2003,Antiquity; Middle Ages; Renaissance; science; cosmology; natural history; physics; mathematics; astronomy; medicine; alchemy; technology; Plato; Aristotle; Hippocrates; Ptolemy; Euclid; Galen; Vesalius; Copernicus; Kepler; Galileo; Bacon; Descartes; Newton,https://ocw.mit.edu/courses/science-technology-and-society/sts-002-toward-the-scientific-revolution-fall-2003 +STS.002,Finance and Society,Spring,2016,"history, finance, society, economics, politics, culture, technology, history of finance",https://ocw.mit.edu/courses/science-technology-and-society/sts-002-finance-and-society-spring-2016 +STS.003,The Rise of Modern Science,Fall,2010,history of science; philosophy; ancient history; medieval history; industrial revolution; natural history; cosmology; psychology; relativity;,https://ocw.mit.edu/courses/science-technology-and-society/sts-003-the-rise-of-modern-science-fall-2010 +STS.004,"Science, Technology, & World",Fall,2013,"sts, science technology and society, aaron swartz, photography, utopia, dystopia, archives, interdisciplinary, reflexivity, two cultures, technics, technological determinism, actor network, semantic void, reification",https://ocw.mit.edu/courses/science-technology-and-society/sts-004-science-technology-world-fall-2013 +STS.005,Disease and Society in America,Fall,2005,Science; technology; society; disease; America; health; life; smallpox; tuberculosis; obesity; heart disease; mental illness; medicine; culture; economics; politics; Health care; historical approach; morbidity; mortality; medical theory; practice; hospitals; biomedical; research; industry; ethics.,https://ocw.mit.edu/courses/science-technology-and-society/sts-005-disease-and-society-in-america-fall-2005 +STS.007,Technology in History,Fall,2010,civilization; history of agriculture; industrial revolution; military history; prehistoric; fossil fuels; invention,https://ocw.mit.edu/courses/science-technology-and-society/sts-007-technology-in-history-fall-2010 +STS.009,Evolution and Society,Spring,2012,"evolution, darwin, huxley, scopes, natural theology, natural science, wallace, bates, on the origin of species",https://ocw.mit.edu/courses/science-technology-and-society/sts-009-evolution-and-society-spring-2012 +STS.010,Neuroscience and Society,Spring,2010,cognitive science; evolutionary psychology; neurobiology; brain imaging; MRI; CT scan; fMRI; brain; mind; morality; moral reasoning; decision making; intelligence; empathy; trust; religion; love; emotion; gender differences; sexuality; stress; prejudice; attention; psychopharmaceuticals; antidepressant; neuroeconomics; neuromarketing; neurotheology; cognitive enhancement; witness; courtroom testimony; addiction; violence; learning; behavior,https://ocw.mit.edu/courses/science-technology-and-society/sts-010-neuroscience-and-society-spring-2010 +STS.011,American Science: Ethical Conflicts and Political Choices,Fall,2007,risk; science; society; ethics; politics; technology; history; controversy; atomic; whistleblowing; GMO; genetic engineering; nuclear; space exploration; energy; policy; debate; ethics; museum; archeology; war; terrorism; tradeoff; decision making; medicine; health care policy; biotechnology; climate change; global warming; energy; human subjects;,https://ocw.mit.edu/courses/science-technology-and-society/sts-011-american-science-ethical-conflicts-and-political-choices-fall-2007 +STS.014,Principles and Practice of Science Communication,Spring,2006,public understanding of science; science writing; museum; exhibit; debate; journalism; stem cell; recombinant DNA; intelligent design; GMA; genetically modified food; biotechnology; bioengineering; risk; journal; newspaper; radio; fraud; cloning; evolution; controversy,https://ocw.mit.edu/courses/science-technology-and-society/sts-014-principles-and-practice-of-science-communication-spring-2006 +STS.025J,Making the Modern World: The Industrial Revolution in Global Perspective ,Fall,2009,world history; British history; European history; Asian history; South American history; American history; 18th century; 19th century; 20th century; transportation; warfare; capitalism; electrification; factories; mass communication; industrialization,https://ocw.mit.edu/courses/science-technology-and-society/sts-025j-making-the-modern-world-the-industrial-revolution-in-global-perspective-fall-2009 +STS.032,"Energy, Environment, and Society: Global Politics, Technologies, and Ecologies of the Water-Energy-Food Crises",Spring,2018,"energy +sustainability +environment +public policy +society +history +global politics +world development +developing countries +case studies +technology +food scarcity +water crisis +natural resources +environmental governance +food security",https://ocw.mit.edu/courses/science-technology-and-society/sts-032-energy-environment-and-society-global-politics-technologies-and-ecologies-of-the-water-energy-food-crises-spring-2018 +STS.034,Science Communication: A Practical Guide,Fall,2011,"science communication, popular science, technical writing, communication, memos, articles, science policy",https://ocw.mit.edu/courses/science-technology-and-society/sts-034-science-communication-a-practical-guide-fall-2011 +STS.035,The History of Computing,Spring,2004,computers; history; digital; scientific instrument; applied science; meteorology; nuclear physics; logic; mathematics; cognitive psychology; biochemistry; aerospace; medicine; supercomputing; distributed computing; linguistics; humanities; hypertext,https://ocw.mit.edu/courses/science-technology-and-society/sts-035-the-history-of-computing-spring-2004 +STS.036,Technology and Nature in American History,Spring,2008,"landscape, technology, nature, wilderness, industry, industrial, commons, America, history, agriculture, systems, conservation, preservation, development, environment, native American; railroad; transportation; aesthetics; colonial history; Dust Bowl; National Parks; water; drought; natural resources; food; materialism; capitalism; organic food; photography; film; ",https://ocw.mit.edu/courses/science-technology-and-society/sts-036-technology-and-nature-in-american-history-spring-2008 +STS.038,Energy and Environment in American History: 1705-2005,Fall,2006,history; energy; society; culture; technology; politics; diplomacy; environment; economics; technological innovation; social change; consumers; fire; wind; water; oil; industrial revolution; thermodynamics; electrification; agriculture; automobiles; suburbanization; nuclear power; nuclear weapons; global warming; energy crisis,https://ocw.mit.edu/courses/science-technology-and-society/sts-038-energy-and-environment-in-american-history-1705-2005-fall-2006 +STS.042J,"Einstein, Oppenheimer, Feynman: Physics in the 20th Century",Fall,2020,,https://ocw.mit.edu/courses/science-technology-and-society/sts-042-einstein-oppenheimer-feynman-physics-in-the-20th-century-fall-2020 +STS.049J,Technology and Gender in American History,Spring,2004,"history, gender, american history, technology, history of technology, culture, identity, twentieth century, modern, industrialization, demographics, women, systems, modernity",https://ocw.mit.edu/courses/science-technology-and-society/sts-049j-technology-and-gender-in-american-history-spring-2004 +STS.050,The History of MIT,Spring,2011,"history of mit, history of technology, history of higher education, history, MIT, boston, cambridge, mit 150",https://ocw.mit.edu/courses/science-technology-and-society/sts-050-the-history-of-mit-spring-2011 +STS.050,The History of MIT,Spring,2016,"history of mit, history of technology, history of higher education, history, MIT, boston, cambridge, MIT centennial, history of boston, history of cambridge, museums",https://ocw.mit.edu/courses/science-technology-and-society/sts-050-the-history-of-mit-spring-2016 +STS.062J,"Drugs, Politics, and Culture",Spring,2006,"drugs, politics, society, cross-cultural perspective, mind-altering substances, habit-forming substances, global trade, sugar, opium, cocaine, capitalism, alcohol, alcohol abuse, LSD, Prozac, war on drugs, tobacco, drug laws.",https://ocw.mit.edu/courses/science-technology-and-society/sts-062j-drugs-politics-and-culture-spring-2006 +STS.067,Scientific Visualization across Disciplines: A Critical Introduction,Spring,2005,,https://ocw.mit.edu/courses/science-technology-and-society/sts-067-scientific-visualization-across-disciplines-a-critical-introduction-spring-2005 +STS.069,Technology in a Dangerous World,Fall,2002,"current events, technology, terrorism, danger, technological risk, remediation, sociotechnical systems, imagination of disaster, identity, religion, education",https://ocw.mit.edu/courses/science-technology-and-society/sts-069-technology-in-a-dangerous-world-fall-2002 +STS.080,Youth Political Participation,Spring,2016,"politics, youth politics, political history, political participation, new media, technology, political activism, activism, youth groups, youth activism",https://ocw.mit.edu/courses/science-technology-and-society/sts-080-youth-political-participation-spring-2016 +STS.081J,"Innovation Systems for Science, Technology, Energy, Manufacturing, and Health",Spring,2017,"innovation systems +case studies +advanced manufacturing +health sectors +public policy +economic growth +science policy +technology policy +energy +medical science +economic models +society +federal government +energy innovation +public agencies",https://ocw.mit.edu/courses/science-technology-and-society/sts-081-innovation-systems-for-science-technology-energy-manufacturing-and-health-spring-2017 +STS.089,Technology and Innovation in Africa,Fall,2014,"technology, innovation, Africa, entrepreneurship, colonization, food production, textiles, cotton, climate engineering, mining, metallurgy, medicine, culture, guns, horses, cell phones, music",https://ocw.mit.edu/courses/science-technology-and-society/sts-089-technology-and-innovation-in-africa-fall-2014 +STS.310,History of Science,Fall,2015,history; science; darwin; galileo; goethe; mesmer; boyle; hobbes; einstein; bethe; oppenheimer; scientific revolution; victorian; philosophy; science in cultural context; imperialism; natural history; institutions; biomedical research; modern physics; post-war physics; scientific advancement; evolution,https://ocw.mit.edu/courses/science-technology-and-society/sts-310-history-of-science-fall-2015 +STS.330,History and Anthropology of Medicine and Biology,Spring,2013,"bodies, natural, biological, organization, watson, crick, darwin, evolution, race, medicine, biopolitics, bioeconomics",https://ocw.mit.edu/courses/science-technology-and-society/sts-330-history-and-anthropology-of-medicine-and-biology-spring-2013 +STS.340J,Introduction to the History of Technology,Fall,2006,geography; systems; manufacturing; communication; management; industry; industrial; nature; electrification; mass production; industrialization; war; military; Bell System; nuclear; cybernetics; flight; Wright Brothers; aerospace; gender; airline; reproduction; computing; internet; computer; electronics;,https://ocw.mit.edu/courses/science-technology-and-society/sts-340j-introduction-to-the-history-of-technology-fall-2006 +STS.350,Social Study of Science and Technology,Spring,2004,Social; study; science; technology; interdisciplinary field; social practice; history; philosophy; sociology; scientific institutions; knowledge; anthropology; feminism; critical race theory; post-colonial studies; queer theory; human culture; politics; theories; methods; reproduction; social reproduction. biological reproduction; electronic reproduction.,https://ocw.mit.edu/courses/science-technology-and-society/sts-350-social-study-of-science-and-technology-spring-2004 +STS.360,Ethnography,Spring,2003,Anthropology; fieldwork; oral history; ethnomethodology; advertising; knowledge communities; interviewing; restudies,https://ocw.mit.edu/courses/science-technology-and-society/sts-360-ethnography-spring-2003 +STS.427,"The Civil War and the Emergence of Modern America, 1861-1890",Spring,2015,"civil war, modern america, union, confederacy, america, technology, industrial revolution, secession, abraham lincoln, industrialization, battlefield, ulysses s grant, muskets, naval history, yankee, railroad, telegraphy, medicine, public health, reconstruction, morrill land grant act, pacific railroad act, international arms trade, machine tool industry, modern management, labor relations, ",https://ocw.mit.edu/courses/science-technology-and-society/sts-427-the-civil-war-and-the-emergence-of-modern-america-1861-1890-spring-2015 +STS.428,Technology and Change in Rural America,Fall,2004,"history, technology, change, rural, america, american history, science, food, agriculture, production, systems, politics",https://ocw.mit.edu/courses/science-technology-and-society/sts-428-technology-and-change-in-rural-america-fall-2004 +STS.429,Food and Power in the Twentieth Century,Spring,2005,History; food; analysis;transform; technological innovations; preserve; surplus; drying; freezing; canning; salting; travel; space; lived; relations; neighbors; relatives;economic order; capitalism; preservation; development; cultural; political; economic; techno-scientific history; mass-production techniques; industrial farming initiatives; consumption; vertical integration; business firms; globalization; race; gender identities; labor movements; America.,https://ocw.mit.edu/courses/science-technology-and-society/sts-429-food-and-power-in-the-twentieth-century-spring-2005 +STS.436,Cold War Science,Fall,2008,"cold war, history of science, nuclear age, post-cold-war era, atomic bomb, nuclear weapons, atom bomb, hydrogen bomb, atomic energy, McCarthyism, espionage, anti-communism, spying; soviet union, american science; HUAC; oppenheimer; arms race; disarmament; Sputnik; iron curtain; space race; globalization; capitalism; academic freedom; CIA; National Security Agency; NSA; military-industrial complex; quantum physics; physics; ",https://ocw.mit.edu/courses/science-technology-and-society/sts-436-cold-war-science-fall-2008 +STS.460,"Histories of Information, Communication, and Computing Technologies",Spring,2015,"history, information, communication, computing, technology, ICT, military, intelligence agency, business, government, entertainment, cultural history, proto-ICT, dissertation, metanarrative, monograph, secondary sources, primary sources, knowledge, publishing",https://ocw.mit.edu/courses/science-technology-and-society/sts-460-histories-of-information-communication-and-computing-technologies-spring-2015 +STS.462,Social and Political Implications of Technology,Spring,2006,design; planning; history; American history; electrification; aviation; Taylorism; war; military history; fire prevention; risk; development; business; civilization;,https://ocw.mit.edu/courses/science-technology-and-society/sts-462-social-and-political-implications-of-technology-spring-2006 +STS.464,Cultural History of Technology,Spring,2005,"history, technology, science, techne, industry, intellectual history, cultural history, management, engineering, industrial arts, mechanism, mechanic arts, mechanical arts, Bigelow, Taylorism, determinism, technological determinism, manufacturing, manufactures, factory, capitalism, entrepreneurship, innovation",https://ocw.mit.edu/courses/science-technology-and-society/sts-464-cultural-history-of-technology-spring-2005 +STS.464,Technology and the Literary Imagination ,Spring,2008,"history, technology, science, techne, industry, intellectual history, cultural history, management, engineering, industrial arts, mechanism, mechanical arts, technological determinism, manufacturing, manufactures, factory, capitalism, entrepreneurship, innovation; ecology; environmentalism; pollution; literature; American history; the Enlightenment; industrialization; Industrial Revolution; ",https://ocw.mit.edu/courses/science-technology-and-society/sts-464-technology-and-the-literary-imagination-spring-2008 +STS.467,Research Seminar in Deep Sea Archaeology,Spring,2002,"archaeology, deep sea archaeology, oceanography, archaeology, survey, new technologies, excavation, shipwreck, robots, submarines, Aegean, Minoan, Sicily, Phoenician, Greek, Roman",https://ocw.mit.edu/courses/science-technology-and-society/sts-467-research-seminar-in-deep-sea-archaeology-spring-2002 +STS.471J,Engineering Apollo: The Moon Project as a Complex System,Spring,2007,space exploration; lunar landing; lunar module; LM; LEM; astronauts; Apollo program; space program; Soviets; Soviet space program; 1960s politics; Kennedy; NASA; space craft design; man on the moon; lunar science; space science; mission to Mars; ,https://ocw.mit.edu/courses/science-technology-and-society/sts-471j-engineering-apollo-the-moon-project-as-a-complex-system-spring-2007 +STS.S28,"Godzilla and the Bullet Train: Technology and Culture in Modern Japan +",Fall,2005,modern japan; transformation of japan; nationalism; japanese culture; postwar japan; anime; japanese media; japanese history; modernization; cultural ideology; godzilla; technology transfer; shinkansen,https://ocw.mit.edu/courses/science-technology-and-society/sts-s28-godzilla-and-the-bullet-train-technology-and-culture-in-modern-japan-fall-2005 +WGS.101,Introduction to Women's and Gender Studies,Fall,2014,gender; women; law; culture; education; work; medicine; social policy; family; women's rights; race; class; Senaca Falls; suffrage; The Yellow Wallpaper; Rosie the Riveter; activism; gender roles; beauty; sexuality; marriage; transgender; gender equality; sweatshop; pro-choice; pro-life; feminist ,https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-101-introduction-to-womens-and-gender-studies-fall-2014 +WGS.110J,Sexual and Gender Identities,Spring,2016,gender; sexual identity; sexual history; gay; heterosexuality; homosexuality; transgender; race; love; reproduction; lesbianism; working girls; white slave traffic; birth control; feminism; woman's suffrage movement; sexual revolution; gay liberation; second wave feminist; black feminism; women's lib; gay pride; religious right; AIDS; Jerry Falwell; pornography; sexual harassment; Lawrence v. Texas; college sexual assault; gay marriage;,https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-110j-sexual-and-gender-identities-spring-2016 +WGS.111,Gender & Media: Collaborations in Feminism and Technology,Spring,2016,"race, class, gender, sexual identity, media, new media, digital technology, digital media, popular culture, film, television, print journalism, blogs, video, advertising, cyberfeminism, intersectionality",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-111-gender-media-collaborations-in-feminism-and-technology-spring-2016 +WGS.115,Gender and Technology,Spring,2013,"technology, gender, feminism, gendered technology, household technologies, sex trade, telephony, robots",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-115-gender-and-technology-spring-2013 +WGS.150,"Gender, Power, Leadership and the Workplace",Spring,2015,"gender inequality, wage gap, gender gap, diversity, parental leave, affirmative action, childcare, bias, stereotypes, feminism, intersectionality",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-150-gender-power-leadership-and-the-workplace-spring-2015 +WGS.151,"Gender, Health, and Society +",Spring,2016,gender; health; society; public health; epidemiology; cardiovascular disease; hormone therapy; contraceptives; sexually transmitted infection; pregnancy; birth; mental health; motherhood; biology; abortion; sexual orientation; gender identity; global policy,https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-151-gender-health-and-society-spring-2016 +WGS.160J,"Science Activism: Gender, Race, and Power",Fall,2019,"gender +race +power +science +activism +nuclear weapons +environmentalism +climate change +civil rights +Vietnam War +genetic engineering +intersectional feminism +student activism +MIT",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-160j-science-activism-gender-race-and-power-fall-2019 +WGS.181,Queer Cinema and Visual Culture,Fall,2017,"LGBTQ +film +queer cinema +Hollywood production code +censorship +stereotypes +tropes +sexual identity +gender identity +queer theory +queer text +Stonewall +gay subtext +AIDS +Black masculinity +Rope +The Children's Hour +The Danish Girl +Carol +Fun Home +Philadelphia +Alison Bechdel +Paris Is Burning +Tongues Untied +The Watermelon Woman +Free CeCe!",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-181-queer-cinema-and-visual-culture-fall-2017 +WGS.225J,"Science and Race, Sex, and Gender",Spring,2023,, +WGS.301J,Feminist Thought,Fall,2014,"feminism; feminist; sex; gender; oppression; Humanist approach; Gynocentric approach; Dominance approach; social construction; liberal; subjection; female; politics; pornography; lesbian; +Simone de Beauvoir; Butler; domestic violence; prejudice;queer theory; masculinity;epistemic injustice;",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-301j-feminist-thought-fall-2014 +WGS.615,Feminist Inquiry: Strategies for Effective Scholarship,Fall,2012,"feminism, feminist, inquiry, feminist inquiry, globalization, interdiscipline, research, methods, politics, poststructuralism, narration, representation of the body, production, reproduction, identity, third wave feminism",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-615-feminist-inquiry-strategies-for-effective-scholarship-fall-2012 +WGS.640,Screen Women: Body Narratives in Popular American Film,Spring,2014,"film, American film, women, gender, popular culture, feminism, film theory, politics, body, sexuality, ",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-640-screen-women-body-narratives-in-popular-american-film-spring-2014 +WGS.640,"Gender, Race, and the Construction of the American West +",Fall,2014,"gender, race, American west, frontier, Great Plains, Borderlands, sexuality, immigration, migration, labor, politics, reform, Great Depression, WWII, Georgia O'Keefe",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-640-gender-race-and-the-construction-of-the-american-west-fall-2014 +WGS.640,Studies in Women's Life Narratives: Interrogating Marriage: Case Studies in American Law and Culture,Fall,2007,marriage; sex; same-sex marriage; cross-racial marraige; Goodridge; Lawrence v. Texas; seduction; abandonment; bastard; race; gender; lesbian; intimate friendships; boston marriage; gay marriage; feminist; sexuality; gender; women; homosexual; equality,https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-640-studies-in-womens-life-narratives-interrogating-marriage-case-studies-in-american-law-and-culture-fall-2007 +WGS.645,"Gender, Health and Marginalization Through a Critical Feminist Lens",Fall,2014,"gender, health, marginalization, feminist, neo-liberal, menstrual health, corporate obstetrics, abortion, obesity, intersex, harassment, mental health, stress, parenting, ethics, pharmaceuticals, women, men",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-645-gender-health-and-marginalization-through-a-critical-feminist-lens-fall-2014 +WGS.645,"Issues of Representation: Women, Representation, and Music in Selected Folk Traditions of the British Isles and North America",Fall,2005,"Representation; women; music, folk music; traditions; British Isles; North America; gender; creation; transmission; performance; dissemination; collection; literary representation; historiography; stories; female identity; song texts; work; cultural roles. ",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-645-issues-of-representation-women-representation-and-music-in-selected-folk-traditions-of-the-british-isles-and-north-america-fall-2005 +WGS.645,"Gendering U.S. Immigration Policy: Sociopolitical, Theological and Feminist Perspectives",Spring,2019,"gender +immigration +policy +United States +migration +race",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-645-gendering-u-s-immigration-policy-sociopolitical-theological-and-feminist-perspectives-spring-2019 +WGS.693,"Gender, Race, and the Complexities of Science and Technology: A Problem-Based Learning Experiment",Spring,2009,"gender, race, science, technology, problem-based learning",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-693-gender-race-and-the-complexities-of-science-and-technology-a-problem-based-learning-experiment-spring-2009 +WGS.700,"Changing Life: Reading the Intersections of Gender, Race, Biology, and Literature",Spring,2017,"gender, race, biology, literature, science criticism, clmate change, projects, project-based learning, PBL,science, culture, feminism, anti-racism, activism ",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-700-changing-life-reading-the-intersections-of-gender-race-biology-and-literature-spring-2017 +WGS.S10,Reproductive Politics in the United States,Spring,2013,"reproductive politics, reproduction, women's liberation, politics, class, race, sexuality, birth control, abortion, pregnancy, fetus, parenting",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-s10-reproductive-politics-in-the-united-states-spring-2013 +WGS.S10,"Gender, Power, Leadership, and the Workplace",Spring,2014,"gender, power, leadership, workplace, race, poverty, inequality, ethnicity, labor, corporate, work, family, work-life balance, government, policy, politics, sexual harassment, affirmative action, parental leave, child care, ",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-s10-gender-power-leadership-and-the-workplace-spring-2014 +WGS.S10,Special Topics in Women & Gender Studies Seminar: Latina Women's Voices,Spring,2010,"Latina, women, code-switching, first generation,coming-of-age, Chicana, roots, revolution, politics, poverty, social criticism, kinship, biography, magic realism, mythical historicism",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-s10-special-topics-in-women-gender-studies-seminar-latina-womens-voices-spring-2010 +WGS.S10,History of Women in Science and Engineering,Fall,2017,"history +history of science and technology +women in science +engineering +science +STEM +women +",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-s10-history-of-women-in-science-and-engineering-fall-2017 +WGS.S10,Black Feminist Health Science Studies,Spring,2021,"Black feminist + +health science studies + +feminist technoscience studies + +sexual binary + +race + +class + +gender + +standpoint theory + +intersectionality + +medicine +",https://ocw.mit.edu/courses/womens-and-gender-studies/wgs-s10-black-feminist-health-science-studies-spring-2021 diff --git a/ocw_oer_export/utilities/__init__.py b/ocw_oer_export/utilities/__init__.py index 60193e2..46d6931 100644 --- a/ocw_oer_export/utilities/__init__.py +++ b/ocw_oer_export/utilities/__init__.py @@ -1,4 +1,5 @@ -__all__ = ["text_cleanup", "delete_file"] +__all__ = ["normalize_course_url", "text_cleanup", "delete_file"] +from .normalize_course_url import normalize_course_url from .text_cleanup import text_cleanup from .delete_file import delete_file diff --git a/ocw_oer_export/utilities/normalize_course_url.py b/ocw_oer_export/utilities/normalize_course_url.py new file mode 100644 index 0000000..ac08037 --- /dev/null +++ b/ocw_oer_export/utilities/normalize_course_url.py @@ -0,0 +1,23 @@ +""" +Module for normalizing OCW FM export course URLs to the format comparable with MIT Open's API. +""" + + +def normalize_course_url(url): + """ + The OCW FM export format includes the department name: + 'ocw.mit.edu/courses/department_name/course_metadata' + + This function removes the 'department_name' to match the MIT Open's API format: + 'ocw.mit.edu/courses/course_metadata' + + Example: + Input: 'ocw.mit.edu/courses/mathematics/18-06-linear-algebra-spring-2010' + Output: 'ocw.mit.edu/courses/18-06-linear-algebra-spring-2010' + """ + if "/courses/" in url: + base_url, course_path = url.split("/courses/", 1) + course_metadata = course_path.split("/", 1)[1] + normalized_url = base_url + "/courses/" + course_metadata + return normalized_url + return url