Skip to main content

Sine and Square waves (Core) / Exponents and logarithms (Optional)


Sine waves and square waves (Core)
4.1.2 Sine waves, or sinusoids, are graphs of mathematical functions. Sine waves are periodic, which means that they repeat the same pattern at regular intervals. Sine waves vary continuously, which means that no adjacent points on the graph have the same value.


Sine waves are graphical representations of many natural occurrences that change regularly over time. Some examples of these occurrences are the distance from the earth to the sun, the distance from the ground while riding a Ferris wheel, and the time of day that the sun rises. Since sine waves vary continuously, they are examples of analog waves.

Square waves, like sine waves, are periodic. However, square wave graphs do not continuously vary with time. The wave maintains one value and then suddenly changes to a different value. After a short amount of time it changes back to the original value. Square waves represent digital signals, or pulses. Like all waves, square waves can be described in terms of amplitude, period, and frequency.

The next page reviews exponents and logarithms.

Exponents and logarithms (Optional)
4.1.3 In networking, there are three important number systems:


• Base 2 – binary
• Base 10 – decimal
• Base 16 – hexadecimal

Recall that the base of a number system refers to the number of different symbols that can occupy one position. For example, binary numbers have only two placeholders, which are zero and one. Decimal numbers have ten different placeholders, the numbers 0 to 9. Hexadecimal numbers have 16 different placeholders, the numbers 0 to 9 and the letters A to F.

Remember that 10 x 10 can be written as 102. 102 means ten squared or ten raised to the second power. 10 is the base of the number and 2 is the exponent of the number. 10 x 10 x 10 can be written as 103. 103 means ten cubed or ten raised to the third power. The base is ten and the exponent is three. Use the Interactive Media Activity to calculate exponents. Enter a value for x to calculate y or a value for y to calculate x.

The base of a number system also refers to the value of each digit. The least significant digit has a value of base0, or one. The next digit has a value of base1. This is equal to 2 for binary numbers, 10 for decimal numbers, and 16 for hexadecimal numbers.

Numbers with exponents are used to easily represent very large or very small numbers. It is much easier and less error-prone to represent one billion numerically as 109 than as 1000000000. Many cable-testing calculations involve numbers that are very large and require exponents. Use the Interactive Media Activity to learn more about exponents.

One way to work with the very large and very small numbers is to transform the numbers based on the mathematical rule known as a logarithm. Logarithm is abbreviated as "log". Any number may be used as a base for a system of logarithms. However, base 10 has many advantages not obtainable in ordinary calculations with other bases. Base 10 is used almost exclusively for ordinary calculations. Logarithms with 10 as a base are called common logarithms. It is not possible to obtain the logarithm of a negative number.

To take the log of a number use a calculator or the Interactive Media Activity. For example, the log of (109) = 9. It is possible to take the logarithm of numbers that are not powers of ten. It is not possible to determine the logarithm of a negative number. The study of logarithms is beyond the scope of this course. However, the terminology is often used to calculate decibels and measure signal intensity on copper, optical, and wireless media.

The next page will explain how to calculate decibels.

Comments

Popular posts from this blog

OSI layers / Peer-to-peer communications / TCP/IP model

OSI layers 2.3.4 This page discusses the seven layers of the OSI model. The OSI reference model is a framework that is used to understand how information travels throughout a network. The OSI reference model explains how packets travel through the various layers to another device on a network, even if the sender and destination have different types of network media. In the OSI reference model, there are seven numbered layers, each of which illustrates a particular network function. - Dividing the network into seven layers provides the following advantages: • It breaks network communication into smaller, more manageable parts. • It standardizes network components to allow multiple vendor development and support. • It allows different types of network hardware and software to communicate with each other. • It prevents changes in one layer from affecting other layers. • It divides network communication into smaller parts to make learning it easier to understand. In the foll...

Advantages and disadvantages of link-state routing

Advantages and disadvantages of link-state routing 2.1.5  This page lists the advantages and disadvantages of link-state routing protocols. The following are advantages of link-state routing protocols:  Link-state protocols use cost metrics to choose paths through the network. The cost metric reflects the capacity of the links on those paths. Link-state protocols use triggered updates and LSA floods to immediately report changes in the network topology to all routers in the network. This leads to fast convergence times. Each router has a complete and synchronized picture of the network. Therefore, it is very difficult for routing loops to occur. Routers use the latest information to make the best routing decisions. The link-state database sizes can be minimized with careful network design. This leads to smaller Dijkstra calculations and faster convergence. Every router, at the very least, maps the topology of it...

Ports for services

Ports for services 10.2.2  Services running on hosts must have a port number assigned to them so communication can occur. A remote host attempting to connect to a service expects that service to use specific transport layer protocols and ports. Some ports, which are defined in RFC 1700, are known as the well-known ports. These ports are reserved in both TCP and UDP.  These well-known ports define applications that run above the transport layer protocols. For example, a server that runs FTP will use ports 20 and 21 to forward TCP connections from clients to its FTP application. This allows the server to determine which service a client requests. TCP and UDP use port numbers to determine the correct service to which requests are forwarded. The next page will discuss ports in greater detail.