Investigation By: Francisco Javier Murillo. Definitions from internet.

31
Investigation By: Francisco Javier Murillo

Transcript of Investigation By: Francisco Javier Murillo. Definitions from internet.

Page 1: Investigation By: Francisco Javier Murillo. Definitions from internet.

InvestigationBy: Francisco Javier Murillo

Page 2: Investigation By: Francisco Javier Murillo. Definitions from internet.

Define following terms: Digital logic Logic gateIntegrated Circuit Truth tableLed Breadboard Breadboard jumpers

Page 3: Investigation By: Francisco Javier Murillo. Definitions from internet.

Definitions from internet

“A mathematical system concerning the two truth values, TRUE and FALSE and the functions AND, OR, NOT. Two-valued logic is one of the cornerstones of logic and is also fundamental in the design of digital electronics and programming languages.” Source:

http://www.mondofacto.com/facts/dictionary?digital+logic

•Digital Logic:

Page 4: Investigation By: Francisco Javier Murillo. Definitions from internet.

Logic Gate:

“A logic gate is an elementary building block of a digital circuit . Most logic gates have two inputs and one output. At any given moment, every terminal is in one of the two binary conditions low (0) or high (1), represented by different voltage levels. The logic state of a terminal can, and generally does, change often, as the circuit processes data. In most logic gates, the low state is approximately zero volts (0 V), while the high state is approximately five volts positive (+5 V).”

“There are seven basic logic gates: AND, OR, XOR, NOT, NAND, NOR, and XNOR.”

Source:

http://whatis.techtarget.com/definition/0,,sid9_gci213512,00.html

Page 5: Investigation By: Francisco Javier Murillo. Definitions from internet.

“THE AND GATE IS SO NAMED BECAUSE, IF 0 IS CALLED "FALSE" AND 1 IS CALLED "TRUE," THE GATE ACTS IN THE SAME WAY AS THE LOGICAL "AND" OPERATOR. THE FOLLOWING ILLUSTRATION AND TABLE SHOW THE CIRCUIT SYMBOL AND LOGIC COMBINATIONS FOR AN AND GATE. (IN THE SYMBOL, THE INPUT TERMINALS ARE AT LEFT AND THE OUTPUT TERMINAL IS AT RIGHT.) THE OUTPUT IS "TRUE" WHEN BOTH INPUTS ARE "TRUE." OTHERWISE, THE OUTPUT IS (FALSE.)”

AND Gate

Source is the same adress of the obove slide

Page 6: Investigation By: Francisco Javier Murillo. Definitions from internet.

“THE OR GATE GETS ITS NAME FROM THE FACT THAT IT BEHAVES AFTER THE FASHION OF THE LOGICAL INCLUSIVE "OR." THE OUTPUT IS "TRUE" IF EITHER OR BOTH OF THE INPUTS ARE "TRUE." IF BOTH INPUTS ARE "FALSE," THEN THE OUTPUT IS (FALSE).”

OR Gate

Source is the same adress of the definition slide

Page 7: Investigation By: Francisco Javier Murillo. Definitions from internet.

“The XOR ( exclusive-OR ) gate acts in the same way as the logical "either/or." The output is "true" if either, but not both, of the inputs are "true." The output is "false" if both inputs are "false" or if both inputs are "true." Another way of looking at this circuit is to observe that the output is 1 if the inputs are different, but 0 if the inputs are the same.”

XOR Gate

Source is the same adress of the definition slide

Page 8: Investigation By: Francisco Javier Murillo. Definitions from internet.

“A logical inverter , sometimes called a NOT gate to differentiate it from other types of electronic inverter devices, has only one input. It reverses the logic state.”

NOT Gate

Source is the same adress of the definition slide

Page 9: Investigation By: Francisco Javier Murillo. Definitions from internet.

“The NAND gate operates as an AND gate followed by a NOT gate. It acts in the manner of the logical operation "and" followed by negation. The output is "false" if both inputs are "true." Otherwise, the output is (true).”

NAND Gate

Source is the same adress of the definition slide

Page 10: Investigation By: Francisco Javier Murillo. Definitions from internet.

“The NOR gate is a combination OR gate followed by an inverter. Its output is "true" if both inputs are "false." Otherwise, the output is (false).”

NOR GATE

Source is the same adress of the definition slide

Page 11: Investigation By: Francisco Javier Murillo. Definitions from internet.

“The XNOR (exclusive-NOR) gate is a combination XOR gate followed by an inverter. Its output is "true" if the inputs are the same, and "false" if the inputs are different.”

XNOR Gate

Source is the same adress of the definition slide

Page 12: Investigation By: Francisco Javier Murillo. Definitions from internet.

Logic GatesAnd OR

Xor Not

Nand Nor

Xnor

Page 13: Investigation By: Francisco Javier Murillo. Definitions from internet.

Also these logic gates can be

joing and this is call, i

ntegrated

circuits.

Page 14: Investigation By: Francisco Javier Murillo. Definitions from internet.

Integrated circuits definition An integrated circuit, or IC, is small chip that can function as an

amplifier, oscillator, timer, microprocessor, or even computer memory. An IC is a small wafer, usually made of silicon, that can hold anywhere from hundreds to millions of transistors, resistors, and capacitors. These extremely small electronics can perform calculations and store data using either digital or analog technology.

Digital ICs use logic gates, which work only with values of ones and zeros. A low signal sent to to a component on a digital IC will result in a value of 0, while a high signal creates a value of 1. Digital ICs are the kind you will usually find in computers, networking equipment, and most consumer electronics.

Page 15: Investigation By: Francisco Javier Murillo. Definitions from internet.

Analog, or linear ICs work with continuous values. This means a component on a linear IC can take a value of any kind and output another value. The term "linear" is used since the output value is a linear function of the input. For example, a component on a linear IC may multiple an incoming value by a factor of 2.5 and output the result. Linear ICs are typically used in audio and radio frequency amplification.

Source:

http://www.techterms.com/definition/integratedcircuit

Page 16: Investigation By: Francisco Javier Murillo. Definitions from internet.

Truth Table A truth table is a breakdown of a logic function by listing all

possible values the function can attain. Such a table typically contains several rows and columns, with the top row representing the logical variables and combinations, in increasing complexity leading up to the final function.

In a logic function, there are three basic operations: NOR, NAND, XOR,XNOR, NOT, OR and AND. The values of the functions are normally assigned as logic 0 = false and logic 1 = true.

Source:

http://whatis.techtarget.com/definition/0,,sid9_gci776118,00.html

Page 17: Investigation By: Francisco Javier Murillo. Definitions from internet.

Here is an example of how the AND table function:

Input 1 Input 2 Output

0 0 0

0 1 0

1 0 0

1 1 1 

Page 18: Investigation By: Francisco Javier Murillo. Definitions from internet.

OR example:

Input 1 Input 2 Output

0 0 0

0 1 1

1 0 1

1 1 1

Page 19: Investigation By: Francisco Javier Murillo. Definitions from internet.

Xor example:

Input 1 Input 2 Output

0 0 0

0 1 1

1 0 1

1 1 0

Page 20: Investigation By: Francisco Javier Murillo. Definitions from internet.

Xnor examples:

Input 1 Input 2 Output

0 0 1

0 1 0

1 0 0

1 1 1

Page 21: Investigation By: Francisco Javier Murillo. Definitions from internet.

Nand example:

Input 1 Input 2 Output

0 0 1

0 1 1

1 0 1

1 1 0

Page 22: Investigation By: Francisco Javier Murillo. Definitions from internet.

Nor example:

Input 1 Input 2 Output

0 0 1

0 1 0

1 0 0

1 1 0

Page 23: Investigation By: Francisco Javier Murillo. Definitions from internet.

Not example:

Input Output

1 0

0 1

Page 24: Investigation By: Francisco Javier Murillo. Definitions from internet.

Led definition A semiconductor diode that converts applied

voltage to light and is used in lamps and digital displays.

Source: http://www.thefreedictionary.com/LED

Page 25: Investigation By: Francisco Javier Murillo. Definitions from internet.

Breadboard DefinitionA thin plastic board used to hold electronic components (transistors, resistors, chips, etc.) that are wired together. Used to develop prototypes of electronic circuits, the boards can be reused for future jobs. Breadboards can also be used to create one-of-a-kind systems, although commercial products placed on printed circuit boards are typically much more robust and can handle greater frequencies.

Page 26: Investigation By: Francisco Javier Murillo. Definitions from internet.

The breadboard contains spring clip contacts typically arranged in matrices with certain blocks of clips already wired together. The components and jump wires (assorted wire lengths with pins at both ends) are plugged into the clips to create the circuit patterns. The boards also typically include metal strips along the side that are used for common power rails and signal buses.

Source: http://www.pcmag.com/encyclopedia_term/0,2542,t=breadboard&i=38905,00.asp

Page 27: Investigation By: Francisco Javier Murillo. Definitions from internet.

Here are some breadboardpicture:

Page 28: Investigation By: Francisco Javier Murillo. Definitions from internet.

Breadboard Jumpers DefinitionThe bredboard is the same, but the thing or material that change is the jumper wire that is used to conect rows in the bredboard.

Source: http://www.sciencebuddies.org/science-fair-projects/project_ideas/Elec_primer-simplecircuit.shtml

Page 29: Investigation By: Francisco Javier Murillo. Definitions from internet.

Picture bibliography http://www.google.com.co/imgres?q=led&um=1&hl=es&biw=

979&bih=476&tbm=isch&tbnid=ADHaZg4d-QssQM:&imgrefurl=http://www.todoleds.com/tecnologia.php%3Fnota%3D16&docid=kIc14GPF4iclhM&imgurl=http://www.todoleds.com/imagenes_notas/nota_Diodos-leds-

http://www.google.com.co/imgres?q=led&um=1&hl=es&biw=979&bih=476&tbm=isch&tbnid=oaQSf_KQZ6Qn7M:&imgrefurl=http://www.goodleds.co/cms.php%3Fid_cms%3D7&docid=zpZ-SUmoWXShAM&imgurl=http://www.goodleds.co/images/leds2.jpg&w

Page 30: Investigation By: Francisco Javier Murillo. Definitions from internet.

http://www.google.com.co/imgres?q=breadboard&hl=es&biw=979&bih=476&gbv=2&tbm=isch&tbnid=avqEEt97ZxVXhM:&imgrefurl=http://weirdcanada.com/2011/09/new-canadian-istagamble-which-house/breadboard/&docid=OiTPQl2i9SVc4M&imgurl=http://weirdcanada.com

http://www.google.com.co/imgres?q=breadboard&hl=es&biw=979&bih=476&gbv=2&tbm=isch&tbnid=xmi8x3WOXv1Q3M:&imgrefurl=http://www.instructables.com/id/Building-Circuits-The-Beauty-of-Breadboards/&docid=u5pbVtBCnCqtpM&imgurl=http://www.instructables.com

http://www.google.com.co/imgres?q=the+end&start=20&num=10&hl=es&gbv=2&biw=979&bih=476&tbm=isch&tbnid=Zi3wBQQRzHRfTM:&imgrefurl=http://shikihouse.blogspot.com/2011/08/cuanto-vale-una-promesa.html&docid=pCWulzQvSFx3wM&imgurl=http://4.bp.blogspot.com/

Page 31: Investigation By: Francisco Javier Murillo. Definitions from internet.