Free Essay

Research

In:

Submitted By swalovey
Words 1849
Pages 8
IAI : Expert Systems
© John A. Bullinaria, 2005

1. 2. 3. 4. 5. 6. 7.

What is an Expert System? The Architecture of Expert Systems Knowledge Acquisition Representing the Knowledge The Inference Engine The Rete-Algorithm The User Interface

What is an Expert System?
Jackson (1999) provides us with the following definition: An expert system is a computer program that represents and reasons with knowledge of some specialist subject with a view to solving problems or giving advice. To solve expert-level problems, expert systems will need efficient access to a substantial domain knowledge base, and a reasoning mechanism to apply the knowledge to the problems they are given. Usually they will also need to be able to explain, to the users who rely on them, how they have reached their decisions. They will generally build upon the ideas of knowledge representation, production rules, search, and so on, that we have already covered. Often we use an expert system shell which is an existing knowledge independent framework into which domain knowledge can be inserted to produce a working expert system. We can thus avoid having to program each new system from scratch. w9-2 Typical Tasks for Expert Systems
There are no fundamental limits on what problem domains an expert system can be built to deal with. Some typical existing expert system tasks include: 1. The interpretation of data Such as sonar data or geophysical measurements 2. Diagnosis of malfunctions Such as equipment faults or human diseases 3. Structural analysis or configuration of complex objects Such as chemical compounds or computer systems 4. Planning sequences of actions Such as might be performed by robots 5. Predicting the future Such as weather, share prices, exchange rates However, these days, “conventional” computer systems can also do some of these things. w9-3 Characteristics of Expert Systems
Expert systems can be distinguished from conventional computer systems in that: 1. They simulate human reasoning about the problem domain, rather than simulating the domain itself. 2. They perform reasoning over representations of human knowledge, in addition to doing numerical calculations or data retrieval. They have corresponding distinct modules referred to as the inference engine and the knowledge base. 3. Problems tend to be solved using heuristics (rules of thumb) or approximate methods or probabilistic methods which, unlike algorithmic solutions, are not guaranteed to result in a correct or optimal solution. 4. They usually have to provide explanations and justifications of their solutions or recommendations in order to convince the user that their reasoning is correct. Note that the term Intelligent Knowledge Based System (IKBS) is sometimes used as a synonym for Expert System. w9-4 The Architecture of Expert Systems
The process of building expert systems is often called knowledge engineering. The knowledge engineer is involved with all components of an expert system:

Expert

Knowledge acquisition system

Knowledge base of facts, rules, heuristics

Inference engine

User interface

User

Knowledge Engineer

Building expert systems is generally an iterative process. The components and their interaction will be refined over the course of numerous meetings of the knowledge engineer with the experts and users. We shall look in turn at the various components. w9-5 Knowledge Acquisition
The knowledge acquisition component allows the expert to enter their knowledge or expertise into the expert system, and to refine it later as and when required. Historically, the knowledge engineer played a major role in this process, but automated systems that allow the expert to interact directly with the system are becoming increasingly common. The knowledge acquisition process is usually comprised of three principal stages: 1. Knowledge elicitation is the interaction between the expert and the knowledge engineer/program to elicit the expert knowledge in some systematic way. 2. The knowledge thus obtained is usually stored in some form of human friendly intermediate representation. 3. The intermediate representation of the knowledge is then compiled into an executable form (e.g. production rules) that the inference engine can process. In practice, many iterations through these three stages are usually required! w9-6 Knowledge Elicitation
The knowledge elicitation process itself usually consists of several stages: 1. Find as much as possible about the problem and domain from books, manuals, etc. In particular, become familiar with any specialist terminology and jargon. 2. Try to characterise the types of reasoning and problem solving tasks that the system will be required to perform. 3. Find an expert (or set of experts) that is willing to collaborate on the project. Sometimes experts are frightened of being replaced by a computer system! 4. Interview the expert (usually many times during the course of building the system). Find out how they solve the problems your system will be expected to solve. Have them check and refine your intermediate knowledge representation. This is a time intensive process, and automated knowledge elicitation and machine learning techniques are increasingly common modern alternatives. w9-7 Stages of Knowledge Acquisition
The iterative nature of the knowledge acquisition process can be represented in the following diagram (from Jackson, Section 10.1):
Reformulations Redesigns Requirements Refinements Structure Concepts

Identify Problem Characteristics

Find concepts to represent knowledge

Design a structure to organize knowledge

Formulate rules to embody knowledge

Validate rules that organise knowledge
TESTING

IDENTIFICATION

FORMALISATION IMPLEMENTATION

CONCEPTUALISATION

Note: Virtually every book/paper/lecturer will represent this in a slightly different way! w9-8 Rules

Levels of Knowledge Analysis
Knowledge identification: Use in depth interviews in which the knowledge engineer encourages the expert to talk about how they do what they do. The knowledge engineer should understand the domain well enough to know which objects and facts need talking about. Knowledge conceptualization: Find the primitive concepts and conceptual relations of the problem domain. Epistemological analysis: Uncover the structural properties of the conceptual

knowledge, such as taxonomic relations (classifications). Logical analysis: Decide how to perform reasoning in the problem domain. This kind of knowledge can be particularly hard to acquire. Implementational analysis: Work out systematic procedures for implementing and testing the system. w9-9 Capturing Tacit/Implicit Knowledge
One problem that knowledge engineers often encounter is that the human experts use tacit/implicit knowledge (e.g. procedural knowledge) that is difficult to capture. There are several useful techniques for acquiring this knowledge: 1. Protocol analysis: Tape-record the expert thinking aloud while performing their role and later analyse this. Break down the their protocol/account into the smallest atomic units of thought, and let these become operators. 2. Participant observation: The knowledge engineer acquires tacit knowledge through practical domain experience with the expert. 3. Machine induction: This is useful when the experts are able to supply examples of the results of their decision making, even if they are unable to articulate the underlying knowledge or reasoning process. Which is/are best to use will generally depend on the problem domain and the expert. w9-10 Representing the Knowledge
We have already looked at various types of knowledge representation. In general, the knowledge acquired from our expert will be formulated in two ways: 1. Intermediate representation – a structured knowledge representation that the knowledge engineer and expert can both work with efficiently. 2. Production system – a formulation that the expert system’s inference engine can process efficiently. It is important to distinguish between: 1. Domain knowledge – the expert’s knowledge which might be expressed in the form of rules, general/default values, and so on. 2. Case knowledge – specific facts/knowledge about particular cases, including any derived knowledge about the particular cases. The system will have the domain knowledge built in, and will have to integrate this with the different case knowledge that will become available each time the system is used. w9-11 The Inference Engine
We have already looked at production systems, and how they can be used to generate new information and solve problems. Recall the steps in the basic Recognize Act Cycle: 1. Match the premise patterns of the rules against elements in the working memory. Generally the rules will be domain knowledge built into the system, and the working memory will contain the case based facts entered into the system, plus any new facts that have been derived from them. 2. If there is more than one rule that can be applied, use a conflict resolution strategy to choose one to apply. Stop if no further rules are applicable. 3. Activate the chosen rule, which generally means adding/deleting an item to/from working memory. Stop if a terminating condition is reached, or return to step 1. Early production systems spent over 90% of their time doing pattern matching, but there is now a solution to this efficiency problem: w9-12 The Rete-Algorithm
The naïve approach to the recognize act cycle tries to match all E elements in working memory against all P premises in all R rules, so it is necessary to check all E ×P×R possible matches in each cycle. However, the rules will generally have parts of their conditions in common (structural similarity), and the application of any one rule will generally only slightly change the working memory (temporal redundancy). These facts are used by the Rete Algorithm to improve efficiency (‘rete’ is Latin for ‘net’). The condition parts of the rules are structured into a network. For the first cycle, the match algorithm generates the initial conflict set by processing the network for all the initial facts. Thereafter, only the changed elements in working memory need to be fed through the network to determine the changes to the conflict set. For an explicit example see Russell & Norvig (1995) Section 10.5: w9-13 The User Interface
The Expert System user interface usually comprises of two basic components: 1. The Interviewer Component This controls the dialog with the user and/or allows any measured data to be read into the system. For example, it might ask the user a series of questions, or it might read a file containing a series of test results. 2. The Explanation Component This gives the system’s solution, and also makes the system’s operation transparent by providing the user with information about its reasoning process. For example, it might output the conclusion, and also the sequence of rules that was used to come to that conclusion. It might instead explain why it could not reach a conclusion. So that is how we go about building expert systems. In the next two weeks we shall see how they can handle uncertainty and be improved by incorporating machine learning. w9-14 Overview and Reading
1. We began by considering what exactly Expert Systems are, their general architectures, and some of the typical tasks that they can deal with. 2. We then looked in turn at each of the principal Expert System components (the knowledge acquisition system, the knowledge base, the inference engine, and the user interface) and studied the role of the knowledge engineer in the knowledge elicitation process and in building the expert system. Reading 1. 2. 3. 4. 5. Jackson: Chapters 1, 10 Negnevitsky: Section 1.2.4, Chapter 2 Rich & Knight: Chapter 20 Russell & Norvig: Sections 8.4, 16.7 Nilsson: Chapter 17 w9-15

Similar Documents

Premium Essay

Research

...The Research Process Writers usually treat the research task as a sequential process involving several clearly defined steps. No one claims that research requires completion of each step before going to the next. Recycling, circumventing, and skipping occur. Some steps are begun out of sequence, some are carried out simultaneously, and some may be omitted. Despite these variations, the idea of a sequence is useful for developing a project and for keeping the project orderly as it unfolds. Exhibit 3–1 models the sequence of the research process. We refer to it often as we discuss each step in subsequent chapters. Our discussion of the questions that guide project planning and data gathering is incorporated into the model (see the elements within the pyramid in Exhibit 3–1 and compare them with Exhibit 3–2). Exhibit 3–1 also organizes this chapter and introduces the remainder of the book. The research process begins much as the vignette suggests. A management dilemma triggers the need for a decision. For MindWriter, a growing number of complaints about postpurchase service started the process. In other situations, a controversy arises, a major commitment of resources is called for, or conditions in the environment signal the need for a decision. For MindWriter, the critical event could have been the introduction by a competitor of new technology that would revolutionize the processing speed of laptops. Such events cause managers to reconsider their purposes or...

Words: 376 - Pages: 2

Premium Essay

Research

...requirements of talking on the phone.  These predictions were derived from basic theories on limited attention capacities. 2. Microsoft Company has basic research sites in Redmond, Washington, Tokoyo, Japan etc.at these research sites work on fundamental problems that underlie the design of future products. For example a group at Redmond is working natural language recognition soft wares, while another works on artificial intelligence. These research centres don’t produce new products rather they produce the technology that is used to enhance existing products or help new products. The product are produced by dedicates product groups. Customization of the products to match the needs of local markets is sometimes carried out at local subsidiaries. Thus, the Chinese subsidiary in Singapore will do basic customizations of programs such as MS office adding Chinese characters and customizing the interface. APPLIED RESEARCH * INTERNATIONAL TELECOMMUNICATION AND INFORMATION TECHNOLOGY SERVICE COMPANY Offering customers products and services for ‘connected life and work’  Project: 1. Research focused on the organisation’s tendency to appoint ‘safe’ senior executives, rather than those who were able to drive change through the business, and enable a culture of calculated business risk and growth.  This research led to a programme that created different and improved relationships with executive search agencies, established a positive shift in the interaction between the...

Words: 282 - Pages: 2

Premium Essay

Research

...Myresearch About 30 million other animals. Animal experimentation by scientists can be cruel and unjust, but at the same time it can provide long term benefits for humanity. Animals used in research and experiments have been going on for 2,000 years and keep is going strong. It is a widely debated about topic all over the world. Some say it is inhuman while others say it's for the good of human kind. There are many different reasons why people perform experiments and why others total disagree with it. Each year 20 million animals are produce and breed for the only purpose but to be tested on. Fifty-three thousands of animals are used each year in medical and veterinary schools. The rest is used in basic research. The demand for animals in the United States is 50 million mice, 20 million rats, and aThis includes 200,000 cats and 450,000 dogs. The world uses about 200-250 million animals per year. The problem with working with animals is that they cannot communicate their feelings and reactions. Other people say that they can communicate and react to humans just a well as one person to another. Some of the animals the research's use are not domesticated which makes them extremely hard to control and handle. The experiments that go on behind closed doors are some of the most horrific things a human could think of too torture somebody or something. Animals in labs are literally used as models and are poked at and cut open like nothing is happening. When drug are tested on animals...

Words: 355 - Pages: 2

Premium Essay

Research

...Research Methodology & Fundamentals of MR. 100 Marks Course Content 1. Relevance & Scope of Research in Management. 2. Steps Involved in the Research Process 3. Identification of Research Problem. 4. Defining MR problems 5. Research Design 6. Data – Collection Methodology, Primary Data – Collection Methods / Measurement Techniques – Characteristics of Measurement Techniques – Reliability, Validity etc. – Secondary Data Collection Methods – Library Research, References – Bibliography, Abstracts, etc. 7. Primary and Secondary data sources and data collection instruments including in-depth interviews, projective techniques and focus groups 8. Data management plan – Sampling & measurement 9. Data analysis – Tabulation, SPSS applications data base, testing for association 10. Analysis Techniques – Qualitative & Quantitative Analysis Techniques – Techniques of Testing Hypothesis – Chi-square, T-test, Correlation & Regression Analysis, Analysis of Variance, etc. – Making Choice of an Appropriate Analysis Technique. 11. Research Report Writing. 12. .Computer Aided Research Methodology – use of SPSS packages Reference Text 1. Business Research Methods – Cooper Schindler 2. Research Methodology Methods & Techniques – C.R.Kothari 3. D. K. Bhattacharya: Research Methodology (Excel) 4. P. C. Tripathy: A text book of Research Methodology in...

Words: 5115 - Pages: 21

Premium Essay

Research

...Research Research is a systematic inquiry to describe, explain, predict and control the observed phenomenon. Research involves inductive and deductive methods (Babbie, 1998). Inductive methods analyze the observed phenomenon and identify the general principles, structures, or processes underlying the phenomenon observed; deductive methods verify the hypothesized principles through observations. The purposes are different: one is to develop explanations, and the other is to test the validity of the explanations. One thing that we have to pay attention to research is that the heart of the research is not on statistics, but the thinking behind the research. How we really want to find out, how we build arguments about ideas and concepts, and what evidence that we can support to persuade people to accept our arguments. Gall, Borg and Gall (1996) proposed four types of knowledge that research contributed to education as follows: 1. Description: Results of research can describe natural or social phenomenon, such as its form, structure, activity, change over time, relationship to other phenomena. The descriptive function of research relies on instrumentation for measurement and observations. The descriptive research results in our understanding of what happened. It sometimes produces statistical information about aspects of education. 2. Prediction: Prediction research is intended to predict a phenomenon that will occur at time Y from information at an earlier time X. In educational...

Words: 1179 - Pages: 5

Premium Essay

Research

...STEP 1etasblish the need for research We have to consider if it is a real need for doing a research? Research takes time and costs money. If the information is already available, decisions must be made now, we cant afford research and costs outweigh the value of the research, then the research is not needed. Step 2 define the problem or topic State your topic as a question. This is the most important step. Identify the main concepts or keywords in your question. Problem maybe either specific or general. Step 3 establish research objective Research objectives, when achieved, provide the Information necessary to solve the problem identified in Step 2. Research objectives state what the researchers must do. Crystallize the research problems and translate them into research objective. At this point, we will pin down the research question. Step 4 determine research design The research design is a plan or framework for conducting the study and collecting data. It is defined as the specific methods and procedures you use to acquire the information you need. based on the research objectives, we will determine the most appropriate research design: qualitative and/ or quantitative. • Exploratory Research: collecting information in an unstructured and informal manner. • Descriptive Research refers to a set of methods and procedures describing marketing variables. • Causal Research (experiments): allows isolation of causes and...

Words: 1099 - Pages: 5

Premium Essay

Research

...Research Article Research is important to every business because of the information it provides. There is a basic process to researching information and that process begins by deciding what information needs to be researched. The next step is to develop a hypothesis, which describes what the research paper is about and what the researcher’s opinion is regarding the topic. The research article chosen for this paper is titled, “The Anchor Contraction Effect in International Marketing Research.” The hypothesis for this paper is, “This raises the issue of whether providing responses on rating scales in a person’s native versus second language exerts a systematic influence on the responses obtained.” Simply explained, the hypothesis of this paper is to determine whether research questions should be in a person’s native language rather than expecting them to respond to questions in a language in which they might not be fluent. The hypothesis of this paper was accepted based on the research data gathered by the research team. This hypothesis was supported by nine studies using a variety of research methods. The research methods provided data that demonstrated the level of inaccuracy based on questions being asked in a language that was not the respondent’s native language. The research data provided insight into the probability of more accurate results when the respondent was asked questions in a manner that related well with their culture. There are several implications...

Words: 322 - Pages: 2

Premium Essay

Research

...ACE8001: What do we mean by Research? & Can we hope to do genuine Social Science Research (David Harvey)  What do we mean by research? What might characterise good research practice? There is no point in us trying to re-invent the wheel - other and probably more capable people than us have wrestled with this problem before us, and it makes good sense and is good practice to learn what they have discovered.  In other words - we need to explore more reliable and effective methods and systems for the pursuit of research than we have been doing so far. What is research? Dictionary Definitions of Research: * "The act of searching closely or carefully for or after a specified thing or person" * "An investigation directed to discovery of some fact by careful study of a subject" * "A course of scientific enquiry" (where scientific = "producing demonstrative knowledge") Howard and Sharp (HS) define research as:  "seeking through methodical processes to add to bodies of knowledge by the discovery or elucidation of non-trivial facts, insights and improved understanding of situations, processes and mechanisms".  [Howard, K. and Sharp, J.A. The Management of a student research project, Gower, 1983 - a useful and practical “how to do it” guide] Two other, more recent guides are: Denscombe, Martyn, 2002, Ground rules for good research: a 10 point guide for social research,  Open University Press. Robinson Library Shelf Mark: 300.72 DEN, Level 3 (several copies)...

Words: 4067 - Pages: 17

Free Essay

Research

...solve analytic models or whatever, but they often fail to demonstrate that they have thoroughly thought about their papers—in other words, when you push them about the implicit and explicit assumptions and implications of their research models, it appears that they haven’t really given these matters much thought at all.[1] Too often they fall back on saying that they are doing what they are doing because that is the way it is done in the prior literature, which is more of an excuse than a answer. (Of course, once a researcher reaches a certain age, they all feel that youngsters aren’t as good as they were in the good old days!) Therefore, in this class we shall go beyond simply studying research in managerial accounting. For many of you, this is your first introduction to accounting research and to PhD level class. Hence, in these classes we shall also learn how to solve business problems systematically and to understand what it means to have thoroughly “thought through” a paper. We begin not with academic research, but with some real world cases, because we should never forget that ours is an applied research field: accounting research is a means towards the end of understanding business and is not an end in itself, in the way pure science research is. Developing a systematic procedure for solving a real world business problem is the starting point for developing a...

Words: 2437 - Pages: 10

Free Essay

Research

...manger know about research when the job entails managing people, products, events, environments, and the like? Answer: Research simply means a search for facts – answers to questions and solutions to problems. It is a purposive investigation. It is an organized inquiry. It seeks to find explanations to unexplained phenomenon to clarify the doubtful facts and to correct the misconceived facts. Research is the organized and systematic inquiry or investigation which provides information for solving a problem or finding answers to a complex issue. Research in business: Often, organization members want to know everything about their products, services, programs, etc. Your research plans depend on what information you need to collect in order to make major decisions about a product, service, program, etc. Research provides the needed information that guides managers to make informed decisions to successfully deal with problems. The more focused you are about your resources, products, events and environments what you want to gain by your research, the more effective and efficient you can be in your research, the shorter the time it will take you and ultimately the less it will cost you. Manager’s role in research programs of a company: Managing people is only a fraction of a manager's responsibility - they have to manage the operations of the department, and often have responsibilities towards the profitability of the organization. Knowledge of research can be very helpful...

Words: 4738 - Pages: 19

Free Essay

Research

...Contents TITLE 2 INTRODUCTION 3 BACKGROUND OF THE STUDY 3 AIM 4 OBJECTIVES 4 RESEARCH QUESTIONS 4 LITERATURE REVIEW 5 METHODOLOGY AND DATACOLLECTION 5 POPULATION AND SAMPLING 6 DATA ANALYSIS METHODS 6 PARTICIPANTS IN THE STUDY 7 STUDY PERIOD (GANTT CHART) 8 STUDY RESOURCES 9 REFERENCES 9 BIBLIOGRAPHY 9 APPENDICES: 10 * The Impact of Motivation through Incentives for a better Performance - Adaaran Select Meedhupparu Ahmed Anwar Athifa Ibrahim (Academic Supervisor) Applied Research Project to the Faculty of Hospitality and Tourism Studies The Maldives National University * * Introduction As it is clear, staff motivation is important in all the sectors especially in the tourism sector where we require highly skilled employees to get the best of their output to reach the organizational goals. Therefore, organizations spend a lot on their staff motivation in terms of different incentive approaches, such as financial benefits, training and development, appreciations, rewards and promotions. As mentioned in the title, the outline of the findings will be focused on the motivation of the staffs on improving their performances by the different incentive packages that they get at the resort. This study will be executed at Adaaran Meedhupparu by giving questionnaire to the staff working in different departments to fill up and return to the scholar to examine the current situation of staff satisfaction on motivation to do...

Words: 2768 - Pages: 12

Premium Essay

Research

...goal of the research process is to produce new knowledge or deepen understanding of a topic or issue. This process takes three main forms (although, as previously discussed, the boundaries between them may be obscure): * Exploratory research, which helps identify and define a problem or question. * Constructive research, which tests theories and proposes solutions to a problem or question. * Empirical research, which tests the feasibility of a solution using empirical evidence. There are two ways to conduct research: Primary research Using primary sources, i.e., original documents and data. Secondary research Using secondary sources, i.e., a synthesis of, interpretation of, or discussions about primary sources. There are two major research designs: qualitative research and quantitative research. Researchers choose one of these two tracks according to the nature of the research problem they want to observe and the research questions they aim to answer: Qualitative research Understanding of human behavior and the reasons that govern such behavior. Asking a broad question and collecting word-type data that is analyzed searching for themes. This type of research looks to describe a population without attempting to quantifiably measure variables or look to potential relationships between variables. It is viewed as more restrictive in testing hypotheses because it can be expensive and time consuming, and typically limited to a single set of research subjects. Qualitative...

Words: 498 - Pages: 2

Premium Essay

Research

...How To Formulate Research Problem? Posted in Research Methodology | Email This Post Email This Post Formulating the research problem and hypothesis acts as a major step or phase in the research methodology. In research, the foremost step that comes into play is that of defining the research problem and it becomes almost a necessity to have the basic knowledge and understanding of most of its elements as this would help a lot in making a correct decision. The research problem can be said to be complete only if it is able to specify about the unit of analysis, time and space boundaries, features that are under study, specific environmental conditions that are present in addition to prerequisite of the research process. Research Process Research process is very commonly referred to as the planning process. One important point to be kept in mind here is to understand that the main aim of the research process is that of improving the knowledge of the human beings. The research process consists of the following stages – 1. The Primary stage :– This stage includes – a. Observation – The first step in the research process is that of the observation, research work starts with the observation which can be either unaided visual observation or guided and controlled observation.It can be said that an observation leads to research, the results obtained from research result in final observations which can play a crucial part in carrying out further research. Deliberate and guided...

Words: 1487 - Pages: 6

Free Essay

Research

...Volume 3, number 2 What is critical appraisal? Sponsored by an educational grant from AVENTIS Pharma Alison Hill BSC FFPHM FRCP Director, and Claire Spittlehouse BSc Business Manager, Critical Appraisal Skills Programme, Institute of Health Sciences, Oxford q Critical appraisal is the process of systematically examining research evidence to assess its validity, results and relevance before using it to inform a decision. q Critical appraisal is an essential part of evidence-based clinical practice that includes the process of systematically finding, appraising and acting on evidence of effectiveness. q Critical appraisal allows us to make sense of research evidence and thus begins to close the gap between research and practice. q Randomised controlled trials can minimise bias and use the most appropriate design for studying the effectiveness of a specific intervention or treatment. q Systematic reviews are particularly useful because they usually contain an explicit statement of the objectives, materials and methods, and should be conducted according to explicit and reproducible methodology. q Randomised controlled trials and systematic reviews are not automatically of good quality and should be appraised critically. www.evidence-based-medicine.co.uk Prescribing information is on page 8 1 What is critical appraisal What is critical appraisal? Critical appraisal is one step in the process of evidence-based clinical practice. Evidencebased clinical practice...

Words: 4659 - Pages: 19

Premium Essay

Research

...activities for the quarter 4 which include weekly class discussion, class participation, midterm and final exam * Learned about what Research is and what Research is not. * Eight characteristics of research. * Sub problem – that is a question or problem that must be address before the main problem is resolved. * Hypothesis- that is a reasonable quests that needs to be proving. * I learned about assumption –that is a statement that is presume to be fact. * Learned about theory * Learned about methodology- that is a process a researchers use to collect data and information is research work. * Learned about internet – A researchers use internet to access information online. * Learned about two types of research report which is Juried or refereed – a reviewed report * Nonjuried or nonrefereed – none reviewed report. E.g. Journal report. * Learned about checklist evaluating research- that a report juried that is judge. * Learned that a research that is not screen or viewed by expert is not valid * Guidelines in reviewing research by going to library to sort for information needed for case study. * I learned as a researcher, you must read more than articles. * I learned about research paper / APA Style – that first thing is to choose the research topic. * Learned about what research paper entails, like cover page, table of content, abstract, introduction, summary, conclusion and references. * I learned about APA...

Words: 1117 - Pages: 5