Free Essay

Research

In:

Submitted By andrew120894
Words 4715
Pages 19
1

Design of Logic Circuits

1.1

Basic Revision of Logic Gates

In the following chapter, we assume a two input logic gate with inputs A and B.

1.1.1

Simple Gates

i.

AND Gate

The symbol and truth table for an AND gate is shown below:

A

B

A.B

0
0
1
1

0
1
0
1

0
0
0
1

Summary:

If inputs A AND B are high then the output is high

Abbreviations:

often a ‘.’ (dot) is used to signify the AND operator when writing Boolean equations. ii.

OR Gate (Sometimes referred to as an Inclusive OR)

The symbol and truth table for an OR gate is shown below:

A

B

A+B

0
0
1
1

0
1
0
1

0
1
1
1

Summary:

If inputs A OR B are high (or both) then the output is high

Abbreviations:

often a ‘+’ is used to signify the OR operator when writing Boolean equations. iii.

NOT Gate

The symbol and truth table for an NOT gate is shown below:

A
0
0

1

A
0
1

2
Summary:

Output is NOT what the input is. They are also called 'inverters'.

Abbreviations:

Many. Sometimes a line above the thing that is being notted, sometimes a dash ‘'’ and sometimes an ‘!’ exclamation mark

1.1.2

Complex Gates

i.

NAND Gate

Made by combining an AND gate and a NOT gate. The equivalent circuit is:

The symbol and truth table for an NAND gate is shown below:

A

A .B

0
0
1
1

0
1
0
1

1
1
1
0

A

B

A+ B

0
0
1
1

ii.

B

0
1
0
1

1
0
0
0

NOR Gate

Made by combining an OR gate and a NOT gate. The equivalent circuit is:

The symbol and truth table for an NAND gate is shown below:

iii.

XOR Gate (Exclusive OR)

This gate gives a high output when A OR B are high, but not both. The equivalent circuit is:

Digital Electronics – EEE3017W (2009)

3
The symbol for a XOR gate is:

A

A⊕ B

0
0
1
1
Summary:
Abbreviations:

B
0
1
0
1

0
1
1
0

A ⊕ B = A .B + A .B
XOR gates are represented with a ⊕ symbol.

1.2

Boolean Algebra

1.2.1

Basic Boolean Equations

When designing circuits it is useful to be able to simplify logic equations. By simplifying the equation of a circuit we can reduce the number of gates that will be needed to implement the circuit when it is constructed. This has cost and performance benefits.
The following equations are used to reduce logic equations:
OR:

AND:

A + 0 = A A.1 = A
A+1=1
A.0 = 0
A + A = A A.A = A
A + A = 1 A .A = 0

NOT:

A= A

ASSOCIATIVE

DISTRIBUTIVE

COMMUNTATIVE

A+(B+C)=(A+B)+C A.(B+C)=A.B+A.C
A+B=B+A
A.(B.C)=(A.B).C
A+B.C=(A+B).(A+C) A.B=B.A

Remember that the optimal solution is not always the solution with the fewest gates. In terms of cost the optimal solution is generally that solution which has the fewest logic chips, assuming that the cost of logic chips does not differ greatly for different logic gates. (A chip which contains four
AND gates costs roughly the same as a chip with four OR gates.) This has not always been the case.

1.2.2

De Morgan’s Rules

These can be a bit tricky to remember. An aid to memory is
“If you break the line you change the sign”.

A + B = A .B
A .B = A + B
The symbolic representation of de Morgan’s Rules is shown below:

University of Cape Town

4

1.2.3

Karnaugh Map Reduction

This method is a graphical aid to reducing logic equations. Its primary limitation is that is not effective for more than four variables.
The map takes the form of a table laid out as shown below. The order of the possible variable states is important. A Grey code must be used. A Grey code is a code in which at most one bit changes in successive numbers.

CD

00

01

11

10

AB

00
01
11
10
All the combinations which result in'1' as the result are marked in the table and grouped together.
See the class example for further information on grouping and reduction.

i.

Examples

Reduce the following equation using both Boolean algebra and Karnaugh Maps to a circuit with the fewest number of gates.

Y = A .B .C + A .B .C + B .C + A .B
Using Boolean algebra:
Y = A .B .C + A .B .C + B .C + A .B
Y = A .B .C + A .B .C + A .B .C + A .B .C + A .B .C + A .B .C (Expanding all terms by multiplyin g by
1. i.e. (A + A ))
Y = A .B .C + B .( A .C + A .C + A .C + A .C + A .C )

(( )
Y = A .B .C + B (A + A)

(

Y = A .B .C + B . A . C + C + A . C + C + C

))

(Take out the common factor)
(Group terms and take out the common factors)
(Simplify)

Y = A .B .C + B

Digital Electronics – EEE3017W (2009)

5
Using Karnaugh Maps:
Y will equal 1 whenever any one of its terms equals 1. Therefore find the values of A, B and C that make any term equal 1.

AB

00

01

11

10

C

0

1

1

1

1
1

1

Grouping these terms yields a simpler result.

Y = A .C + B
Assume that the following logic chips exist and cost the same:
CD4081 quad two input AND gate
CD4011 quad two input NAND gate
CD4071 quad two input OR gate
CD4001 quad two input NOR gate
CD4069 hex inverter
Reduce the above equation to the lowest cost solution.
Our solution above gives would need 1 OR gate, 1 AND gate and 1 inverter. This amounts to 3 chips that would be needed.
We could replace the AND gate with a NAND gate followed by an inverter. We can make an inverter from a NAND gate by tying one input permanently high. Thus we can say:
Y = A .C + B

(

)( )

= A .C .1 + B .1

This circuit would need one quad NAND chip and one quad OR chip.
If you worked for a large company producing 20000 gadgets per month then this saving alone would justify your salary...
Exercise:
1. Draw circuit diagrams of the above solutions and check that you are satisfied with their correctness. University of Cape Town

6

1.3

Combinational and Sequential Circuits

There are two basic classes of digital circuits. These are combinational circuits and sequential circuits. They differ fundamentally.

1.3.1

Combinational Circuits

These circuits have no memory. At any point the output of the circuit depends purely on the inputs to the circuit. If you know the inputs only then you will be able to calculate the output. If you want to reverse engineer a combinational circuit then all that you need to do is to cycle through all possible inputs and observe the output. From the truth table that you draw up it is theoretically easy to design an equivalent circuit. (Although it might be tedious)

1.3.2

Sequential Circuits

These circuits have memory. At any point the output of the circuit is a function of the inputs and the
'state' of the circuit. This means that you can't simply apply some input and predict the output, rather you must know either the state of the circuit or you need information about all the previous inputs to the system. Expressed in another way, the output of a combinational circuit is a function of its inputs and its history. It is clear from the above that simple logic design tools (Karnaugh etc.) are of limited use in designing sequential circuits. We will examine other sequential logic design techniques later.

1.3.3

Popular Ready-made Digital Circuits

i.

Multiplexers

These are basically selector devices. They have k inputs and one output. They have log2k selection inputs. This is shown for the case of a multiplexer with 4 inputs (k = 4). The action of the multiplexer can be summarised as follows:

Sel1 Sel2

Action

0

0

Output = In0

0

1

Output = In1

1

0

Output = In2

1

1

Output = In3

Exercises:
1. Look at the datasheets for the following chips: 74HC157;74HC153;74HC356
2. Are multiplexers combinational or sequential? Why?

Digital Electronics – EEE3017W (2009)

7

ii.

Decoders

These are chips which decode a binary number into a '1 of n' output. Typically a decoder has n inputs and 2n outputs. One (only one) of the outputs will go high depending on the code present on the input lines. The truth table for a 3 to 8 line decoder is shown here:

In2

In1

In0

0
0
0
0
1
1
1
1

0
0
1
1
0
0
1
1

Out7 Out6 Out5 Out4 Out3 Out2 Out1 Out0

0
1
0
1
0
1
0
1

0
0
0
0
0
0
0
1

0
0
0
0
0
0
1
0

0
0
0
0
0
1
0
0

0
0
0
0
1
0
0
0

0
0
0
1
0
0
0
0

0
0
1
0
0
0
0
0

0
1
0
0
0
0
0
0

1
0
0
0
0
0
0
0

Decoders are particularly useful to activate a device based on a code.
Exercises:
1. Look at the datasheets for the following chips: 74HC137; 74HC42; 74HC139
2. Are decoders combinational or sequential? Why?

iii.

Adders

This is a circuit which adds two bits together. Basic Boolean arithmetic gives us:
A0
+B 0
SUM 0

0
1
1

1
0
1

1
1
0 and 1 is carried to the next significant bit

If you examine the answer bit you will see that it is simply the XOR of the input bits. If you examine the carry bit you will see that it is simply the AND of the input bits. The circuit that implements this is as follows:

If you look carefully at this circuit you will see that it has one little problem. If you are implementing a proper addition then you will typically have two inputs, as well as a carry input, and you will have two outputs, sum and carry. The above circuit does not have any carry input. For this reason it is called a half adder.
A full adder is a circuit which has three inputs, one of which is a carry input, and it has two outputs, sum and carry. A full adder may be made by connecting two half adders as follows:
University of Cape Town

8

Intuitively this makes sense; the carry in bit is added to the result of the addition of the two input bits. In order to make a multi-bit wide adder a series of full adders can be cascaded. The carry outputs are fed into the3 carry inputs of the next most significant adder. Cascading gates can lead to poor circuit performance (gates are not infinitely fast) and so other schemes are used in more sophisticated adders. These schemes generally rely on the fact that the addition of two numbers is a combinational operation and can be modeled with a truth table, Boolean equations or a Karnaugh map. Exercises:
1. Look at the datasheet for 74HC283
2. Draw a four bit wide adder based on full-adders
3. Design a 2 bit wide adder using a Karnaugh map. Your circuit have a 2 bit plus carry output. You will need to use a few Karnaugh maps.

iv.

RS-Flip Flops

This device can be made by cross-coupling two gates, either NAND or NOR, like this:

This device has memory. If you pull S low then Q will go high and stay high until R is pulled low.
This circuit forms a basis for other flip-flop types.
Exercise:
1. What is the difference between the NOR and the NAND implementation?

Digital Electronics – EEE3017W (2009)

9

v.

D-type Flip Flops

The D-type flip flop has got (at least) one input called D, one input called clock and one output called Q The symbol for a D flip flop is shown here:

On the edge of the clock pulse (in this case the positive edge), the input D, is transferred to the output Q and held there. Typically a Q output is also available. In addition there are set and reset inputs which can be used to place the flip-flop into a known state.
Exercise:
1. Look up the datasheet for CD4013 and 74HC74.

vi.

JK Flip Flops

If both 'set' and 'reset' inputs are asserted on a D flip flop then the outputs may go into some weird states. If both inputs are asserted on the CD4013 D type flip-flop (CD4013 is a common device) then Q = Q = 1.
A JK flip flop operates in a similar manner to a D type, except that it has two additional inputs, J and K. If the J input is asserted then the flip-flop performs a 'set' operation. If the K input is asserted then the flip-flop performs a 'reset' operation. If both J and K are asserted then the output simply toggles state. A JK flip flop is shown here:

Many JK flip flops also have conventional set and reset inputs.

vii.

Counters

If you take some D flip flops and connect them as follows you get a basic counter:

University of Cape Town

10
This counter counts through the 8 states that its outputs can have. Each flip flop is configured as a toggle element. This is known as a “divide by two” stage. These stages are cascaded to form a counter. Other variations are also common. up/down counters are available and presettable counters are also available. Some counters (e.g. CD4017) have got decoded outputs, internally containing a counter and a decoder.

The counter shown above is called a “ripple counter”. The reason for this is that the second flip flop can only begin toggling when the first counter has completed its state change. This means that the outputs don't all change at the same instant. This can cause problems in some circuits and for this reason ripple counters are no longer popular. We will cover non-ripple counter design later. A zoomed-in view of the transition from state “011” to state “100” is shown here.
Exercises:
1. By writing out a table prove that a count sequence can be made up by cascading toggle stages. 2. Look up the datasheet on 74HC4040.

viii.

Shift Registers

This circuit implements a device called a “shift register”. Data is put into the load input and for every clock pulse it moves across the Q outputs 1 bit to the right.

Shift Registers are useful for implementing serial to parallel conversion and parallel to serial conversion. They are used extensively in microprocessors for a variety of operations.

Digital Electronics – EEE3017W (2009)

11

1.3.4

Design of Sequential Circuits

i.

Designing Using D-type Flip Flops

The basic idea behind this type of design is to use D-type flip flops to hold the system's state and use combinational logic to make the system move from state to state. Schematically we have the following basic layout:

In order to design the combinational circuit to calculate the next state we use a present state/next state diagram. Suppose we have a system with four states and one input. Our diagram will typically look like this:

Input

Present 1

Present 0

0
0
0
0
1
1
1
1

0
0
1
1
0
0
1
1

Next 1 Next 0

0
1
0
1
0
1
0
1

The next state columns will show the state that is to be entered given the current state and input condition. Once this table has been drawn up standard logic reduction tools are used to calculate the combinational circuitry.

University of Cape Town

12

ii.

Design Example

1. Design a counter that counts in the sequence 0-1-2-0-1-2 etc. The counter must not be a ripple type. Because the counter cannot be a ripple type forget about using a ripple counter and making it reset itself when it reaches 2.
We need to use a present state next state diagram. If we design the circuit using two D flip flops then there will be four possible states, even though we are only interested in 3 of them. We shall use
'Don't cares' to simplify our circuitry. This counter is made simpler by the fact that there are no external inputs.
Our present state/next state diagram is as follows:

Present 1 Present 0
(Q1)
0
0
1
1

Next 1
(D1)
0
1
0
X

(Q0)
0
1
0
1

Next 0
(D0)
1
0
0
X

By inspection we can tell that D1 = Q0. Note how the don't care case has simplified this. The
Karnaugh map for D0 is like this:

Q0

0

1

Q1

0
1

1
X

If we let the don’t care condition equal 0 we find D0 to be:
D0 = (Q0 + Q1 )
The overall circuit is as follows:

Notice over here that both flip flops are clocked simultaneously, avoiding the ripple effect.

Digital Electronics – EEE3017W (2009)

13
2. Design a light-chaser system. The system has four LED's, numbered from 0 to 3. When the system is running it sequences the LED's. There is also a direction input, called DIR. When DIR is low the LED's go in the sequence 0-1-2-3. When DIR is high the LED's are sequenced in the other direction, 3-2-1-0.
There are four states in this system, one per LED. We can use two bits of information to hold the system state. The present state/next state diagram is as follows:

Input

Present State

DIR
0
0
0
0
1
1
1
1

Q1
0
0
1
1
0
0
1
1

Next State

Q0
0
1
0
1
0
1
0
1

D1
0
1
1
0
1
0
0
1

D0
1
0
1
0
1
0
1
0

Comment
LED0 counting UP
LED1 counting UP
LED2 counting UP
LED3 counting UP
LED0 counting DOWN
LED1 counting DOWN
LED2 counting DOWN
LED3 counting DOWN

By inspection D0 = Q0 . We can draw the following Karnaugh map for D1.
Q1Q0

00

01

11

10

DIR

0
1

1
1

1
1

This simplifies to:
D1 = DIR .Q 1 .Q0 + DIR .Q 1 .Q0 + DIR .Q 1 .Q0 + DIR .Q 1 .Q0
= DIR ⊕ Q1 ⊕ Q 2

So far we have not handled the output decoding at all. We have four output bits but only two bits are used to encode the state information. Because of the way that we set up the states in the first instance we only need a 2-4 decoder to perform the output decoding. Note that a 2-4 decoder is available as a single chip, which saves space and cost.

University of Cape Town

14

1.4

Algorithmic State Machine Design

Some systems are too complex to simply draw up a present state/next state table. A complex system will have more than a few states and it may have many inputs, not all of which are relevant in all possible states. This makes it essential for us to have more sophisticated design techniques.
We can represent the operation of a sequential circuit by using an Algorithmic State Machine Chart
(ASM chart). We will do this by using the following elements:

1.4.1

State Box
State Entry Path

State Code

State Name

****
*

When using the state box please note the following: • There is always one entry point and one exit point only.
• Outputs that must be asserted while in that state are marked in the middle of the box
• Each state has a binary code associated with it. You may give your states names to add clarity. • A state generally lasts for one clock cycle of the system's operation.

State Output List
State Exit Path

1.4.2

Decision Box

Single Entry Path
Condition
(Boolean Expression)

●●●●

0

Condition
FALSE Exit
Path

When using the decision box please note the following: • There is always one entry point and two exit points. • Each box examines the state of exactly one variable. • A decision is not a state. No state number is assigned to it.

1
Condition TRUE Exit Path

Digital Electronics – EEE3017W (2009)

15
When using a conditional output box the following rules apply:
• There is always one entry point and one exit point. The entry point comes from a decision box. • The conditional output box is not a state. It is simply an output that is asserted briefly during the transition from one state to another. • The outputs asserted by conditional output boxes may be of variable length. This means that they may not be used where the duration of the output's assertion is critical.

From Conditional Exit
Conditional
Output List

Exit
Path

The behaviour of the system is modeled by combining the three types of blocks to form a chart which defines how the system will work.

i.

Examples

1. Show the ASM chart for a two bit counter. The counter has no inputs other than its clock.
00
Zero

Output = 00
01

One

Output = 01
10

Two

Output = 10
11

Three

Output = 11

Notice that we do not explicitly show the clock. We assume that there is a clock signal and we assume that the system moves from state to state synchronously with the clock.
From the ASM chart we can derive the following

University of Cape Town

16

Present 1 Present 0
(Q1)
0
0
1
1

(Q0)
0
1
0
1

Next 1

Next 0

(D1)
0
1
1
0

(D0)
1
0
1
0

From this we can derive logic as before.
This was a very simple example. We could have done this easily without the help of an ASM chart.
Consider this slightly more advanced example:
2. We wish to make a timing system for an athletic event. We are only interested in the first three runners in. We have a system of transponders which gives us a signal when each of the runner arrives. We also have a stopwatch system (separate) consisting of three stopwatches, which will do the timing. All that we need to implement is a system which links the stopwatch to the transponder system. In addition we would like a display of three LED's which indicates how many runners must still come in.
In summary we could say that the transponder system has an output called “arr”. This output goes high briefly when a runner arrives. The stopwatch system has three incoming signals, stor1, stor2 and stor3, each of which triggers a time capture.
We'll start this seemingly tricky task by drawing an ASM chart.

Notice over here that we have assigned the states 00, 01, 11, 10. Sometimes a Gray code will yield better circuitry.

Digital Electronics – EEE3017W (2009)

17
Notice immediately that this chart is quite good for showing to non-technical customers. From this chart we can draw a present state/next state diagram. A very important feature of this design tool is that it has clarified the task in our minds. In this diagram we have only shown the state transitions for simplicity.

Input

Present State

Arr
0
0
0
0
1
1
1
1

Q1
0
0
1
1
0
0
1
1

Q0
0
1
0
1
0
1
0
1

Next State
D1
0
0
1
1
0
1
1
1

D0
0
1
0
1
1
1
0
0

From this table we get the Karnaugh maps:

D0
Q1Q0

00

01

11

1

10

1

Arr

0
1

1

1

00

01

D0 = Arr .Q0 + Arr .Q1

D1
Q1Q0

11

10

1

1

1

1

Arr

0
1

1

D1 = Q1 + Arr .Q0

From this we can get the circuit for the state-sequencing system:

University of Cape Town

18

The clock inputs on the flip flops are tied together and tied to a clock source (square wave) with a frequency which is sufficiently high that the circuit responds fast to inputs.
So far we have not taken the conditional outputs into account. This is quite easy:
Stor1 is asserted if state = 00 and Arr = 1 therefore
Stor 1 = Arr .Q1 .Q0
Similarly Stor2 is asserted if state = 01 and Arr = 1 therefore
Stor 2 = Arr .Q1 .Q0 and also
Stor 3 = Arr .Q1 .Q0

These can be added to our existing circuit diagram:

Now all that is required is to add in the display for the LED's. We can draw the following table which maps the system state to the system outputs for the LED's.
Digital Electronics – EEE3017W (2009)

19
Q1

Q0

LED3

LED2

LED1

0
0
1
1

0
1
1
0

1
0
0
0

1
1
0
0

1
1
1
0

From this table:

LED3 = Q1 .Q0
LED2 = Q1

(

LED1 = Q1 .Q0

)

The final circuit for our system looks like this:

This circuit can be simplified by exploiting the commonality between the LED output circuit and the Stor outputs. This is left as an exercise.

1.4.3

Designing with One Flip Flop per State

Up until this point we have assumed that it is optimal to have the minimal number of flip flops in our ASM implementation. Sometimes we will find it easier to use one flip flop per state, resulting in more flip flops and (hopefully) less combinational logic. In addition this scheme will result in an easier design process. Using this system it is possible to design all of the circuitry without even drawing a present state/next state diagram.
The basis of the technique is to replace each element of the ASM chart with a circuit. Thus we have the following replacement rules:

University of Cape Town

20
The state box is replaced with a flip flop. The entry into the state box is modeled by the D input to the flip-flop. The execution flow out of the state box is modeled by the Q output of the flip flop.
State Entry Path

****

State Exit Path
State Entry Path

*
State Exit Path
We replace decision boxes like this:
Single Entry Path

Variable

0

Condition
FALSE Exit
Path

1
Condition TRUE Exit Path

And we replace conditional output boxes with the following circuit:
Incoming Flow

Variable

Conditional Output

Outgoing Flow
Lastly we must replace the junctions in signal flow with OR gates. Please note that it is not generally acceptable to simply connect two outputs together. This is because of the possibility of
‘contention’, which occurs when one signal attempts to pull a line high while another output is asserting a low on the same line.

Digital Electronics – EEE3017W (2009)

21

Entry 1

Entry 2

Exit
Now that we have the ground rules established we can do an example. We will do the example from page 16. Refer to that example for the ASM chart.
By substitution we arrive at the following circuit:

In the above circuit only one thing is missing. That is the power-on-reset circuit. When the system is powered up it is critical that it goes into the idle state (state 00) and it is also critical that only one state is active. In practice this means that one flip-flop is set (the idle state flip-flop) and all of the other flip-flops are cleared. This is achieved by using the set and reset inputs to each flip-flop.

University of Cape Town

22

1.5

Conclusion

It takes practice to become proficient at logic design. Half the trick to being a good designer lies in being able to think about the real system that must be made and converting that to an ASM chart. In order to get skills in this area consider the following examples:
Redo the “who was first' game from the laboratory. Use both ASM design methods outlined above.

Digital Electronics – EEE3017W (2009)

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

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

...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

...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

Free Essay

Research

...Marketing Department, University of Strathclyde, Glasgow G4 0RQ, United Kingdom e-mail: 1sh@ukm.my 1,3 ABSTRACT This study examined the adequacy of using undergraduate student samples in research on online consumer attitudes by comparing the attitudes of students (n = 161) towards online retailing services with the attitudes of non-students (n = 252) towards such services. A structured questionnaire administered online was used to gather data on perceptions, satisfaction, and behavioral intentions with regard to online retailing services. The t-test results showed that, in general, students' attitude towards online retailing services is similar to that of non-students. Therefore, undergraduate students may be reasonable surrogates for consumers in research on online retailing. Keywords: internet users, electronic commerce, online consumer attitudes, online retailing services, student surrogates INTRODUCTION The usage of the internet as a communication and transaction medium in consumer markets is growing rapidly (Castells, 2000; Hart, Doherty, & EllisChadwick, 2000). In line with this expansion, consumer-based electronic commerce has become an emerging research area (e.g. Demangeot & Broderick, 2006, 2007; Teo, 2006; Tih & Ennis, 2006a, 2006b). In particular, a stream of research addressing issues related to online consumer attitudes (e.g. George, 2004; Wang, Chen, Chang, & Yang, 2007) and behaviors (see Cheung, Chan, & Limayem, 2005 for a review) has emerged. Although...

Words: 5659 - Pages: 23

Premium Essay

Research

...Importance Of Research Research is tool, which is utilized by my organizations and co-operations to have a fundamental knowledge of goods, products, and also to finding out consumer behavior. It is also a systematic investigation into the study of materials and sources inn order to establish facts and reach new conclusions. Research informed the marketers of Glidden paint because it helped them start from were the audience was which was Walmart in this case scenario. A marketer finds out what you want, and creates or finds product that fits you. Research aided the marketers of Glidden paint to come to a conclusion that not only should you hypothesize, you should also carry out experiments as well. In this case we see that the help of experiments helped them realize that Walmart’s brand name of saving money was not deterring the perceived quality of the paints. Meaning that Walmart’s cheap pricing of goods played no part in the durability of the paint. Research helped the marketers of Glidden paint realize that they could revamp the Walmart paint section, which has been ignored for years. They are confident that Glidden paint will do great numbers because they have raised awareness and created a media platform that consumers can interact with the most. Not only has research helped in satisfying consumer wants, it also gives the marketer an in-depth knowledge on the frequent changes of consumer taste. Research helped Glidden paint marketers realize...

Words: 319 - Pages: 2

Free Essay

Research

...researchResearch is the investigation into and the study of new materials in order to establish facts and reach new conclusions. It is swork undertaken on a systematis basis in order to increase the stock of knowledge. Research is a key aspect of journalism and as researchers we employ various sourdes and methods of research. Throughout this essay I will explore and examine the different sources available to journalists, the different types of interviews and I will describe the need for appropriate referencing of all source of material. Sources available. We live in an age overflowing with source materials, and these sources are easily accessible to us. The two main types of sources are primary and secondary sources. A pimary source is information that is gathered from an original source. These include; intervies, questionairres, surveys, observation, histoical documents and experiments to name but a few. A secondary source is information that has already been gathered by other people and/or organisations. A secondary source interpets and analyzes primary sources. (Locke, 2013) There are both online and offline secondary sources. Primary Surveys and questionnaires A very important aspect of research work is using surveys. Surveys are a primary source.There are two main types of surveys, a questionnarrie and an interview. Surveys and questionnaires are usually composed of one or more questions that are directed to a certain target audience. Questionnaires have advantages...

Words: 1248 - Pages: 5