Documents Found!
As seen in
Less Work, Better Grades
Join
Course Hero
Access
best resources
Ace
your classes
Ace your courses with Course Hero!

Limited, unformatted preview (showing 53 of 1600 words):
...Winter Systems 2007 Module 2 Architectural Support for Operating Systems Ed Lazowska lazowska @cs.washi ngton.edu 570 Allen Center Even coarse architectural trends impact tremendously the design of systems Processing power doubling every 18 months 60% improvement each year factor of 100 every decade 1980: 1 MHz Apple II+ == $2,000 1980 also 1 MIPS VAX-11/780 == $120,000 2006: 3.0GHz Pentium D == $800 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 2 Primary...
Study Smarter, Score Higher
 
Document Content (unformatted)
Course Hero has millions of student submitted documents similar to the one below including study guides, homework solutions, papers, exam answer keys and textbook solutions.
Winter Systems 2007 Module 2 Architectural Support for Operating Systems Ed Lazowska lazowska @cs.washi ngton.edu 570 Allen Center Even coarse architectural trends impact tremendously the design of systems Processing power doubling every 18 months 60% improvement each year factor of 100 every decade 1980: 1 MHz Apple II+ == $2,000 1980 also 1 MIPS VAX-11/780 == $120,000 2006: 3.0GHz Pentium D == $800 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 2 Primary memory capacity same story, same reason (Moore s Law) 1972: 1MB = $1,000,000 1982: I remember pulling all kinds of strings to get a special deal: 512K of VAX-11/780 memory for $30,000 2005: 4GB vs. 2GB (@400MHz) = $800 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 3 today: 4GB vs. 2GB (@667MHz) = $290 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 4 Aside: Where does it all go? Facetiously: What Gordon giveth, Bill taketh away Realistically: our expectations for what the system will do increase relentlessly e.g., GUI Software is like a gas it expands to fill the available space Nathan Myhrvold (1960-) Microsoft Stock Price 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 5 Disk capacity, 1975-1989 doubled every 3+ years 25% improvement each year factor of 10 every decade Still exponential, but far less rapid than processor performance doubling every 12 months 100% improvement each year factor of 1000 every decade 10x as fast as processor performance! Disk capacity since 1990 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 6 Only a few years ago, we purchased disks by the megabyte (and it hurt!) Today, 1 GB (a billion bytes) costs $1 $0.50 $0.25 from Dell (except you have to buy in increments of 40 80 250 GB) => 1 TB costs $1K $500 $250, 1 PB costs $1M $500K $250K 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 7 Optical bandwidth today Doubling every 9 months 150% improvement each year Factor of 10,000 every decade 10x as fast as disk capacity! 100x as fast as processor performance!! What are some of the implications of these trends? Just one example: We have always designed systems so that they spend processing power in order to save scarce storage and bandwidth! 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 8 Storage Latency: How Far Away is the Data? Andromeda 10 9 Tape /Optical Robot Pluto 2,000 Years 10 6 Disk 2 Years 100 10 2 1 01/18/09 Memory On Board Cache On Chip Cache Registers Olympia 1.5 hr This Building 10 min This Room My Head 1 min 2 9 2004 Jim Gray, Microsoft Corporation 2007 Gribble, Lazowska, Levy, Zahorjan 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 10 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 11 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 12 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 13 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 14 Lower-level architecture affects the OS even more dramatically The operating system supports sharing and protection multiple applications can run concurrently, sharing resources a buggy or malicious application can t nail other applications or the system There are many approaches to achieving this The architecture determines which approaches are viable (reasonably efficient, or even possible) includes instruction set (synchronization, I/O, ) also hardware components like MMU or DMA controllers 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 15 Architectural support can vastly simplify (or complicate!) OS tasks e.g.: early PC operating systems (DOS, MacOS) lacked support for virtual memory, in part because at that time PCs lacked necessary hardware support Apollo workstation used two CPUs as a bandaid for nonrestartable instructions! Until very recently, Intel-based PCs still lacked support for 64-bit addressing (which has been available for a decade on other platforms: MIPS, Alpha, IBM, etc ) changing rapidly due to AMD s 64-bit architecture 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 16 Architectural features affecting OS s These features were built primarily to support OS s: timer (clock) operation synchronization instructions (e.g., atomic test-and-set) memory protection I/O control operations interrupts and exceptions protected modes of execution (kernel vs. user) privileged instructions system calls (and software interrupts) [2006] virtualization architectures (aka Intel discovers the early 1970s) Intel: http://www.intel.com/technology/itj/2006/v10i3/1-hardware/1abstract.htm AMD: http://enterprise.amd.com/us-en/AMD-Business/BusinessSolutions/Consolidation/Virtualization.aspx 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 17 Privileged instructions some instructions are restricted to the OS known as protected or privileged instructions e.g., only the OS can: directly access I/O devices (disks, network cards) why? manipulate memory state management page table pointers, TLB loads, etc. why? manipulate special mode bits interrupt priority level why? halt instruction why? 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 18 OS protection So how does the processor know if a privileged instruction should be executed? the architecture must support at least two modes of operation: kernel mode and user mode VAX, x86 support 4 protection modes mode is set by status bit in a protected processor register user programs execute in user mode OS executes in kernel mode (OS == kernel) Privileged instructions can only be executed in kernel mode what happens if user mode attempts to execute a privileged instruction? 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 19 Crossing protection boundaries So how do user programs do something privileged? e.g., how can you write to a disk if can you t execute I/O instructions? User programs must call an OS procedure OS defines a sequence of system calls how does the user-mode to kernel-mode transition happen? There must be a system call instruction, which: causes an exception (throws a software interrupt), which vectors to a kernel handler passes a parameter indicating which system call to invoke saves caller s state (registers, mode bit) so they can be restored OS must verify caller s parameters (e.g., pointers) must be a way to return to user mode once done 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 20 A kernel crossing illustrated Firefox: read(int fileDescriptor, void *buffer, int numBytes) package arguments trap to kernel mode user mode kernel mode trap handler save registers find sys_read( ) handler in vector table sys_read( ) kernel routine restore app state, return to user mode, resume 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 21 System call issues What would happen if kernel didn t save state? Why must the kernel verify arguments? How can you reference kernel objects as arguments or results to/from system calls? 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 22 Memory protection OS must protect user programs from each other maliciousness, ineptitude OS must also protect itself from user programs integrity and security what about protecting user programs from OS? Simplest scheme: base and limit registers are these protected? Prog A Prog B Prog C 01/18/09 base reg limit reg base and limit registers are loaded by OS before starting program 2007 Gribble, Lazowska, Levy, Zahorjan 23 More sophisticated memory protection coming later in the course paging, segmentation, virtual memory page tables, page table pointers translation lookaside buffers (TLBs) page fault handling 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 24 OS control flow After the OS has booted, all entry to the kernel happens as the result of an event event immediately stops current execution changes mode to kernel mode, event handler is called Kernel defines handlers for each event type specific types are defined by the architecture e.g.: timer event, I/O interrupt, system call trap when the processor receives an event of a given type, it transfers control to handler within the OS handler saves program state (PC, regs, etc.) handler functionality is invoked handler restores program state, returns to program 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 25 Interrupts and exceptions Two main types of events: interrupts and exceptions exceptions are caused by software executing instructions e.g., the x86 int instruction e.g., a page fault, or an attempted write to a read-only page an expected exception is a trap , unexpected is a fault interrupts are caused by hardware devices e.g., device finishes I/O e.g., timer fires 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 26 I/O control Issues: how does the kernel start an I/O? special I/O instructions memory-mapped I/O how does the kernel notice an I/O has finished? polling interrupts Interrupts are basis for asynchronous I/O device performs an operation asynchronously to CPU device sends an interrupt signal on bus when done in memory, a vector table contains list of addresses of kernel routines to handle various interrupt types who populates the vector table, and when? CPU switches to address indicated by vector index specified by interrupt signal 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 27 Timers How can the OS prevent runaway user programs from hogging the CPU (infinite loops?) use a hardware timer that generates a periodic interrupt before it transfers to a user program, the OS loads the timer with a time to interrupt quantum how big should it be set? when timer fires, an interrupt transfers control back to OS at which point OS must decide which program to schedule next very interesting policy question: we ll dedicate a class to it Should the timer be privileged? for reading or for writing? 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 28 Synchronization Interrupts cause a wrinkle: may occur any time, causing code to execute that interferes with code that was interrupted OS must be able to synchronize concurrent processes Synchronization: guarantee that short instruction sequences (e.g., readmodify-write) execute atomically one method: turn off interrupts before the sequence, execute it, then re-enable interrupts architecture must support disabling interrupts another method: have special complex atomic instructions read-modify-write test-and-set load-linked store-conditional 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 29 Concurrent programming Management of concurrency and asynchronous events is biggest difference between systems programming and traditional application programming modern event-oriented application programming is a middle ground Arises from the architecture Can be sugar-coated, but cannot be totally abstracted away Huge intellectual challenge Unlike vulnerabilities due to buffer overruns, which are just sloppy programming 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 30 Some questions Why wouldn t you want a user program to be able to access an I/O device (e.g., the disk) directly? OK, so what keeps this from happening? What prevents user programs from directly accessing the disk? So, how does a user program cause disk I/O to occur? What prevents a user program from scribbling on the memory of another user program? What prevents a user program from scribbling on the memory of the operating system? What prevents a user program from running away with the CPU? 01/18/09 2007 Gribble, Lazowska, Levy, Zahorjan 31
Find millions of documents here - Study Guides, Homework Solutions, Papers, Exam Answer Keys and more. Course Hero has millions of course related materials that will enable you to learn better, faster and get an A in all your courses.
Below is a small sample set of documents:

Washington >> ARCH >> 452 (Winter, 2008)
Biol. 452, Vert. natural History Lab Practical 2, Summer 2005 A Pika skull B Pocket Gopher Skull C Douglas squirrel skull D Muskrat skull What is the Common Name of A? American Pika What is the Diet of B? Herbivore What is the Common Name of C? D...
Washington >> ARCH >> 478 (Fall, 2008)
ARCH 478 Layer Designations New building (plans) Long name 1-a-above 1-a-casework 1-a-dim96 1-a-dim48 1-a-door 1-a-equipment 1-a-furniture 1-a-plumbing 1-a-rcp 1-a-revisions 1-a-stair 1-a-stair-handrail 1-a-notes 1-a-wall 1-a-wall-hatch 1-a-wall-low ...
Washington >> ARCH >> 481 (Fall, 2008)
Arch 481 : 3D Modeling and Rendering Model & Rendering by Doo Young Kwon, Aut 02. Exercise Workbook Autumn 2008 by Brian Johnson brj@u.washington.edu ARCH 481: 3D MODELING AND RENDERING P2 The Project: Overview At the center of this course is a...
Washington >> ARCH >> 481 (Fall, 2008)
ARCH 481: 3d Modeling and Rendering Autumn Quarter, 2008 Lecture rendering Tu 9/30 Due Weekly topic cluster 3D modeling data and operations; Solids (geometry + top...
Washington >> ARCH >> 486 (Spring, 2008)
Arch 486: Computer Graphics Programming for Design Qtr/SLN/Inst: Spring, 2008; (SLN: 10306) When/Where: M-W-F: 10:30-11:20 a.m. Brian Johnson Gould 007F Office/Hours/Email: Arc G55; M brj@u.washington.edu Course web sit...
Washington >> ARCH >> 486 (Spring, 2008)
Spring, 2008 Arch 486 Monday 3/31 Introductions Course intro; Skills inventory; Java intro (JVM, web applets), Eclipse. Exercise #1: HelloWorld [4/4e] Wednesday 4/2 Getting started Java: simple types, variables, classes, methods, applets Exercise ...
Washington >> ARCH >> 486 (Spring, 2008)
Toxicology 217 (2006) 8190 Review Biodegradation or metabolism of bisphenol A: From microorganisms to mammals Jeong-Hun Kang a, , Yoshiki Katayama a , Fusao Kondo b b Department of Applied Chemistry, Faculty of Engineering, Kyushu University, 744 ...
Washington >> ARCH >> 493 (Fall, 2008)
TheFlavianAmphitheaterandthe PalazzettodelloSport TheFlavianAmphitheater Historyofthesite: TheFlavianAmphitheaterwasconstructedin80ADand wasconstructedtohousegladiatorialgames.Itwasbuilt onmarshylandbetweentheEsquilineandCaelianhills asthefirstperma...
Washington >> ARCH >> 493 (Fall, 2008)
Palazzo dei Congressi e Ricevimenti 1938-1954 Adalberto Libera Trina Nguyen Spring 2005 This is an early sketch of Palazzo dei Congressi An open-air theater was built on the top of the buildings roof terrace. View of the Palazzo from Piazza Kennedy...
Washington >> ARCH >> 493 (Fall, 2008)
INSULA, OSTIA 98-192 A.D. Peter Spier, Spring 2005 The Ostian Insulaes were likely built by private entrepreneurs with sufficient capital/resources. The origins of the roman insulae have been hotly debated for many years. Most historians agree that n...
Washington >> ARCH >> 493 (Fall, 2008)
EUR (Esposizione Universale di Roma) Architects: Piazza Guglielmo Marconi (plan G2 3/B and plan VII 2/c) 1937-42, 1952-60 Giuseppe Pagano Marcello Piacentini, Luigi Piccinato, Ettore Rossi, Luigi Vietti (first master plan); Marcello Piacentini (final...
Washington >> ARCH >> 501 (Winter, 2008)
Neonatal Outcomes Michael D. Neufeld MD University of Washington Neonatology UWMC NICU 1996-1998 Prenatal Outcomes by GA 100% 90% 80% 70% 60% 50% 40% 30% 20% 10% 0% 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 Living Death of Tota...
Washington >> ARCH >> 520 (Fall, 2008)
11/26/2002 11:18 AM Chapter 1 Reference, Digital and Otherwise Reference This is a book about referenceit says so right in the titleand so it seems appropriate to start out by defining exactly what we mean when we say reference. I can hear the groan...
Washington >> ARCH >> 532 (Winter, 2008)
Neuron, Vol. 15, 875-884, October, 1995, Copyright 1995 by Cell Press Counting Quanta: Direct Measurements of Transmitter Release at a Central Synapse Jeffry S. Isaacson* and Bruce Walmsley The Neuroscience Group Discipline of Medical Biochemistry F...
Washington >> ARCH >> 532 (Winter, 2008)
...
Washington >> ARCH >> 561 (Fall, 2008)
...
Washington >> ARCH >> 587 (Fall, 2008)
Readings Arch 587: Theory of Design Computing READINGS & CLASS ACTIVITY, BY WEEK This is the first draft of the reading schedule for the quarter. The first four to five weeks will follow pretty much as set forth here, but the open and otherwise uns...
Washington >> ARCH >> 587 (Fall, 2008)
Outside Readings Arch 587: Theory of Design Computing Listed below are books that you may find interesting. The topical range is substantial. Some are written by and for architects, some are written by and for HCI researchers. All are valuable in t...
Washington >> ARCH >> 587 (Fall, 2008)
Theory of Design Computing Arch 587 - Autumn, 2007 University Course Description Brian Johnson Arc 052 (DMG) W 6:00-8:50 pm Examines the relationship between theories of design and computational tools for practice. Explores how the emergence of com...
Washington >> ARCH >> 587 (Fall, 2008)
Arch 587: Theory of Design Computing Autumn 2007 The first set of readings does two things: it provides a high-altitude overview of the questions of design computing, and it introduces in some detail one view, which we will refer to as classical pr...
Washington >> ARCH >> 595 (Spring, 2008)
AN ELASTO-PLASTIC CONSTITUTIVE MODEL FOR SOFT SEDIMENTARY ROCK Fusao Oka1 , Sayuri Kimoto2 , Hideyuki Kobayashi3 , and Toshihisa Adachi4 ABSTRACT In order to investigate the anisotropic behavior of soft sedimentary rock, a series of triaxial compress...
Washington >> LSJ >> 332 (Fall, 2008)
autumn 2005 CHID/LSJ 332 All Lang Site: Experimental Education Unit Seattle URL WA 98195 Address: UW, EEU, Box 357925 Location: lower campus - right behind the hospital Overview: The mission of the EEU is threefold: research, training, and ser...
Washington >> LSJ >> 362 (Fall, 2008)
LSJ 362 FINAL EXAM AUTUMN 2007 First, read the article, The Pressure to Cover, by Kenji Yoshino, which was originally published on January 15, 2006 in The New York Times Magazine (a copy of the article is posted on the class website). This topic sho...
Washington >> LSJ >> 367 (Fall, 2008)
Political Science Department Autumn 2008 Teaching Assistant Job Description Complete and return to Meera Roy by Friday, September 26, 2008 *COMPLETE THIS TOP SECTION AND SIGN BELOW* TA NAME: __ QUIZ MEETINGS: Sections (AA, etc) Days Times Locations ...
Washington >> LSJ >> 421 (Fall, 2008)
spring 2005 ANTH/LSJ 498/421 All Osanloo Site: Committee for International Human Rights Inquiry Seattle WA 98118-2220 URL http:/www.hometown.aol.com/Mo chCIHRI Address: 5512 42nd Ave. S Location: Regular meetings will either be held on campus...
Washington >> MATH >> 100 (Fall, 2008)
Philosophy 100 Lecture: Kantian Ethics Table of Contents! (1) (2) (3) (4) (5) Hypothetical-Categorical Imperatives Heteronymous-Autonomous Actions Equal Force of Reasons Principle Universalization Test Deducing the Categorical Imperative The Hypoth...
Washington >> MATH >> 100 (Fall, 2008)
472.128 3304.01600000000 124.994 1330.79600000000 ...
Washington >> MATH >> 100 (Fall, 2008)
342.55 2195.14600000000 88.064 927.004000000000 ...
Washington >> MATH >> 100 (Fall, 2008)
1.794 1.58400000000000 0.44 0.808000000000000 ...
Washington >> MATH >> 102 (Fall, 2008)
(102, 2, 7) (0.20401299999999978, 0.0040000000000013358, 0.0, 0.0, 0.20801300000000111) Modular Symbols space of dimension 0 and level 102, weight 2, character [1, -1, zeta8], sign 1, over Cyclotomic Field of order 8 and degree 4 ...
Washington >> MATH >> 102 (Fall, 2008)
2 2 10000 0 1 1 0.5 0 1.60738613372 10 0 1.0 -0.707106781187 0.57735026919 0.5 0 -0.408248290464 0.755928946018 -0.353553390593 0.333333333333 0 0 0.288675134595 0.554700196225 -0.534522483825 0 0.25 -0.242535625036 -0.235702260396 -0.917662935482 0 ...
Washington >> MATH >> 102 (Fall, 2008)
2 2 10000 0 1 1 0.5 0 1.60738613372 10 0 1.0 0.707106781187 0.57735026919 0.5 -0.894427191 0.408248290464 0 0.353553390593 0.333333333333 -0.632455532034 -1.20604537831 0.288675134595 -0.554700196225 0 -0.516397779494 0.25 0.242535625036 0.2357022603...
Washington >> MATH >> 102 (Fall, 2008)
2.7630981341 4.13875090006 5.51457882927 7.36440720073 7.95888206699 9.57039481094 10.84353554601 11.93324918289 12.87130622556 13.82453782977 14.86810353897 15.62682950031 16.33123300835 17.79286854935 18.97481261133 19.60787398222 20.65814869355 21...
Washington >> MATH >> 103 (Fall, 2008)
(103, 2, 6) (0.1720110000000048, 0.26801699999999329, 0.0, 0.58003599999999977, 1.0200639999999979) Modular Symbols space of dimension 10 and level 103, weight 2, character [zeta3], sign 1, over Cyclotomic Field of order 3 and degree 2 ...
Washington >> MATH >> 103 (Fall, 2008)
(103, 2, 2) (0.22401400000000038, 2.2161380000000008, 0.0, 6.9524349999999977, 9.3925869999999989) Modular Symbols space of dimension 10 and level 103, weight 2, character [zeta102^2], sign 1, over Cyclotomic Field of order 102 and degree 32 ...
Washington >> MATH >> 103 (Fall, 2008)
2 2 10000 0 1 1 0.5 0 1.61524625949 10 0 1.0 0.532416578391 1.73991646769 -0.716532587054 -0.186310796133 0.926360372414 -1.4985087625 -0.913910406696 2.02730931454 -0.0991949565942 -1.25767190869 -1.24670684785 0.70670966054 -0.797830908022 -0.32416...
Washington >> MATH >> 103 (Fall, 2008)
2 2 10000 0 1 1 0.5 0 1.61524625949 10 0 1.0 1.9672570626 -1.3097435516 2.87010035036 -0.402715054521 -2.57660225208 -1.05533455175 3.67896812201 0.715428170955 -0.792244035223 -1.14876712123 -3.75909542632 0.24730047316 -2.07611435033 0.527453445791...
Washington >> MATH >> 134 (Fall, 2008)
(134, 2, 6) (0.52403300000003128, 0.47602999999998019, 1.5720979999999827, 2.8481780000000185, 5.4203390000000127) Modular Symbols space of dimension 19 and level 134, weight 2, character [1, zeta3], sign 1, over Cyclotomic Field of order 3 and degre...
Washington >> MATH >> 134 (Fall, 2008)
(134, 2, 1) (0.21201400000001058, 0.0040000000000190994, 0.0, 0.0, 0.21601400000002968) Modular Symbols space of dimension 0 and level 134, weight 2, character [1, zeta66], sign 1, over Cyclotomic Field of order 66 and degree 20 ...
Washington >> MATH >> 134 (Fall, 2008)
(134, 2, 0) (0.048002999999937401, 0.044003000000031989, 4.720294000000024, 0.14401000000003705, 4.9563100000000304) Modular Symbols space of dimension 19 and level 134, weight 2, character [1, 1], sign 1, over Rational Field ...
Washington >> MATH >> 135 (Fall, 2008)
Math 135A, Winter 2009 Syllabus Instructor: Tom Duchamp Oce: Padelford C-505 TA: Eric Nitardy e-mail: duchamp@math.washington.edu Oce: Padelford C-115 Oce hours: 12:302:00 on Mondays; 1:30 e-mail: nithardt@math.washington.edu 2:20 on Tuesdays; righ...
Washington >> MATH >> 135 (Fall, 2008)
MATH 135: COMPLEX NUMBERS (WINTER, 2009) The introduction of complex numbers in the 16th century made it possible to solve the equation x2 + 1 = 0. These notes1 present one way of dening complex numbers. 1. The Complex Plane A complex number z is gi...
Washington >> MATH >> 135 (Fall, 2008)
Math 135A, Winter 2009 Fixed Points One way that sequences are often dened is by recursion. More precisely, suppose that f : R R is a function and x0 is a real number. Then we may dened a sequence {xn } iteratively by the formula xn+1 = f (xn ) fo...
Washington >> MATH >> 135 (Fall, 2008)
Math 135A, Winter 2009 Cauchy Sequences Very often, it is dicult to determine the limit of a convergent sequence, yet one still wants to verify that the sequence is convergent. In this handout, we develope a criterion for convergence of a sequence ...
Washington >> MATH >> 136 (Fall, 2008)
(136, 2, 6) (0.20001300000001265, 0.0080009999999788306, 0.0, 0.0, 0.20801399999999148) Modular Symbols space of dimension 0 and level 136, weight 2, character [1, -1, zeta16], sign 1, over Cyclotomic Field of order 16 and degree 8 ...
Washington >> MATH >> 136 (Fall, 2008)
(136, 2, 5) (0.040003000000012889, 0.048002999999994245, 0.72004600000002483, 0.43202700000000505, 1.2440790000000561) Modular Symbols space of dimension 20 and level 136, weight 2, character [1, -1, 1], sign 1, over Rational Field ...
Washington >> MATH >> 136 (Fall, 2008)
(136, 2, 10) (0.036002000000053158, 0.0040009999999597312, 0.0, 0.0, 0.040003000000012889) Modular Symbols space of dimension 0 and level 136, weight 2, character [-1, 1, 1], sign 1, over Rational Field ...
Washington >> MATH >> 136 (Fall, 2008)
(136, 2, 12) (0.20401300000003175, 0.0079999999999813554, 0.0, 0.0, 0.21201300000001311) Modular Symbols space of dimension 0 and level 136, weight 2, character [-1, 1, zeta8], sign 1, over Cyclotomic Field of order 8 and degree 4 ...
Washington >> MATH >> 144 (Fall, 2008)
C SCI 144 Java 1 Winter 2006 COURSE SYLLABUS andREQUIREMENTS 12401 SE 320th St. Auburn, WA 98002-3699 Location: TC120 Quarter: Winter 2005 Class Days Th 1-2 p.m. Office/Office Hours: SMT 318 Daily 8-9 Course Number/Credit: C ...
Washington >> MATH >> 144 (Fall, 2008)
(144, 2, 23) (0.048002999999994245, 0.068004000000001952, 0.20401300000000333, 0.0, 0.32001999999999953) Modular Symbols space of dimension 24 and level 144, weight 2, character [-1, -1, -1], sign 1, over Rational Field ...
Washington >> MATH >> 144 (Fall, 2008)
(144, 2, 8) (0.048002999999994245, 0.080004000000016617, 0.23201499999998987, 0.0, 0.36002200000000073) Modular Symbols space of dimension 28 and level 144, weight 2, character [1, -1, 1], sign 1, over Rational Field ...
Washington >> MATH >> 144 (Fall, 2008)
(144, 2, 18) (0.28801800000002231, 0.0039999999999906777, 0.0, 0.0, 0.29201800000001299) Modular Symbols space of dimension 0 and level 144, weight 2, character [-1, zeta12^3, zeta12^2 - 1], sign 1, over Cyclotomic Field of order 12 and degree 4 ...
Washington >> MATH >> 145 (Fall, 2008)
(145, 2, 1) (0.18001100000000747, 0.0039999999999906777, 0.0, 0.0, 0.18401099999999815) Modular Symbols space of dimension 0 and level 145, weight 2, character [1, zeta28], sign 1, over Cyclotomic Field of order 28 and degree 12 ...
Washington >> MATH >> 145 (Fall, 2008)
(145, 2, 11) (0.14400900000001116, 0.0039999999999906777, 0.0, 0.0, 0.14800900000000183) Modular Symbols space of dimension 0 and level 145, weight 2, character [zeta4, -1], sign 1, over Cyclotomic Field of order 4 and degree 2 ...
Washington >> MATH >> 145 (Fall, 2008)
(145, 2, 13) (0.16001100000002566, 0.0039999999999906777, 0.0, 0.0, 0.16401100000001634) Modular Symbols space of dimension 0 and level 145, weight 2, character [-1, zeta28], sign 1, over Cyclotomic Field of order 28 and degree 12 ...
Washington >> MATH >> 145 (Fall, 2008)
(145, 2, 12) (0.032002000000005637, 0.044002999999975145, 1.2640790000000095, 0.27601699999999596, 1.6161009999999862) Modular Symbols space of dimension 18 and level 145, weight 2, character [-1, 1], sign 1, over Rational Field ...
Washington >> MATH >> 146 (Fall, 2008)
(146, 2, 11) (0.036002999999965368, 0.048003000000022666, 0.12800699999999665, 0.32802100000000678, 0.54003399999999147) Modular Symbols space of dimension 20 and level 146, weight 2, character [1, -1], sign 1, over Rational Field ...
Washington >> MATH >> 146 (Fall, 2008)
(146, 2, 3) (0.22801400000000172, 0.0040010000000165746, 0.0, 0.0, 0.23201500000001829) Modular Symbols space of dimension 0 and level 146, weight 2, character [1, zeta24], sign 1, over Cyclotomic Field of order 24 and degree 8 ...
Washington >> MATH >> 146 (Fall, 2008)
(146, 2, 4) (0.68404200000000515, 0.9560600000000079, 2.7281700000000058, 5.4723429999999951, 9.8406150000000139) Modular Symbols space of dimension 20 and level 146, weight 2, character [1, zeta18], sign 1, over Cyclotomic Field of order 18 and degr...
Washington >> MATH >> 146 (Fall, 2008)
(146, 2, 0) (0.048003000000022666, 0.044003000000003567, 4.7682979999999873, 0.096006000000016911, 4.9563100000000304) Modular Symbols space of dimension 20 and level 146, weight 2, character [1, 1], sign 1, over Rational Field ...
Washington >> MATH >> 170 (Fall, 2008)
(170, 2, 16) (0.34802100000001701, 0.0080000000000381988, 0.0, 0.0, 0.35602100000005521) Modular Symbols space of dimension 0 and level 170, weight 2, character [1, -zeta8^2, zeta8], sign 1, over Cyclotomic Field of order 8 and degree 4 ...
Washington >> MATH >> 170 (Fall, 2008)
(170, 2, 14) (0.060003999999935331, 0.088005000000066502, 0.74404700000002322, 31.977997999999957, 32.870053999999982) Modular Symbols space of dimension 32 and level 170, weight 2, character [1, -1, -1], sign 1, over Rational Field ...
Washington >> MATH >> 170 (Fall, 2008)
(170, 2, 12) (1.3920870000001742, 1.2960809999999583, 4.9123079999999391, 10.240640000000099, 17.84111600000017) Modular Symbols space of dimension 30 and level 170, weight 2, character [1, -1, zeta8], sign 1, over Cyclotomic Field of order 8 and deg...
Washington >> MATH >> 170 (Fall, 2008)
(170, 2, 11) (0.34002099999986513, 0.008001000000035674, 0.0, 0.0, 0.3480219999999008) Modular Symbols space of dimension 0 and level 170, weight 2, character [1, -1, zeta16], sign 1, over Cyclotomic Field of order 16 and degree 8 ...
Washington >> MATH >> 171 (Winter, 2008)
(171, 2, 11) (0.74004600000000664, 1.180074999999988, 0.0, 1.420088000000078, 3.3402090000000726) Modular Symbols space of dimension 20 and level 171, weight 2, character [zeta6, -1], sign 1, over Cyclotomic Field of order 6 and degree 2 ...
Washington >> MATH >> 171 (Winter, 2008)
(171, 2, 2) (0.77604900000005728, 1.0280629999999746, 3.7122319999999718, 7.1004450000000361, 12.61678900000004) Modular Symbols space of dimension 22 and level 171, weight 2, character [1, zeta18^2], sign 1, over Cyclotomic Field of order 18 and deg...
Washington >> MATH >> 171 (Winter, 2008)
(171, 2, 29) (0.23201400000004924, 0.0040010000000165746, 0.0, 0.0, 0.23601500000006581) Modular Symbols space of dimension 0 and level 171, weight 2, character [-zeta18^3 + 1, zeta18^2], sign 1, over Cyclotomic Field of order 18 and degree 6 ...
Washington >> MATH >> 171 (Winter, 2008)
(171, 2, 26) (0.21601400000008653, 0.0039999999999054126, 0.0, 0.0, 0.22001399999999194) Modular Symbols space of dimension 0 and level 171, weight 2, character [-zeta6, zeta6], sign 1, over Cyclotomic Field of order 6 and degree 2 ...
Washington >> MATH >> 197 (Fall, 2008)
(197, 2, 7) (0.17201099999988401, 0.0040000000001327862, 0.0, 0.0, 0.17601100000001679) Modular Symbols space of dimension 0 and level 197, weight 2, character [zeta4], sign 1, over Cyclotomic Field of order 4 and degree 2 ...
Washington >> MATH >> 197 (Fall, 2008)
(197, 2, 0) (0.044003000000202519, 0.032001999999920372, 0.0, 0.11200699999994868, 0.18801200000007157) Modular Symbols space of dimension 17 and level 197, weight 2, character [1], sign 1, over Rational Field ...
What are you waiting for?