Documents Found!
As seen in
Less Work, Better Grades
Join
Course Hero
Access
best resources
Ace
your classes
Ace your courses with Course Hero!
|
|
|
Study Smarter, Score Higher
Here are the top 5 related documents
...MATH 116 Midterm Material
The midterm will be closed book; no notes, books, or calculators will be allowed. You are responsible for the material from class lectures, homework problems, and the Text: Chapters 1-3 and Chapter 4 through 4.4. Below is a...
...MATH 116 Final Exam Material
The nal exam will be closed book; no notes, books, or calculators will be allowed. You are responsible for the material from class lectures, homework problems, and the Text: Chapters 1-6 and Chapter 7 through 7.3. Below ...
...Math 304
Test 2 May 21, 2002
C. Robinson Calculators are permitted.
Start each problem on a new page.
1. (20 Points) Consider the sequential game with imperfect information given in the following game tree. Nodes {R, C, D, F, G} are owned by play...
...Math 364: Supplemental Problems
1.1 Extrema of functions 1. Find the maximum and minimum of each of the following functions on the interval 0 x 3. (a) f (x) = x2 2x + 2. (b) g(x) = x2 + 2x + 4. (c) The function h(x) satises h (x) > 0 for all 0 x ...
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.
Solutions Numerical of Partial Di erential Equations Jing Li, Kent State University 1 Solving Laplace equation by nite di erence method Let us consider solving the Laplace equation u = uxx + uyy = 0, on a square domain (x, y) [0, 1] [0, 1] with Dirichlet boundary condition. 2 2 Here = x2 + y2 , is the Laplace operator. We discretize the domain by a mesh of n + 2 by n + 2 grid points de ned as the cross points of n + 2 equally spaced horizontal lines and n + 2 equally spaced vertical line. The coordinates of these grids points are (xi , yi ) = (ih, jh), i, j = 0, 1, ..., n, n + 1, where h = 1/ x = 1/ y = 1/(n + 1) in this example. Therefore, any two neighboring grid points in each direction has the distance h, which is called as the mesh size. By replacing the double derivatives in the Laplace equation by the nite di erence, the discrete Laplace equations at all n by n interior grid points give us n2 equations to determine these n2 unknowns ui,j for i, j = 1, 2, ..., n. At each interior point (xi , yi ), for i, j = 1, 2, ..., n, the double derivatives are approximated by their nite di erences uxx = and uyy = u(xi+1 , yi ) 2u(xi , yi ) + u(xi 1 , yi ) + O(h2 ). h2 u(xi , yi+1 ) 2u(xi , yi ) + u(xi , yi 1 ) + O(h2 ). h2 Denote the approximation of the true solution u(xi , yj ) at each point (xi , yj ), by ui,j , i, j = 1, 2, ..., n. De ne the discrete Laplacian for ui,j by h ui,j = ui+1,j 2ui,j + ui 1,j ui,j+1 2ui,j + ui,j 1 + = 0, h2 h2 i, j = 1, 2, ..., n. The original Laplace equation is approximated by n2 discrete Laplace equations on the nodes, (xi , yj ), i, j = 1, 2, ..., n, as ui+1,j + ui 1,j 4ui,j + ui,j+1 + ui,j 1 = 0, i, j = 1, 2, ..., n, h2 where the boundary conditions gives us the values ui,j for these boundary points where i or j equals 0 or n + 1. For example for a mesh of 3 by 3 lines on the square domain, the only unknown is u1,1 for the interior center point, and we can obtain its value by h ui,j = u2,1 + u0,1 4u1,1 + u1,2 + u1,0 = 0, 1 where the right hand side value is given by these boundary conditions. For a mesh of 4 by 4 lines, the unknowns are u1,1 , u2,1 , u1,2 , and u2,2 . The 4 equations are u2,1 + u0,1 4u1,1 + u1,2 + u1,0 = 0, u3,1 + u1,1 4u2,1 + u2,2 + u2,0 = 0, u2,2 + u0,2 4u1,2 + u1,3 + u1,1 = 0, u3,2 + u1,2 4u2,2 + u2,3 + u2,1 = 0, for i = 1, j = 1, for i = 2, j = 1, for i = 1, j = 2, for i = 2, j = 2, . which can be written as the following matrix form u1,1 4 1 1 0 u 1 4 0 1 2,1 1 0 4 1 u1,2 u2,2 0 1 1 4 = u0,1 + u1,0 u3,1 + u2,0 u0,2 + u1,3 u3,2 + u2,3 In general, each single equation in this 5-points formulation is of the form ui+1,j + ui 1,j 4ui,j + ui,j+1 + ui,j 1 = 0, at i, j. 2 Solving Heat equation We consider solving the heat equation ut = c uxx , with initial condition u(0, x) = u0 (x), and boundary conditions u(t, 0) = 0, u(t, 1) = 0, t 0. 0 x 1, 0 x 1, t 0, We know the exact solution of this ODE is, u(x, t) = u0 (x ct), for any t > 0. Here we look at the numerical methods to nd an accurate approximation of the solution. 2.1 Semi-discrete Methods For semi-discrete methods, we only descretize the space derivatives explicitly, while leave the time derivative, which gives us a ODE to solve. First generate space mesh points to discretize the space interval [0, 1], by equally space points 0 = x0 < x1 < x2 < ... < xn < xn+1 = 1. Here xi = i x, i = 0, 1, 2, ..., n + 1, with x = 1/(n + 1). Then at any point xi at a time t, we have the ODE ut (t, xi ) = cuxx (t, xi ), 2 i = 1, 2, ..., n, (1) where we only consider the ODEs at the interior grid points xi , i = 1, 2, ..., n. On the boundary of the interval, u(t, x0 ) = u(t, xn+1 ) = 0 are given by the boundary conditions. The double derivative uxx (t, xi ) was approximated by the central di erence uxx (xi , t) = u(t, xi+1 ) 2u(t, xi ) + u(t, xi 1 ) + O(( x)2 ), ( x)2 i = 1, 2, ..., n. Replacing the space derivative in equation (1) by the central di erence formula, and denoting the approximation of u(t, xi ) by ui (t), i = 1, 2, ..., n, we have the following set of ODES for ui (t), i = 1, 2, ..., n, c ui (t) = (ui+1 (t) 2ui (t) + ui 1 (t)) . (2) ( x)2 In matrix form, we have, for forward di erence u = u1 (t) u2 (t) u3 (t) . . . un (t) 1 c = 0 2 ( x) 2 1 0 2 1 1 2 ... 0 0 . . . ... 0 u1 (t) 0 u2 (t) c u (t) 3 = Au. 0 2 . ( x) . . 0 2 un (t) (3) This system of ODEs for ui (t), i = 1, 2, ..., n, with initial condition ui (0) = u0 (xi ), can be solved by using a ODE solver. This is called the semi-discrete method, where only discretization in the space is implemented. 2.2 Fully discrete Methods The system of ODEs (3) can be further discretized in time, which gives the fully discrete methods of solving the heat equation. Denote time step size by t, and denote each instant time by tk = k t, k = 0, 1, 2, ... . Denote uk the approximation of u(tk , xi ). i Replace the time time derivative in (2) by the forward nite di erence, we have the following equations, for k = 0, 1, 2, ... , c uk+1 uk i i = uk 2uk + uk , i 1 i t ( x)2 i+1 i.e., uk+1 = uk + i i or in matrix form uk+1 = uk + t c Auk , 2 ( x) k = 0, 1, ... . c t uk 2uk + uk , i 1 i i+1 2 ( x) i = 1, 2, ..., n, i = 1, 2, ..., n. where uk represent the vector of the approximation to the solution u(t, x) at time tk . This is in fact the method of solving the ODEs (3) by using the forward Euler method. 3 The eigenvalues of the matrix A are all between 4 and 0. Therefore from the stability if the forward Euler method, it is required that t 2 4 c ( x)2 = ( x)2 . 2c The Backward Euler method can also be used here. Replace the time time derivative in (2) by the backward nite di erence, we have the following equations, for k = 0, 1, 2, ... , c uk+1 uk i i = uk+1 2uk+1 + uk+1 , i 1 i i+1 2 t ( x) i.e., uk+1 = uk + i i or in matrix form uk+1 = uk + t c Auk+1 , ( x)2 k = 0, 1, ... . c t uk+1 2uk+1 + uk+1 , i+1 i i 1 2 ( x) i = 1, 2, ..., n, i = 1, 2, ..., n. As discussed before for the ODE solvers, the backward Euler method is always stable for all time step size t, and the choice of t is only decide by the accuracy of the algorithm. Another alternative of the fully discrete algorithm is the so called CrankNicolson algorithm. Equation (2) is approximated by the Trapezoid rule uk+1 uk c i i = uk+1 2uk+1 + uk+1 + uk 2uk + uk , i i 1 i+1 i i 1 t 2( x)2 i+1 which lead to the iteration I t c c A uk+1 = I + t A uk , 2 2( x) 2( x)2 k = 0, 1, ... . i = 1, 2, ..., n, and is also stable for choice any of t. 3 Solve Advection equation We consider to solve the following advection equation ut + cux = 0, with initial condition u(0, x) = u0 (x), and periodic boundary conditions u(t, a) = u(t, b), t 0. a x b, We know the exact solution of this ODE is, u(t, x) = u0 (x ct), for any t 0. Now we look at the numerical methods. 4 3.1 Semi-discrete Methods First generate space mesh points to discretize the space interval [a, b], by equally space points a = x1 < x2 < ... < xn < xn+1 = b. Here xi = a + (i 1) x, for i = 1, 2, ..., n + 1, with x = (b a)/n. Then at any point xi at a time t, we have the ODE ut (t, xi ) + cux (t, xi ) = 0, i = 1, 2, ..., n, (4) where we only consider the ODEs for xi , i = 1, 2, ..., n, because u(t, xn+1 ) = u(t, x1 ) from the periodic boundary condition. There are several di erent ways to approximate the derivative ux (t, xi ) by nite di erence formulas: forward nite di erence : backward nite di erence : central nite di erence : u(t, xi+1 ) u(t, xi ) + O( x) x u(t, xi ) u(t, xi 1 ) ux (xi , t) = + O( x) x u(t, xi+1 ) u(t, xi 1 ) ux (xi , t) = + O(( x)2 ). 2 x ux (xi , t) = for i = 1, 2, ..., n, where u(t, xn+1 ) = u(t, x1 ) and u(t, x0 ) = u(t, xn ), from the periodic boundary condition. Replacing the time derivatives in equations (4) by those nite di erence formulation, and denoting the approximation of each u(t, xi ) by ui (t), i = 1, 2, ..., n, we have a systems of ODEs for ui (t). for forward : for backward : for central : c (ui+1 (t) ui (t)) , i = 1, 2, ..., n, x c ui (t) = (ui (t) ui 1 (t)) , i = 1, 2, ..., n, x ui+1 (t) ui 1 (t) c , i = 1, 2, ..., n. ui (t) = x 2 2 ui (t) = , In matrix form, we have, for the forward di erence u = u1 (t) u2 (t) u3 (t) . . . un (t) c = x 1 0 0 1 1 0 1 1 0 1 .. 0 0 . 0 0 0 1 u1 (t) u2 (t) u3 (t) . . . un (t) with the real parts of all its eigenvalues are in the interval [0, 2c/ x]. Therefore if c > 0, i.e., when the wave is moving to the positive direction, this ODE is not stable. 5 For for backward di erence u = u1 (t) u2 (t) u3 (t) . . . un (t) c = x 1 0 0 1 1 0 0 1 1 .. 0 0 0 . 1 0 0 1 u1 (t) u2 (t) u3 (t) . . . un (t) , (5) with the real parts of its eigenvalues in the interval [ 2c/ x, 0]. Therefore if c < 0, i.e., when the wave is moving to the negative direction, this ODE is not stable. For the central di erence, u = u1 (t) u2 (t) u3 (t) . . . un (t) c = 2 x 0 1 0 1 1 0 0 1 1 0 ... 0 0 1 1 1 0 0 u1 (t) u2 (t) u3 (t) . . . un (t) , 0 with all pure imaginary eigenvalues. Therefore this ODE is stable, no matter the sign of c. The reason why the sign of the wave speed c determines the stability of the ODE obtained in semi-discrete algorithm can be explained as follows. Let us assume c > 0, i.e, the wave will move to the right. The solution of the advection equations is simply u(t, x) = u0 (x ct). Consider a family of lines x ct = constant = on the two dimensional space (x, t), where each line corresponds to one constant . We call each line as a characteristic line. On each characteristic line, the function value is the same, which means the solution information is in fact propagating along each of characteristic line. Suppose we know the value u(t, x) at the time t, for each i = 1, 2, ..., n, then after an interval of time t, the solution u(t + t, x) is fact determined by the value u(x c t, t) at the previous time t, since the two points (x, t+ t) and (x c t, t) are in the same characteristic line. This means that when we discretize the space derivative in the ODE ut (t, xi ) + cux (t, xi ) = 0, at each xi , it would be better to include some information from the left side of xi . Therefore both backward di erence formulation and central di erence formulation give us stable ODE to solve, since we include in the formula the information from the left point u(t, xi 1 ). While for the forward di erence formulation, which use u(t, xi ) and u(t, xi+1 ), it is unstable. 6 3.2 Fully discrete algorithm In the fully discrete algorithm, time derivatives in (4) are also discretized by nite di erence formulas. Here we assume c > 0 and we consider to solve the semi-discrete ODE ui (t) = c (ui (t) ui 1 (t)) , x i = 1, 2, ..., n, (6) which are derived by using backward nite di erence formulation to discretize the space derivatives and are (5) in matrix form. Denote the time step size by t, and tk = k t, k = 0, 1, ... . Denote by k ui the approximation of u(tk , xi ). Using forward Euler method to solve the system of ODEs (6), we have uk+1 = uk i i c t k u uk , i 1 x i i = 1, 2, ..., n. (7) Since the real parts of the eigenvalues of the matrix in (5) are in the interval [ 2c/ x, 0], we know, from the stability of the forward Euler method for solving ODE, that the step time-step size t need satisfy t x 2 = . 2c/ x c We can also use another approach here to show that the stability requires that t x/c. We rst show that t x/c is su cient to for the stability of forward Euler method (7). Let us denote uk the solution vector (uk , uk , ..., uk ) at the time tk . We de ne the norm of uk by 1 2 n u k n = i=1 uk+1 . i Using the forward Euler formulation (7), we have u k+1 n = i=1 n uk+1 i n = i=1 uk i c t k ui uk i 1 x i=1 c t k c t k ui + u. 1 x x i 1 If t x/c, then we know 1 c t/ x 0, therefore uk+1 1 c t x n i=1 uk + i c t n k u = uk . x i=1 i 1 Therefore if t x/c, then the forward Euler is stable. In the following we will show that if t > x/c, then the error for the forward Euler methods (7) can blow up. Here we give an error propagation example for solving ut + ux = 0, 7 by using the forward Euler method (7). Denote the di erence between uk and i the exact solution value u(tk , xi ) by and assume there are no errors at other place at time tk . From (7), we have uk+1 = uk i i t k ui uk , i 1 x i = 1, 2, ..., n Denote = t/ x, and we have uk+1 = uk (1 )uk . i i 1 i We can see that, if < 1, e.g., = 1/2, then the propagation of the error is in fact decreasing. However, if > 1, for example = 2, the error will become ampli ed. 8
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:
Below is a small sample set of documents:
Kent State >> CS >> 62202 (Spring, 2008)
Numerical Solutions of Partial Dierential Equations Jing Li, Kent State University 1 Solving Laplace equation by nite dierence method Let us consider solving the Laplace equation u = uxx + uyy = 0, on a square domain (x, y) [0, 1] [0, 1] with Di...
Kent State >> CS >> 72202 (Spring, 2008)
Numerical Solutions of Partial Dierential Equations Jing Li, Kent State University 1 Solving Laplace equation by nite dierence method Let us consider solving the Laplace equation u = uxx + uyy = 0, on a square domain (x, y) [0, 1] [0, 1] with Di...
Kent State >> MATH >> 62202 (Spring, 2008)
Boundary Value Problems for Ordinary Dierential Equations Jing Li, Kent State University 1 Boundary value problems A general rst-order two-point boundary value problem of ODE is of the form y = f (t, y), with boundary conditions g(y(a), y(b) = 0, ...
Kent State >> MATH >> 72202 (Spring, 2008)
Boundary Value Problems for Ordinary Dierential Equations Jing Li, Kent State University 1 Boundary value problems A general rst-order two-point boundary value problem of ODE is of the form y = f (t, y), with boundary conditions g(y(a), y(b) = 0, ...
Kent State >> CS >> 62202 (Spring, 2008)
Boundary Value Problems for Ordinary Dierential Equations Jing Li, Kent State University 1 Boundary value problems A general rst-order two-point boundary value problem of ODE is of the form y = f (t, y), with boundary conditions g(y(a), y(b) = 0, ...
Kent State >> CS >> 72202 (Spring, 2008)
Boundary Value Problems for Ordinary Dierential Equations Jing Li, Kent State University 1 Boundary value problems A general rst-order two-point boundary value problem of ODE is of the form y = f (t, y), with boundary conditions g(y(a), y(b) = 0, ...
Kent State >> MATH >> 62202 (Spring, 2008)
Numerical Computing II, Spring 2008 Homework 3. Assigned February 6, February 13. This homework solves an unconstrained optimization problem by using the steepest descent method combined with line search. Here we solve the minimum of the Rosenbroc...
Kent State >> MATH >> 72202 (Spring, 2008)
Numerical Computing II, Spring 2008 Homework 3. Assigned February 6, February 13. This homework solves an unconstrained optimization problem by using the steepest descent method combined with line search. Here we solve the minimum of the Rosenbroc...
Kent State >> CS >> 62202 (Spring, 2008)
Numerical Computing II, Spring 2008 Homework 3. Assigned February 6, February 13. This homework solves an unconstrained optimization problem by using the steepest descent method combined with line search. Here we solve the minimum of the Rosenbroc...
Kent State >> CS >> 72202 (Spring, 2008)
Numerical Computing II, Spring 2008 Homework 3. Assigned February 6, February 13. This homework solves an unconstrained optimization problem by using the steepest descent method combined with line search. Here we solve the minimum of the Rosenbroc...
Kent State >> BSCI >> 60194 (Fall, 2008)
BSCI 10120 - BIOLOGICAL FOUNDATIONS Meeting Time: 1:10-2:00 p.m. on Monday, Wednesday, and Friday Meeting Place: Room 101, Cunningham Hall Lecture Instructor Office Hours: Dr. Gail Fraizer (Rm. 251, Cunningham Hall) Monday & Wednesday, 2 PM -4 PM or ...
Kent State >> MCLS >> 60010 (Fall, 2008)
Monday, March 15, 2005 Contract This contract is hereby made and effective as of Thursday, March 16, 2000 by and between the WEHOPETOBE Project Managers Inc. (herein WEHOPETOBE) having its principal office at Kent, Ohio and the Kent State University ...
Kent State >> MCLS >> 60013 (Fall, 2008)
Monday, March 15, 2005 Contract This contract is hereby made and effective as of Thursday, March 16, 2000 by and between the WEHOPETOBE Project Managers Inc. (herein WEHOPETOBE) having its principal office at Kent, Ohio and the Kent State University ...
Kent State >> MIS >> 34033 (Fall, 2008)
M Desig...
Kent State >> MIS >> 34053 (Fall, 2008)
Straub/Editors Comments EDITORS COMMENTS Why Do Top Journals Reject Good Papers? In my March 2008 editorial, I suggested that, At a journal, everyday life is measured by factors like: (1) paper cycle times, (2) quality and usefulness of the reviewin...
Kent State >> MIS >> 34053 (Fall, 2008)
BUSINESS ADMINISTRATION NON-PARAMETRIC STATISTICS 64013/74013 Instructor: Dr. David Booth Office: A428 BSA Phone (Office): 672-1143 Office Hours: TBA e-mail: dbooth@bsa3.kent.edu Please note that if I am not in my office at these times you will find ...
Kent State >> MIS >> 34053 (Fall, 2008)
<CMFExternalFile at BAD 64271 SUM05 Knapp.doc> ...
Kent State >> MIS >> 34055 (Fall, 2008)
Last Updated 06/13/2005 Kent State University Distance Learning Quality and Cost Control, M&IS 44063 Summer 2005 Monday, Wednesday 6:00 - 9:50 P.M. CAMPUS Call Number SECTION East Liverpool 15550 320 Geauga 15552 420 Tuscarawas 10702 830 Lorain 1311...
Kent State >> MIS >> 34064 (Spring, 2008)
17 Project Management McGraw-Hill/Irwin Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Learning Objectives Discuss the behavioral aspects of projects in terms of project personnel and the project manager. Discuss the nat...
Kent State >> MIS >> 34064 (Spring, 2008)
<CMFExternalFile at MIS 24053 SUM05 Eckman.doc> ...
Kent State >> MIS >> 34064 (Spring, 2008)
BUSINESS ADMINISTRATION NON-PARAMETRIC STATISTICS 64013/74013 Instructor: Dr. David Booth Office: A428 BSA Phone (Office): 672-1143 Office Hours: TBA e-mail: dbooth@bsa3.kent.edu Please note that if I am not in my office at these times you will find ...
Kent State >> MIS >> 34064 (Spring, 2008)
<CMFExternalFile at MIS 44150 SUM05 Smas.DOC> ...
Kent State >> MIS >> 34064 (Spring, 2008)
9 Management of Quality McGraw-Hill/Irwin Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Learning Objectives Define the term quality. Explain why quality is important and the consequences of poor quality. Identify th...
Kent State >> MIS >> 44048 (Fall, 2008)
Operations Management: M&IS 34060 Summer II 2005 Section 020 (Call No. 13110) : Tuesday, Thursday, 2:30 5:00 p.m., Room BSA-100 Section 021 (Call No. 13111) : Tuesday, Thursday, 6:00 8:30 p.m., Room BSA-100 Instructor Office Office Hours Telephone...
Kent State >> MIS >> 44048 (Fall, 2008)
Human Resources Management (M 672-1154; rfaley@kent.edu Summer 2005 M/T/W/H BSA 100 (9:45-11:40) A copy of this syllabus can be downloaded from the M&IS web site http:/mismain.bsa.kent.edu - select...
Kent State >> MIS >> 44062 (Fall, 2008)
BUSINESS ADMINISTRATION NON-PARAMETRIC STATISTICS 64013/74013 Instructor: Dr. David Booth Office: A428 BSA Phone (Office): 672-1143 Office Hours: TBA e-mail: dbooth@bsa3.kent.edu Please note that if I am not in my office at these times you will find ...
Kent State >> MIS >> 44195 (Spring, 2008)
17 Project Management McGraw-Hill/Irwin Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Learning Objectives Discuss the behavioral aspects of projects in terms of project personnel and the project manager. Discuss the nat...
Kent State >> MIS >> 44195 (Spring, 2008)
Forthcoming 49 Communications of the ACM (Oct. 2006) Legally Speaking: IBMPragmatic Embrace of Open Source s by Pamela Samuelson Twenty years ago, IBM Corp. was the most vigorous advocate of (very) strong intellectual property (IP) rights for comput...
Kent State >> MIS >> 44195 (Spring, 2008)
KENT STATE UNIVERSITY INTEGRATED BUSINESS POLICY AND STRATEGY B AD 44285Section 010Summer I 2005 Monday & Wednesday, 6:00-9:50 PM, 218 SFH Susan E. Horne BSA A417 Office Hours M, W 4:15-5:45 PM and by appointment shorne1@kent.edu THIS IS THE FASTEST...
Kent State >> MIS >> 44195 (Spring, 2008)
M&IS 24070 Principles of System Development Summer, 2005 Course Syllabus Instructor: Glenn Thomas Office Hours How to Contact Me The Last Day to Withdraw From This Course is: Tuesday July 5, 2005 . Table of Contents Course Objectives Text Hints...
Kent State >> MIS >> 44195 (Spring, 2008)
Explaining Quality in Internet Collective Goods: Zealots and Good Samaritans in the Case of Wikipedia Denise Anthony,1* Sean W. Smith,2 Tim Williamson 3 November 2005 KEY WORDS: collective goods, public goods, group identity, reputation, open-sourc...
Kent State >> MIS >> 44195 (Spring, 2008)
7 Design of Work Systems McGraw-Hill/Irwin Copyright 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Learning Objectives Explain the importance of work design. Briefly describe the two basic approaches to job design. Discuss t...
Kent State >> MIS >> 44195 (Spring, 2008)
1 From Jack M. Balkin and Beth Simone Noveck, eds., The State of Play: Law and Virtual Worlds Escaping the Gilded Cage User Created Content and Building the Metaverse Cory Ondrejka* Abstract Ever since science fiction awoke imaginations to the promis...
Kent State >> MKTG >> 25010 (Fall, 2008)
LECTURE OUTLINE FOR MKTG 25010 Marketing Lecture Packet 15a Chapter 16 Customer Driven Supply Chain and Logistics Management Fall 2008 DR. MARKS Modified November 3, 2008 1 Chapter 16 Customer Driven Supply Chain and Logistics Management (continue...
Kent State >> MKTG >> 25010 (Fall, 2008)
LECTURE OUTLINE FOR MKTG 25010 Marketing Lecture Packet 16 Chapter 16 Supply Chain Management (continued) and Chapter 17 Retailing Fall 2008 DR. MARKS Modified November 5, 2008 1 Chapter 16 Customer Driven Supply Chain and Logistics Management (co...
Kent State >> MKTG >> 25010 (Fall, 2008)
LECTURE OUTLINE FOR MKTG 25010 Marketing Lecture Packet 19 Chapter 19 (continued) Advertising, Sales Promotion, and Public Relations And Chapter 20 Personal Selling and Sales Management Fall 2008 DR. MARKS Modified November 24, 2008 1 Chapter 19 (...
Kent State >> MKTG >> 25010 (Fall, 2008)
LECTURE OUTLINE FOR MKTG 25010 Marketing Lecture Packet 1 Fall 2008 DR. MARKS Modified 8/20/08 1 Introduction to Marketing 25010 I) Initial Background information a) The Professor and his contact information b) The required textbook c) Lecture No...
Kent State >> MKTG >> 25010 (Fall, 2008)
LECTURE OUTLINE FOR MKTG 25010 Marketing Lecture Packet 16 Chapter 16 Supply Chain Management (continued) and Chapter 17 Retailing Fall 2008 DR. MARKS Modified November 5, 2008 1 Chapter 16 Customer Driven Supply Chain and Logistics Management (co...
Kent State >> MUS >> 21113 (Fall, 2008)
Music Production I Music Tech Magazine Report Issue of Music Tech Checked out: DVD Number No No Why? What? Did you find the Cubase Tutorial useful? Yes Did you find anything useful on the DVD? Yes Which review did you find most interesting? Product n...
Kent State >> CS >> 10001 (Fall, 2008)
CS10001 Computer Literacy Instruction: Weiguo Fan Web page: http:/www.cs.kent.edu/~wfan/CS10001 About me 1st line 2nd line The last line About the computer I use the computer everyday I learn to use the computer So I am taking a computer scie...
Kent State >> CS >> 10001 (Fall, 2008)
Technology In Action 2007 Prentice-Hall, Inc. 1 Technology In Action Chapter 1 Why Computers Matter to You: Becoming Computer Fluent 2007 Prentice-Hall, Inc. 2 Objectives Computer fluency Computers and careers Computer functions Data v...
Kent State >> CS >> 10001 (Fall, 2008)
Weekly average 22.73% Row 11 Row 12 Row 13 10.68% 66.59% Row 11 Row 12 Row 13 breakfast lunch dinner 12 23 12 1 10 23.4 34.5 1 1 8 0 0 0 0 69.5 56.4 sum daily weekly average-weekly 20 23 24 30 9 18 12 136 55 36 57.4 65.5 18 18 12 261.9 261.9 4...
Kent State >> CS >> 10051 (Fall, 2008)
CS 10051 Introduction to Computer Science - Fall 2008 Section 013/014 Instructor: Rashid Bin Muhammad Oce: 357 MSB Oce Hours: MW 4:30 PM - 5:30 PM and 6:45 PM - 7:15 PM (and by email appointment) Telephone: (330) 672-2074 Email: rmuhamma@cs.kent...
Kent State >> CS >> 19995 (Spring, 2008)
Project Instructions: 1. Recycle an old small 3-ring binder and attach in it each single page that you will produce during the project development. 2. Be sure that each page contains the date so that you will be able to see at the end the progress of...
Kent State >> CS >> 19995 (Spring, 2008)
Statement on Academic Dishonesty Excerpted from the Universitys Administrative policy and procedures regarding student cheating and plagiarism. Policy #3342-3-07 (A) Policy statement. It is the policy of the university that: (1) Students enrolled in...
Kent State >> CS >> 19995 (Spring, 2008)
User-Centered Website Development: A HumanComputer Interaction Approach Chapter 7: Prototyping Copyright 2004 by Prentice Hall Daniel D. McCracken City College of New York Rosalee J. Wolfe DePaul University With a foreword by: Jared M. Spool, Fou...
Kent State >> CS >> 19995 (Spring, 2008)
User-Centered Website Development: A HumanComputer Interaction Approach Chapter 6: Navigation Copyright 2004 by Prentice Hall Daniel D. McCracken City College of New York Rosalee J. Wolfe DePaul University With a foreword by: Jared M. Spool, Foun...
Kent State >> CS >> 19995 (Spring, 2008)
User-Centered Website Development: A HumanComputer Interaction Approach Chapter 9: Color Copyright 2004 by Prentice Hall Daniel D. McCracken City College of New York Rosalee J. Wolfe DePaul University With a foreword by: Jared M. Spool, Founding ...
Kent State >> CS >> 23021 (Summer, 2008)
GNU Emacs Reference Card (for version 20) Motion entity to move over character word line go to line beginning (or end) sentence paragraph page sexp function go to buer beginning (or end) scroll scroll scroll scroll scroll to next screen to previous ...
Kent State >> CS >> 47105 (Fall, 2008)
CatalogDescriptionfor2006/07 WebDesignandProgrammingMinor OfferedjointlybetweentheDepartmentofComputerScienceintheCollegeofArts&SciencesandtheSchoolof VisualCommunicationDesignintheCollegeofCommunicationandInformation. Prerequisites: MATH12001Algebra...
Kent State >> CS >> 47106 (Spring, 2008)
CatalogDescriptionfor2006/07 WebDesignandProgrammingMinor OfferedjointlybetweentheDepartmentofComputerScienceintheCollegeofArts&SciencesandtheSchoolof VisualCommunicationDesignintheCollegeofCommunicationandInformation. Prerequisites: MATH12001Algebra...
Kent State >> CS >> 47107 (Fall, 2008)
CatalogDescriptionfor2006/07 WebDesignandProgrammingMinor OfferedjointlybetweentheDepartmentofComputerScienceintheCollegeofArts&SciencesandtheSchoolof VisualCommunicationDesignintheCollegeofCommunicationandInformation. Prerequisites: MATH12001Algebra...
Kent State >> CS >> 57105 (Fall, 2008)
CatalogDescriptionfor2006/07 WebDesignandProgrammingMinor OfferedjointlybetweentheDepartmentofComputerScienceintheCollegeofArts&SciencesandtheSchoolof VisualCommunicationDesignintheCollegeofCommunicationandInformation. Prerequisites: MATH12001Algebra...
Kent State >> VCD >> 33001 (Fall, 2008)
CatalogDescriptionfor2006/07 WebDesignandProgrammingMinor OfferedjointlybetweentheDepartmentofComputerScienceintheCollegeofArts&SciencesandtheSchoolof VisualCommunicationDesignintheCollegeofCommunicationandInformation. Prerequisites: MATH12001Algebra...
Kent State >> VCD >> 37000 (Fall, 2008)
CatalogDescriptionfor2006/07 WebDesignandProgrammingMinor OfferedjointlybetweentheDepartmentofComputerScienceintheCollegeofArts&SciencesandtheSchoolof VisualCommunicationDesignintheCollegeofCommunicationandInformation. Prerequisites: MATH12001Algebra...
Kent State >> VCD >> 46000 (Fall, 2008)
CatalogDescriptionfor2006/07 WebDesignandProgrammingMinor OfferedjointlybetweentheDepartmentofComputerScienceintheCollegeofArts&SciencesandtheSchoolof VisualCommunicationDesignintheCollegeofCommunicationandInformation. Prerequisites: MATH12001Algebra...
Kent State >> CS >> 47105 (Fall, 2008)
Milestone I Project Proposal, Current Site Analysis, Project Requirements, and Thumbnail Images Title of website: Information Architecture and Knowledge Management Current URL: http:/iakm.kent.edu/ Team IAKM Members and Roles Greg Ricker - Team Lea...
Kent State >> CS >> 47106 (Spring, 2008)
Milestone I Project Proposal, Current Site Analysis, Project Requirements, and Thumbnail Images Title of website: Information Architecture and Knowledge Management Current URL: http:/iakm.kent.edu/ Team IAKM Members and Roles Greg Ricker - Team Lea...
Kent State >> CS >> 47107 (Fall, 2008)
Milestone I Project Proposal, Current Site Analysis, Project Requirements, and Thumbnail Images Title of website: Information Architecture and Knowledge Management Current URL: http:/iakm.kent.edu/ Team IAKM Members and Roles Greg Ricker - Team Lea...
Kent State >> CS >> 57105 (Fall, 2008)
Milestone I Project Proposal, Current Site Analysis, Project Requirements, and Thumbnail Images Title of website: Information Architecture and Knowledge Management Current URL: http:/iakm.kent.edu/ Team IAKM Members and Roles Greg Ricker - Team Lea...
Kent State >> VCD >> 33001 (Fall, 2008)
Milestone I Project Proposal, Current Site Analysis, Project Requirements, and Thumbnail Images Title of website: Information Architecture and Knowledge Management Current URL: http:/iakm.kent.edu/ Team IAKM Members and Roles Greg Ricker - Team Lea...
Kent State >> VCD >> 46000 (Fall, 2008)
Milestone I Project Proposal, Current Site Analysis, Project Requirements, and Thumbnail Images Title of website: Information Architecture and Knowledge Management Current URL: http:/iakm.kent.edu/ Team IAKM Members and Roles Greg Ricker - Team Lea...
Kent State >> CS >> 63015 (Fall, 2008)
Feature-based Similarity Search in Graph Structures Xifeng Yan University of Illinois at Urbana-Champaign Feida Zhu University of Illinois at Urbana-Champaign Philip S. Yu IBM T. J. Watson Research Center and Jiawei Han University of Illinois at Urba...
Kent State >> CS >> 73015 (Fall, 2008)
Feature-based Similarity Search in Graph Structures Xifeng Yan University of Illinois at Urbana-Champaign Feida Zhu University of Illinois at Urbana-Champaign Philip S. Yu IBM T. J. Watson Research Center and Jiawei Han University of Illinois at Urba...
Kent State >> CS >> 63015 (Fall, 2008)
Ch 4: Information Retrieval and Text Mining Hakam Alomari 4.1: Is Information Retrieval a Form of Text Mining? What is the principal computer specialty for processing documents and text? Information Retrieval (IR) The task of IR is to retrieve r...
Kent State >> CS >> 63015 (Fall, 2008)
Information Retrieval Part 2 Sissi 11/17/2008 Information Retrieval cont. Web-Based Document Search Page Rank Anchor Text Document Matching Inverted Lists Page Rank PR( A) = d + (1 d ) * ( PR (T j ) / C (T j ) j PR(A) the page rank...
Kent State >> CS >> 79995 (Fall, 2008)
Introduction to GT3 Background The Grid Problem The Globus Approach OGSA & OGSI Globus Toolkit Introduction to GT3 The Globus Project Argonne National Laboratory USC Information Sciences Institute Copyright (C) 2003 University of Chicago...
Kent State >> CS >> 79995 (Fall, 2008)
Grid Computing Fall 2004 Paul A. Farrell 9/14/2004 Implementing Production Grids William E.Johnson, The NASA IPG Engineering Team, and The DOE Science Grid Team Introduction The Grid context Contents What differentiates a Grid from others ?...
Kent State >> CTTE >> 36014 (Spring, 2008)
\"Ode to the Spell Checker!\" Eye halve a spelling chequer It came with my pea sea It plainly marques four my revue Miss steaks eye kin knot sea. Eye strike a key and type a word And weight four it two say Weather eye am wrong oar write It shows me s...
Kent State >> CTTE >> 36014 (Spring, 2008)
Report Writing Rubric for Final Project Beginning Topic Organization Developing Accomplished Exemplary 1 2 Totally unrelated Remotely related Not organized, events Some organization, make no sense events jump around, start and end are unclear Unable ...
What are you waiting for?