Free Essay

Knowledge Management Chapter 09

In:

Submitted By noel7days
Words 3692
Pages 15
Chapter 9

Using Past History Explicitly as Knowledge: Case-Based Reasoning Systems
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall Additional material © 2008 Dekai Wu

Chapter Objectives
• Introduce the student to the concept of using explicit historical occurrences to solve current problems.
 Explained in the context of rule-based systems that also use past experience to solve current problems

• Introduce case-based reasoning. • Introduce how case-based systems can learn from their own experience

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Weaknesses of rule-based systems
• Weaknesses of rule-based systems that inspired the rise of case-based reasoning:
 Experts may not be able to externalize their experience into clean bits of knowledge that can be encoded into rules
 Their knowledge is an accumulation and a combination of years of being exposed to many instances of similar problems (and their subsequent solutions)

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Weaknesses of rule-based systems
• To manage the knowledge of experts, we must:
 Elicit it from the expert  Represent or formalize it in a form suitable for computing  Validate and verify the knowledge

• All these contain pitfalls for the rule-based systems approach

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Weaknesses of rule-based systems
• Q. Why may rule-based systems have difficulty with eliciting, representing, and validating knowledge from the expert? • A1. Results vary depending on which expert
 It is the experts’ personal interpretation of the domain  Some experts are very knowledgeable, others only minimally so  Different experts may see the same domain from different perspectives – in fact, they may all be correct in some way
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Weaknesses of rule-based systems
• Q. Why may rule-based systems have difficulty with eliciting, representing, and validating knowledge from the expert? • A2. Transferring the codified knowledge can be difficult and error-prone
 Experts can provide erroneous knowledge if the KE’s question is ill-posed  The KE can misinterpret an expert’s correct answer  Developers can misrepresent correct knowledge in the system code (or rules)
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Weaknesses of rule-based systems
• Q. Why may rule-based systems have difficulty with eliciting, representing, and validating knowledge from the expert? • A3. Too many rules may be needed to properly represent one domain.
 Eg: GenAID had ~10,000 rules when initially deployed  Disadvantage 1: The rules have to be coded, verified, validated, and maintained
 Complexity of validation and maintenance can grow exponentially with the number of rules, due to rule interaction!

 Disadvantage 2: They have to be executed by the inference engine
 Computational cost can become infeasible
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR)
CBR is an alternative to rule-based systems… • Keep all the concrete cases that might have led to the learning by the experts • Stick to recording the concrete details of each case, without generalizing experience into rules • Avoid the personal influence of individual experts • Bypass the expert and look directly at the information that allowed them to learn and acquire their expertise • We no longer need the experts’ interpretation, and thus avoid the associated drawbacks
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR)
• One approach to avoid the problem of knowledge acquisition and maintenance • The CBR technique originates from Schank’s [1982] concept of remindings:
 When people are thinking (eg, solving problems), they are merely recalling past experiences that somehow remind them of the current situation  If the current and historical situations are sufficiently similar, then it can be inferred that the solutions to both situations are the same  I.e., people apply solutions of past problems to current problems that are similar in nature
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR)
• Example 1 [Klein 1985]
 Fire ground commander coordinating his crew, while fighting a fire at a low-rise apartment building  Notices billboards on the building’s roof  Recalls earlier incident where flames burned through the wooden billboard supports, causing them to crash to the street below  Orders that spectators be moved farther back to prevent injury from falling billboards

• Note: Highly unlikely that such a rule would have already been included in a KBS
 Unless spectators had already previously been injured by falling billboards – but that would be too late!
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR)
• Example 2 [Klein 1985]
 Fire ground commander notices some peculiar properties in a cloud of smoke at a fire  Recalls an incident in which toxic smoke had been given off showing the same features of density, color, and heaviness  Orders his crew to use breathing support systems

• Note: Highly unlikely that such a rule would have already been included in a KBS
 Unless fire crew had already previously been injured by this specific kind of toxic smoke – but that would be too late!

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR)
• CBR uses explicit historical experiences to solve new problems • Assumes that problems recur, and that “similar problems have similar solutions” • Intuitive and simple framework that developers and users find natural to understand and work with • Provides a natural (though simplistic) form of learning by merely adding any newly solved problem to its database of past cases
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR)
• Simplest, most basic form of CBR:
 A repository of historical cases called the case library  A means to find and retrieve a similar case from the case library, and use its solution to solve the current problem  A means to add the newly solved problem and solution to the case library as a new case

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR): Adaptation
• But: What happens when the most similar case is not judged similar enough to the current problem? • This will happen much of the time – if we just give up, CBR won’t be very useful! • In such circumstances, the solution(s) of the most similar case(s) should be adapted to the current problem.

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR): Adaptation
• Automatic adaptation is a very difficult problem technically. • Except in highly limited formalisms, there is little solid mathematical theory to support practical adaptation methods. • In many systems, adaptation has been abandoned altogether.
 Focus instead on improving searching and learning.

• Combining CBR with other approaches is the usual way of tackling automatic adaptation, eg:
 Use rules to make adaptations  Use machine learning and pattern recognition methods
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR): Successful vs failed cases
• Important to categorize cases according to whether it succeeded or failed • Failed cases can provide as much (or more!) useful information than successful ones

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Case-Based Reasoning (CBR)
• More realistic CBR systems:
 Search the case library
 Requires efficient indexing of the cases

 Retrieve the most similar case(s)
 Requires quantitative similarity metrics

 Adapt the most similar case(s) if not suitably similar
 Technically difficult, and optional  Sometimes impossible, eg, pre-filmed video clips

 Apply the solution to the current problem
 Capture whether it succeeded or failed, as feedback

 Add the last case to the case library
 Requires criteria to decide whether it is worth adding  Requires efficient updating of the indexing
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Indexing the case library
• Indexing = labeling of data items in such a way that they are easily retrieved • Examples:
 Library card catalogs (usually only by title or author)  Library numbering system / physical organization (usually by subject)
 Dewey Decimal System  Library of Congress System

 Library electronic catalogs (more powerful searching over a wider range of attributes)  Library full text search engines  Internet full text search engines
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Indexing the case library
• Issue: What attributes of cases are indexed? • For real-world cases, there are typically a huge range of attributes you could imagine to index each case by. • If attributes are defined too broadly, an unnecessarily large number of cases may be retrieved for examination. • If attributes are defined too narrowly, there may be some truly similar cases that are overlooked during retrieval. • Explanation-Based Indexing (EBI) is one AI technique for deciding which indexes, out of a predefined possible space of indexes, to use for each case. [Barletta 1988]
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Indexing the case library
• Issue: What is the best way to organize a library of cases? • The effect of retrieving an improperly matched case is often more computationally expensive than selecting the wrong rule to execute in a rule-based system. • Inefficient searches due to poor organization can result in unacceptable performance. • Main means of increasing search efficiency through indexing:
 Flat library  Shared feature networks  Redundant shared feature networks
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Indexing the case library: Flat library
• • • • Flat case libraries are the simplest Cases can be placed in a list, array, or file Some ordering may be imposed May be too inefficient for larger case libraries with complex cases; additional strategies:
 Partitioning the library (eg, individual vs corporate)  Relational database techniques

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Indexing the case library: Shared feature networks
• Decision tree clustering • Hierarchical organizations that segregate cases by what features they have in common • Cluster cases as much as possible – given any node, segregate its cases by choosing the feature most universally shared • Search process simply follows path through tree, matching features of the current problem

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Fig. 9.1: Shared feature network for a loan application example

Type of organization Business Type of Business Individual

Employment status

Corporation Size of Loan

Ltd Partnership Size of Loan

Employed Size of Loan

Self-employed Size of Loan

>= $1M Case 1 . . Case 77

< $1M Case 80 . . Case 106

>= $1M Case 110 . . Case 158

< $1M Case 160 . . Case 169

>= $100K

< $100K

>= $100K Case 210 . . Case 246

< 100K Case 290 . . Case 326

Case 170 . . Case 206

Case 250 . . Case 287

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Indexing the case library: Redundant shared feature networks
Problem: Often there are some unknown attributes in any new case. Can’t find path through tree! Redundant shared feature networks attempt to overcome this by maintaining a number of different trees, each of which prioritizes different attributes. Choose the tree that gets you the longest path, ie, closest to the leaf level, so that the roadblock comes in at the latest possible stage in the search.
 Tries to give the narrowest subset of similar cases.

• • •

• •

Still a rather “sledgehammer” approach. Thus, best to use hierarchical organizations in applications where there is little reason for new cases to have incomplete information.
 Example: Property listing databases  Counterexample: Diagnostic cases
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Matching and retrieval of cases from the case library
• • • • A distance metric is used to compute the distance between historical cases and current problem A distance metric is a function that aggregates variation over a large number of attributes Attributes may be discrete/boolean or continuous There are always many possible aggregation functions
       Weighted sums (weighted averages) Higher-order polynomials (regression based measures) Hamming distances, and more sophisticated edit distances Cosine based measures Information-theoretic and probabilistic measures Ad hoc measures etc.



No universal truth – which distance metric is best depends heavily on the domain
 Often must be empirically determined
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Evaluation
• How to determine whether the most similar case is similar enough? • May involve implementing the solution
 within a simulator  in real life under test conditions

• Not always possible! • May also involve looking for negative cases – those whose solution did not solve the current problem when applied
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Adaptation
• How to modify the most similar case when it is not sufficiently similar to the current problem?
Reinstantiation - eg, replace beef with chicken Parameter adjustment – eg, scaling income/credit Search – eg, find exact location of hose leak Case-based substitution – recursively use CBR to find a substitute for a mismatched sub-step in the case  Transformation – use some non-CBR (eg, heuristic rule-based) method to find a substitute for a mismatched sub-step in the case  Model-guided repair – use a causal model to determine the approapriate transformation    
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Learning
• Learning in the context of case-based reasoning can often compare very favorably with the rather painful and expensive knowledge acquisition and maintenance process for rule-based systems. • Learning is done simply by adding new cases to the knowledge base.

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Fig. 9.2: Pictorial representation of a simple 2-D problem space

Region A Region B Region C

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Learning
• Adding cases progressively covers more and more of the problem space.
 The more cases, the better the coverage of the problem domain.

• Many cases overlap.
 Not a problem, as long as their solutions are consistent.

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Learning
• Issues:
 Too many cases:
 May clog the search and retrieval process unnecessarily

 Too little diversity among the cases (even if there are many cases):
 May leave significant gaps in coverage  Eg, regions A, B, C in Figure 9-2

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Learning
• Issues:
 Inconsistency between problem and solution spaces  Neighboring cases in the problem space are likely to map to neighboring cases in the solution space if the problem domain
 is based on a natural process,  is well understood, and  all cases are completely defined.

 Solutions may conflict with each other, ie, solutions to nearly identical cases may be radically different, if the problem domain
 is poorly understood,  is based on irrational human behaviors (eg, stock or property markets), or  is incompletely defined.
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Fig. 9.3: Mapping between problem and solution spaces

Consistent

Consistent

Inconsistent

Problem Space Problem Space

Solution Space

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Learning
• Learning in the context of case-based reasoning can often compare very favorably with the rather painful and expensive knowledge acquisition and maintenance process for rule-based systems. • Introduce the concept of when new cases are consistent with the rest of the case library and when they are not
 This is important when deciding whether to add new cases or not
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Where CBR excels
• CBR is excellent when many well-documented histories of past problems and their solutions exist. • Examples:
 Law: legal cases  Property: appraisal

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Example: CBR applied to property appraisal [Gonzalez 1992]
• Use the market data method of property appraisal • Features (attributes):
            Living area in square feet Number of bedrooms Number of bathrooms Architectural style of the house Age of the house Location (neighborhood) Date of sale Type of cooling equipment Type of heating equipment Type of garage Site or lot size Availability of swimming pool
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Example: CBR applied to property appraisal [Gonzalez 1992]
• Case retrieval:
 Retrieves 10 best cases  Ranks in order of decreasing similarity



Case adaptation
 Uses critics: heuristic rules that increase or decrease the actual sold price of a retrieved property based on differences between it and the property being appraised
 eg, a swimming pool critic

 Adaptation is cumulative: done for all features of the comparison



Case evaluation
 Too many adaptations can result in inaccuracy  A comfort factor indicates which of the 10 cases was least extensively adapted  Top three are selected (traditional in appraisal business)



Returns the average of the top three
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Some issues in case-based systems
• It can take a much larger number of cases than rules to cover a domain to the same extent. • Whether the assumption that similar problems have similar solutions really holds depends on the domain. • The similarity metric depends on the domain and can greatly affect CBR systems (and sometimes there may not even be any good similarity metric). • Adaptation is highly domain dependent (and in extreme cases may be equally or more complex than a rulebased system).

Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Advantages of case-based systems
• The knowledge acquisition process is considerably simplified in many applications, especially where the case library may already exist as corporate documentation, possibly even in an electronic database. The knowledge maintenance process is greatly facilitated by the learning ability of CBR systems. CBR is modeled after human reasoning. There is significant evidence to believe that CBR is a cognitive problem-solving model [Kolodner 1993]. CBR performs better than rule-based systems in so-called weaktheory domains. That is, these are domains where experts may not exist, or if they exist, they do not fully understand the intricacies of the domain. The base of experience used can be that of an entire organization, instead of that of a few interviewed individuals. This can multiply the breadth of a knowledge base in CBR.
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

• • •



Disadvantages of case-based systems
• Just as efficiency is seen as an advantage, it can also be a disadvantage for large systems with poorly organized or indexed case libraries. Moreover, the matching process, if complex, can add computational cost to the CBR system, regardless of how well designed the case library may be. In many cases, distance calculations between the desired and actual solution can be difficult to make. This is from a conceptual as well as a computational standpoint. Adaptation may be quite difficult or impossible in many domains. In others, it is done with rules. Learning, although natural and intuitive, demands some careful considerations as to which cases are added to the case library, and how. Building a case library may not be easy in some situations, and may approach the difficulty of building a rule base. This may be the case where cases do not already exist or are poorly documented. In such cases, experts can be asked to create the cases from their experiences. This may be as difficult as implementing the knowledge in a conventional rule-based system. We argue that this neutralizes one otherwise major advantage of CBR.
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

• • • •

Section 9.10 - Objectives
• Briefly introduces some variations of case-based reasoning:
 Exemplar-based reasoning – focuses on the classification phase of CBR  Instance-based reasoning – emphasizes a very large number of cases (instances) represented in simple regular forms (eg, attribute vectors or feature vectors), thus facilitating fully automatic machine learning  Memory-based reasoning – identical to CBR  Analogy-based reasoning – focuses on adaptation via the mapping problem (how to map the solution of the analogue case to the current problem)
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Conclusions
• The student should be familiar with:
 The difference between how rule-based systems and case-based systems use historical knowledge.  The main processes of case-based reasoning:
     Search Select Adapt Apply Learn

 The advantages and disadvantages of case-based systems
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

A7: Individual Assignment (Due at beginning of class Jul 23)
1. For one week, keep track of what you eat for breakfast, lunch, and dinner. Also record any special attribute that contributed to you ordering or preparing each specific meal. Were you particularly hungry? Did you have a special desire for something? Were you eating out? Were you celebrating some good news? By looking at these cases, decide how you will index the case library to achieve the most efficiency in searching. 2. For the problem of deciding what to eat for the following week, design a distance metric to determine similarity in cases.
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall / Additional material © 2008 Dekai Wu

Chapter 9

Using Past History Explicitly as Knowledge: Case-Based Reasoning Systems
Becerra-Fernandez, et al. -- Knowledge Management 1/e -- © 2004 Prentice Hall Additional material © 2008 Dekai Wu

Similar Documents

Premium Essay

Eng 200

... Kareem M. Shabana Assistant Professor of Management Contact Information Office: C. Wimberly Hall – Room 418B Email: kshabana@uwlax.edu Phone: (608) 785-6664 Office Hours Mondays & Wednesdays: 1:30-2:00 p.m. Tuesdays & Thursdays: 1:30-3:30 p.m. And by appointment ------------------------------------------------- ------------------------------------------------- Syllabus Revisions ------------------------------------------------- The instructor maintains the privilege to make revisions to this syllabus at his discretion. All changes and revisions will be posted on the course’s page on D2L. It is the responsibility of each student to keep abreast of all changes and revisions. Course Description Course Overview MGT 449, Administrative Policy Determination, is primarily concerned with the study of the determinants of overall firm performance. This study aims at answering the fundamental question of strategic management: Why do some firms perform better than others? The study of the determinants of overall firm performance is conducted through the examination of the relationship between the firm and its environment and the analysis of multifunctional problems that confront top management. Special attention is given to the impact of sustainability and globalization on the study and practice of strategic management. The course adopts an “integrated case study approach to the variables in management policy determination at the overall level....

Words: 4044 - Pages: 17

Premium Essay

Even If All Rebates Were Redeemed, Why Might Manufacturers Still Want to Offer Rebates Rather Than Decrease Wholesale Prices?

...Unit Outline | Supply Chain Management| MKTG3308| | | Semester 1Crawley| | Sharon Purchase| Business School www.business.uwa.edu.au Insert document version showing unit code/location/your initials/date, eg Statistics 160 on-campus, prepared by Jane Smith on Sep-21 would become 530160/Crawley/JS/20.11.08.| | All material reproduced herein has been copied in accordance with and pursuant to a statutory licence administered by Copyright Agency Limited (CAL), granted to the University of Western Australia pursuant to Part VB of the Copyright Act 1968 (Cth).Copying of this material by students, except for fair dealing purposes under the Copyright Act, is prohibited. For the purposes of this fair dealing exception, students should be aware that the rule allowing copying, for fair dealing purposes, of 10% of the work, or one chapter/article, applies to the original work from which the excerpt in this course material was taken, and not to the course material itself.| © The University of Western Australia 2009| Contents UNIT DESCRIPTION 1 Introduction 1 Unit content 1 Learning outcomes 1 CONTACT DETAILS 1 TEACHING AND LEARNING RESPONSIBILITIES 2 Teaching and learning strategies 2 Charter of student rights and responsibilities 2 Teaching and learning evaluation 2 ASSESSMENT MECHANISM 3 Assessment mechanism summary 3 Assessment details 3 Standard of Assessment 6 Special Consideration and Deferred Exams 7 Supplementary Assessment 8 Ethical...

Words: 4639 - Pages: 19

Premium Essay

Unix

...Unit Outline | Supply Chain Management| MKTG3308| | | Semester 1Crawley| | Sharon Purchase| Business School www.business.uwa.edu.au Insert document version showing unit code/location/your initials/date, eg Statistics 160 on-campus, prepared by Jane Smith on Sep-21 would become 530160/Crawley/JS/20.11.08.| | All material reproduced herein has been copied in accordance with and pursuant to a statutory licence administered by Copyright Agency Limited (CAL), granted to the University of Western Australia pursuant to Part VB of the Copyright Act 1968 (Cth).Copying of this material by students, except for fair dealing purposes under the Copyright Act, is prohibited. For the purposes of this fair dealing exception, students should be aware that the rule allowing copying, for fair dealing purposes, of 10% of the work, or one chapter/article, applies to the original work from which the excerpt in this course material was taken, and not to the course material itself.| © The University of Western Australia 2009| Contents UNIT DESCRIPTION 1 Introduction 1 Unit content 1 Learning outcomes 1 CONTACT DETAILS 1 TEACHING AND LEARNING RESPONSIBILITIES 2 Teaching and learning strategies 2 Charter of student rights and responsibilities 2 Teaching and learning evaluation 2 ASSESSMENT MECHANISM 3 Assessment mechanism summary 3 Assessment details 3 Standard of Assessment 6 Special Consideration and Deferred Exams 7 Supplementary Assessment 8 Ethical...

Words: 4639 - Pages: 19

Premium Essay

Science Paper

...P T E R 1/27/10 2:04:01 PM f-500 /Users/f-500/Desktop/28-12-09/MHBR120:ARENS:PRINTER CRX O N E Modern Project Management Estimate 5 Schedule resources & costs 8 Project networks 6 l iona rnat Inte ojects pr 15 Reducing duration 9 Define project 4 ht Oversig Introduction 1 Strategy 2 Managing risk 7 Organization 3 Leadership 10 Teams 11 Monitoring progress 13 Project closure 14 Outsourcing 12 Modern Project Management What Is a Project? The Importance of Project Management Project Management Today—An Integrative Approach Summary Text Overview 2 16 17 Agile PM 18 Career p aths Lar03342_ch01_002-021.indd Page 3 1/27/10 2:04:02 PM f-500 /Users/f-500/Desktop/28-12-09/MHBR120:ARENS:PRINTER CRX All of mankind’s greatest accomplishments—from building the great pyramids to discovering a cure for polio to putting a man on the moon—began as a project. This is a good time to be reading a book about project management. Business leaders and experts have proclaimed that project management is a strategic imperative. Project management provides people with a powerful set of tools that improves their ability to plan, implement, and manage activities to accomplish specific organizational objectives. But project management is more than just a set of tools; it is a results-oriented management style that places a premium on building collaborative relationships...

Words: 9667 - Pages: 39

Premium Essay

Csun vs. Fcc Home Game

...Unit Outline | Supply Chain Management| MKTG3308| | | Semester 1Crawley| | Sharon Purchase| Business School www.business.uwa.edu.au Insert document version showing unit code/location/your initials/date, eg Statistics 160 on-campus, prepared by Jane Smith on Sep-21 would become 530160/Crawley/JS/20.11.08.| | All material reproduced herein has been copied in accordance with and pursuant to a statutory licence administered by Copyright Agency Limited (CAL), granted to the University of Western Australia pursuant to Part VB of the Copyright Act 1968 (Cth).Copying of this material by students, except for fair dealing purposes under the Copyright Act, is prohibited. For the purposes of this fair dealing exception, students should be aware that the rule allowing copying, for fair dealing purposes, of 10% of the work, or one chapter/article, applies to the original work from which the excerpt in this course material was taken, and not to the course material itself.| © The University of Western Australia 2009| Contents UNIT DESCRIPTION 1 Introduction 1 Unit content 1 Learning outcomes 1 CONTACT DETAILS 1 TEACHING AND LEARNING RESPONSIBILITIES 2 Teaching and learning strategies 2 Charter of student rights and responsibilities 2 Teaching and learning evaluation 2 ASSESSMENT MECHANISM 3 Assessment mechanism summary 3 Assessment details 3 Standard of Assessment 6 Special Consideration and Deferred Exams 7 Supplementary Assessment 8 Ethical...

Words: 4639 - Pages: 19

Premium Essay

Boeing Craft

...(Institute of International Business) (06) 275-7575 ext.53512 ctseng@mail.ncku.edu.tw Texts Ireland, Hoskisson, and Hitt (2009) The Management of Strategy: Concepts and Cases, 8th Edition, South-Western Press. Course Objectives In the past a few decades, the trend of globalization has rendered the world economies more interdependent. All businesses today (both international and domestic ones) are exposed to international competitive forces that can have serious consequences for their performance and survival. Such international competition especially brings new challenges and problems to corporations and managers directly involved in foreign markets. Among various issues arising from international operations, this course particularly focuses on the managerial challenges associated with strategy development and corporate management for those firms whose business activities transcend national boundaries. Specifically, objectives of this course are twofold: 1. to expose students to issues related to business strategy within the context of global markets and competition 2. to provide students with significant opportunities to develop oral communication and presentation skills Requirements and Grading Individual Activities: Participation 40% Exam (close-book) 20% Group Activities: Chapter Text Presentation and Discussion Leading 20% Case Analysis and Presentation 20% Participation: All students are expected to...

Words: 903 - Pages: 4

Premium Essay

Dont Knwo

...rain_c02_034-069hr.qxd 28-09-2009 13:18 Page 34 CHAPTER 2 1. Describe the components of computer-based information systems. 2. Describe the various types of information systems by breadth of support. 3. Identify the major information systems that support each organizational level. 4. Describe strategic information systems (SISs) and explain their advantages. 5. Describe Porter’s competitive forces model and his value chain model and explain how IT helps companies improve their competitive positions. 6. Describe five strategies that companies can use to achieve competitive advantage in their industries. 7. Describe how information resources are managed and discuss the roles of the information systems department and the end users. Information Systems: Concepts and Management LEARNING OBJECTIVES rain_c02_034-069hr.qxd 28-09-2009 13:18 Page 35 WEB RESOURCES Student Web site www.wiley.com/college/rainer • Web quizzes • Lecture slides in PowerPoint • Author podcasts • Interactive Case: Ruby’s Club assignments WileyPLUS • All of the above and... • E-book • Manager Videos • Vocabulary flash cards • Pre- and post-lecture quizzes • Microsoft Office 2007 lab manual and projects • How-to animations for Microsoft Office • Additional cases CHAPTER OUTLINE 2.1 Types of Information Systems 2.2 Competitive Advantage and Strategic Information Systems 2.3 Why Are Information Systems Important to Organizations and Society? 2.4 Managing Information Resources ...

Words: 16912 - Pages: 68

Premium Essay

Course Outline Hrm

...Hanoi University FACULTY OF MANAGEMENT AND TOURISM Subject profile HRM 301 HUMAN RESOURCE MANAGEMENT Fall 2011 (K2008) Hanoi 08 - 2011 Subject details |Subject name |Human Resource Management  | |Units of credit |5 | |Study length |15 weeks | |Prerequisite /Co requisite |MGT 201 – Introduction to Management | |Suggested study commitment |Approximately 10 hours per week | |Year |Spring 2009 | |Subject Coordinator |Phuong Tram Nguyen Le | |Lecturers |Phuong Tram...

Words: 3745 - Pages: 15

Premium Essay

Free

...new74598_ch01_001-024.indd Page 1 24/09/12 1:18 PM user-f502 /202/MH01799/new74598_disk1of1/0073374598/new74598_pagefiles FROM PATIENT TO PAYMENT: UNDERSTANDING MEDICAL INSURANCE KEY TERMS Step 1 S te St ep 10 Follow up payments and collections Preregister patients p2 Establish financial responsibility St ep 3 S te p 9 Generate patient statements Check in patients Monitor payer adjudication Review coding compliance St ep 8 S te Check out patients Review billing compliance p7 St ep 5 S tep 6 Learning Outcomes After studying this chapter, you should be able to: 1.1 Explain how healthy practice finances depend on correctly accomplishing administrative tasks in the medical office. 1.2 Compare coinsurance and copayment requirements for health Copyright © 2014 The McGraw-Hill Companies plan benefits. 1.3 Identify the key steps in the medical billing cycle. 1.4 Discuss the impact of electronic health records on clinical and billing workflow. 1.5 Evaluate the importance of professional certification and of medical liability insurance for career advancement. S te p4 Medical Billing Cycle Prepare and transmit claims 1 accounts payable (AP) accounts receivable (AR) benefits cash flow certification coding coinsurance copayment covered services deductible diagnosis documentation electronic claim (e-claim) electronic health record (EHR) ...

Words: 12818 - Pages: 52

Premium Essay

Asdasd

...Asjkasdka;sldka;sldkas;ldkas;kldThis academic report is give an enhance knowledge of developing a comprehensive personal and professional development strategies where summarized as below. Chapter 01 Steps of Developing Professional Development Plan and CV Chapter 02 Evaluation on Professional Development Plan Chapter 03 Highlighted on Interpersonal and transferable skills Chapter 04 Focus on Learning in a professional context Table of contents Executive summary 01 Table of contents 02 Chapter 01 03-09       1.1 Introduction on Personal and Professional Development       1.2 Self Assessment       1.3 Personal SWOT Analysis       1.4 Skill Audit       1.5 Personal Development Plan       1.6 Curriculum vitae Chapter 02 10 2.1 Evaluation on Personal Development Plan  Chapter 03 11-13 3.1 Interpersonal and transferable skills 3.2 Time Management 3.3 Problem solving 3.4 Communication Chapter 04 14 4.1 Learning Bibliography 15 Chapter 01 1.1 Introduction on Personal and Professional Development Understanding skills, attitudes and knowledge is helpful to develop personal and professional career. According to the Guskey and Huberman (1995)Professional development is those processes and activities designed to enhance the professional knowledge, skills and attitudes of individuals in a working environment so that they might, in turn enhance the performance of the overall organization. This is an ongoing, systematic and intentional process.  Knowledge, skills and attitudes enhancement will create confidence...

Words: 287 - Pages: 2

Premium Essay

Business Strategy

...FIRST PAGES Part One Overview of Strategic Management The first chapter of this book introduces strategic management, the set of decisions and actions that result in the design and activation of strategies to achieve the objectives of an organization. The chapter provides an overview of the nature, benefits, and terminology of and the need for strategic management. Subsequent chapters provide greater detail. The first major section of Chapter 1, “The Nature and Value of Strategic Management,” emphasizes the practical value and benefits of strategic management for a firm. It also distinguishes between a firm’s strategic decisions and its other planning tasks. The section stresses the key point that strategic management activities are undertaken at three levels: corporate, business, and functional. The distinctive characteristics of strategic decision making at each of these levels affect the impact of activities at these levels on company operations. Other topics dealt with in this section are the value of formality in strategic management and the alignment of strategy makers in strategy formulation and implementation. The section concludes with a review of the planning research on business, which demonstrates that the use of strategic management processes yields financial and behavioral benefits that justify their costs. The second major section of Chapter 1 presents a model of the strategic management process. The model, which will serve as an outline for...

Words: 9310 - Pages: 38

Premium Essay

Gfgdgd

...Description Review of managerial economics and problems encountered in firm management. Examines changing economic environment, business trends and fluctuations, and introduces forecasting techniques. Prerequisites None Course Textbook Keat, P., & Young, P. (2009). Managerial economics (6th ed.). Upper Saddle River, NJ: Prentice Hall. Course Learning Objectives Upon completion of this course, students should be able to: 1. Discuss managerial economics and its relationship to microeconomics and other related fields of study such as finance, marketing, and statistics. 2. Decide economic goals for the firm and develop optimal decisions that will bring the firm closest to those goals. 3. Define supply, demand, and equilibrium price. 4. Apply the concepts of price elasticity, cross-elasticity, and income elasticity. 5. Specify the components of a regression model that can be used to estimate a demand equation. 6. Define production function, and explain the difference between a short-run and a long-run production function. 7. Distinguish between economic cost and accounting cost. 8. Describe the key characteristics of the four basic market types used in economic analysis. 9. Cite the main differences between monopolistic competition and oligopoly. 10. Analyze the practice of cartel pricing. 11. Illustrate game theory, and explain how it helps better understand mutually interdependent management decisions. 12. Define the cost of capital, and demonstrate how it is calculated...

Words: 1441 - Pages: 6

Premium Essay

Summer Training Report

...A Summer Training Report “FINANCIAL RATIOS ANALYSIS” AT ALOK INDUSTRIES LIMITED VAPI (FROM 10TH MAY 2010 TO 10TH JULY 2010) FOR THE PARTIAL FULFILLMENT TO DEGREE OF MASTER OF BUSINESS ADMINISTRATION Department of Business and Industrial Management, Veer Narmad South Gujarat University Surat Submitted to: - Submitted by:- Ms. NAMRATA KHATRI. DHAVAL SHAH, (MENTOR & FACULTY MEMBER, MBA (FT), SEM II, DBIM,VNSGU) DBIM, VNSGU PREFACE In this development and changing world, I feel proud for being a student of MBA full time course offered by DEPARTMENT OF BUSINESS AND INDUSTRIAL MANAGEMENT, VEER NARMAD SOUTH GUJARAT UNIVERSITY, SURAT. This report states about the all the departments and their workings policies at the ALOK INDUSTRIES LTD, PROCESSING PLANT BALITHA, TALUKA PARDI, VALSAD Finance and Function of Finance are the part of Economic activities. As this report also include the Financial Ratio Analysis which checks upon the efficiency of the firm. Ratios indicate the trend or progress or downfall of the firm and are aid to measure financial solvency. This project start with industry analysis, introduction of the company and organization, four major departments of the firm they are finance, marketing, production and human resource. Which are included in general training part and specific research includes...

Words: 14361 - Pages: 58

Premium Essay

Aarongs Possibilities

...BRAC University School of Business Summer2015 COURSE OUTLINE MKT 201: Principles of Marketing Section – 2, 5 [“Marketing is not the art of finding clever ways to dispose of what you make. It is the art of creating genuine customer value.” ― Philip Kotler]. |Section |DAYS |TIME |Room No | |2 |Mon & Wed |09:30 - 10:50 |UB20203 | |5 |Mon & Wed | 03.30 - 04.50 |UB20203 | Instructor: Rahma Akhter Office : UB20605 E-mail : rahma.akhter@bracu.ac.bd Phone : 01817530917 Consultation Hours |DAY |TIME |ROOM |HOURS | |Sun & Tues |12:30-01:50 |UB 20605 |3 | |Sun & Tues |02:00-03:20 |UB 20605 |3 | |Mon & Wed |11:00-12:20 |UB 20605 |3 | |Mon &Wed |12:30-01:50 |UB 20503 |3 | I. RATIONAL: This course introduces the students to the world of marketing. Starting off with the key concepts of marketing, the course is also a survey of the marketing function of the organization, including the marketing environment and target markets, marketing strategy with emphasis on the marketing...

Words: 1707 - Pages: 7

Free Essay

Fins5530

...Australian School of Business School of Banking and Finance FINS5530 FINANCIAL INSTITUTION MANAGEMENT COURSE OUTLINE SEMESTER 2, 2009 TABLE OF CONTENTS 1. STAFF CONTACT DETAILS 2. COURSE DETAILS 2.1 Teaching Times and Locations 2.2 Units of Credit 2.3 Summary of Course 2.4 Course Aims and Relationship to Other Courses 2.5 Student Learning Outcomes 3. LEARNING AND TEACHING ACTIVITIES 3.1 Approach to Learning and Teaching in the Course 3.2 Learning Activities and Teaching Strategies 4. ASSESSMENT 4.1 Formal Requirements 4.2 Assessment Details 4.3 Assessment Format 4.4 Assignment Submission Procedure 4.5 Late Submission 5. ACADEMIC HONESTY AND PLAGIARISM 6. COURSE RESOURCES 7. COURSE EVALUATION AND DEVELOPMENT 8. STUDENT RESPONSIBILITIES AND CONDUCT 8.1 8.2 8.3 8.4 8.5 8.6 Workload Attendance Special Consideration and Supplementary Examinations General Conduct and Behaviour Occupational Health and Safety Keeping Informed 1 1 1 1 1 1 2 2 2 3 3 3 4 4 4 4 4 5 5 5 6 6 6 6 6 7 7 7 9. ADDITIONAL STUDENT RESOURCES AND SUPPORT 10. COURSE SCHEDULE 1. STAFF CONTACT DETAILS Jianfeng Shen (Lecturer in Charge, Lecturing weeks 7-12) Room: ASB337 Tel No: 9385 4581 Email: jianfeng.shen@unsw.edu.au Consultation: Monday: 1 – 2:30pm Vic Edwards Senior Lecturer in Charge (Lecturing weeks 1 – 6) Room: ASB354 Tel No.: 9385 5860 Email: v.edwards@unsw.edu.au Consultation: Tuesday: 3.00 pm to 4.30 pm Students with queries regarding course administration or lecture contents should: • •...

Words: 2490 - Pages: 10