Loading...

Unit 3 we have got English.
Quiz by T.Omima rashad
Customize this quiz to suit your class
Instantly translate to 100+ languages
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Give this quiz to my class











Unit 3. We have Maths on Monaday.(1)
In this video we take a look at the 0:02 fetch to code 0:03 execute cycle including its effect on 0:06 the various registers we've previously 0:12 [Music] 0:14 discussed a computer is defined Definition 0:17 as an electronic device that takes an 0:20 input 0:22 processes data 0:25 and delivers output 0:29 in this simple example you can see we're 0:31 taking the input 5 0:35 we're multiplying it by 2 that's our 0:37 process 0:39 and we're outputting 10. 0:44 but this could be way more complex for 0:46 example of a game console 0:48 the input could be the buttons you press 0:50 on a controller 0:53 the processes would then be carried out 0:55 by the console itself 0:59 and the output would be some form of 1:01 update to a monitor 1:02 and sound out for a speaker possibly 1:04 vibration feedback through the 1:06 controller 1:10 to process data a computer follows a set 1:13 of instructions 1:14 known as a computer program 1:18 if we take the lid off a typical desktop 1:20 computer we can identify 1:22 two critical components the memory 1:26 that stores the program and the central 1:29 processing unit or processor 1:31 which is under this large fan and 1:33 carries out the instructions 1:37 a computer carries out its function by 1:40 fetching 1:41 instructions decoding them and then 1:43 executing them 1:44 in a continuous repetitive cycle 1:46 billions of times a second 1:48 let's look at each of these stages in a 1:50 little more detail Fetch 1:53 so let's start with the fetch stage the 1:55 very first thing that happens 1:57 is the program counter is checked as it 2:00 holds the address 2:01 of the next instruction to be executed 2:07 the address stored is then copied into 2:09 the memory address register 2:14 the address is then sent along the 2:16 address bus to main memory 2:18 where it waits to receive a signal from 2:21 the control 2:22 bus so it knows what to do 2:27 as we want to read the data that's 2:29 stored in memory address 2:30 0 0 0 0 the control unit sends 2:34 a read signal along the control bus to 2:36 main memory 2:41 now main memory knows the data needs to 2:44 be read 2:45 the content stored in memory address 000 2:49 can be sent along the data bus to the 2:51 memory data register 2:56 now as we're currently in the process of 2:58 fetching an instruction 3:00 the data received by the memory data 3:03 register gets copied 3:04 into the current instruction register 3:11 the instruction effectively has now been 3:14 fetched from memory 3:16 just before we proceed to the decode 3:18 phase we now 3:19 increment the program counter so that 3:22 the address it contains 3:24 points to the address of the next 3:26 instruction which will need to be 3:30 executed 3:32 the instruction now being held in the 3:33 current instruction register 3:35 is ready to be decoded 3:39 now as we mentioned in the previous 3:41 video the instruction is made up of two 3:43 parts 3:44 we have the op code that's what it is we 3:47 need to do 3:50 and we have the operand what are we 3:53 going to do it to 3:55 now the operand could contain the actual 3:57 data 3:58 or indeed it could contain an address of 4:01 where the data is to be found 4:06 by decoding this instruction we can see 4:08 the operation we need 4:10 is a load operation so we need to load 4:14 the contents of memory location0101 4:18 into the cpus accumulator 4:25 in the exam a simple model will be used 4:27 to describe the 4:29 structure of any given instruction 4:32 you're not going to be expected to 4:34 define how an opcode is made up 4:36 but simply to interpret opcodes in the 4:39 given context of an exam 4:40 question in the example here 4:44 you can see there's a total of 16 4:46 different opcodes available 4:48 and this is because we're using four 4:50 bits for our representation 4:56 so now we've fetched the instruction and 4:59 we've decoded it so we know what we need 5:00 to do 5:01 we're finally ready to execute it 5:05 so we now send address 0101 5:08 to the memory dress register 5:13 now we're in the memory address register 5:15 we can finally send the address 5:18 down the address bus to main memory 5:24 this time we want to read the data 5:26 that's stored in memory 5:28 and so the control unit again sends a 5:30 read signal along the control bus 5:36 so main memories now receive an address 5:38 and a read signal 5:40 so the content stored at memory location 5:43 0101 5:44 can now be sent along the data bus back 5:46 to the cpu 5:47 and into the memory data register 5:54 finally the contents of the memory data 5:56 register are copied to the accumulator 5:59 and this is one of a number of general 6:00 purpose registers found in the cpu 6:04 this first instruction is now complete Branching 6:11 so what does this program actually do 6:14 you should be able to work it through 6:16 carefully and figure it out 6:19 we're now pointing instructions zero 6:21 zero zero one in the program counter 6:23 and we're ready to fetch the second 6:25 instruction 6:27 at the end of this video we're gonna 6:29 provide you with the answer 6:34 so let's talk a second about programs 6:37 that branch 6:40 on the left here we have a very simple 6:42 piece of pseudo code 6:44 line zero says first execute this line 6:46 of code 6:47 line 1 now execute this line and then 6:50 line 2 says 6:52 if the age is greater than 18 then 6:56 we're going to execute lines 3 and 4 6:58 otherwise 6:59 we're going to execute lines six and 7:02 seven 7:03 so this program doesn't necessarily 7:05 follow strictly in sequence from line 7:07 zero through to seven there's a chance 7:10 here the program may branch and jump 7:14 around 7:16 so we're going to pretend that this 7:17 program has been loaded into memory 7:20 each line of code on the left here has 7:23 ended up 7:24 as a location in memory now this is not 7:27 strictly how this would happen in this 7:28 one-to-one way 7:29 but for the purpose of example it's 7:31 absolutely fine 7:35 so the program counter starts by 7:37 pointing to memory address zero 7:39 and we fetch the first instruction 7:41 decode it and execute it 7:44 it then updates and tells us the next 7:47 instruction 7:48 is zero zero zero one because remember 7:50 the program counter is being incremented 7:52 so we fetch it decode it and we execute 7:55 line one of our program 7:59 we then fetch line two which in binary 8:01 is one 8:02 zero 8:06 now at this point depending on what 8:10 happens during the execution 8:11 of line two the program may be required 8:15 to fetch line three from memory or 8:18 line five from memory 8:25 so let's look at how this actually works 8:27 because we've said the program counter 8:28 simply gets incremented 8:31 well in the current instruction register 8:33 we have an instruction with the op code 8:36 0 1 1 0. 8:41 now when we look this up in the decode 8:43 unit we discover that this 8:45 code means branch always 8:51 this replaces the value held in the 8:54 program counter 8:56 with the contents of the operand that's 8:58 the second part of the instruction 9:01 from the current instruction register so 9:03 this case 9:04 one zero zero one 9:09 now when the next fetch cycle begins the 9:12 program counter is obviously checked 9:14 and as its contents have been previously 9:16 updated to a new memory location 9:19 and not simply incremented the program 9:22 effectively is able to jump 9:24 around memory 9:28 so having watched this video you should 9:30 be able to answer the following key 9:32 question 9:33 how does a cpu work 9:39 okay so let's um answer the question we 9:41 posed 9:42 earlier what did that program actually 9:48 do 9:50 so this is the first fetch to code 9:53 execute cycle 9:55 and this is the one that we ran through 9:57 in detail earlier 9:58 it effectively loaded the contents of 10:01 the memory 10:02 stored at location location0101 10:05 into the accumulator in other words 10:08 the dna number 3 is moved 10:11 from memory into the cpu 10:18 we then proceed onto the second fetch 10:20 decode execute cycle 10:23 now this one adds the contents of memory 10:27 located at 0 1 1 0 10:30 to the current contents of the 10:32 accumulator 10:34 so in other words the dna number one 10:38 because that's what's stored at address 10:40 zero one one zero 10:43 is added to the number three that was in 10:45 the accumulator 10:46 the results are stored back over the 10:48 accumulator 10:49 so effectively we've done three plus one 10:53 equals four 10:58 the third fetch to code execute cycle 11:00 stores the contents which are in the 11:02 accumulator 11:03 into memory location zero one one one 11:07 and that's because the op code the first 11:09 part of this current instruction 11:10 zero zero one one is the command to 11:13 store when we look it up in the decoder 11:15 unit 11:16 so in other words the result of the 11:17 previous calculation three plus one 11:19 equals four 11:20 is now written back into main memory 11:28 the fourth fetch decode execute cycle 11:30 outputs the contents of the accumulator 11:33 remember they were copied into main 11:34 memory but they're still held in the 11:35 accumulator 11:37 so in this simple abstraction the number 11:40 four is now 11:41 output to the user so they can see the 11:43 result of the calculation 11:49 the fifth and final fetch code execute 11:51 cycle 11:52 brings a halt to the current program 11:58 so this very simple program which has 12:01 five 12:02 fetch decode execute cycles has 12:04 performed the calculation 12:06 three plus one is then stored the result 12:09 in main memory 12:10 and displayed the result four to the 12:12 user 12:13 and in a high-level language this may 12:15 look something very similar to the 12:17 following two lines of code 12:20 sum variable equals num1 plus num2 12:24 print sum to the user 12:27 so you can start to get an appreciation 12:29 here of how the high level code you 12:32 write actually ends up being fetched 12:34 decoded 12:35 and executed inside a processor 12:38 of course your processor is doing 12:40 billions and billions of these 12:42 operations a second 12:43 which when you think about it is really 12:45 very impressive 12:52 [Music] 13:03 you. make 10 questions for a standerd of a level
Introduction to Free Fall A free-falling object is an object that is falling under the sole influence of gravity. Any object that is being acted upon only by the force of gravity is said to be in a state of free fall. There are two important motion characteristics that are true of free-falling objects: • Free-falling objects do not encounter air resistance. • All free-falling objects (on Earth) accelerate downwards at a rate of 9.8 m/s/s (often approximated as 10 m/s/s for back-of-the-envelope calculations) Because free-falling objects are accelerating downwards at a rate of 9.8 m/s/s, a ticker tape trace or dot diagram of its motion would depict an acceleration. The dot diagram at the right depicts the acceleration of a free-falling object. The position of the object at regular time intervals - say, every 0.1 second - is shown. The fact that the distance that the object travels every interval of time is increasing is a sure sign that the ball is speeding up as it falls downward. Recall from an earlier lesson, that if an object travels downward and speeds up, then its acceleration is downward. Free-fall acceleration is often witnessed in a physics classroom by means of an ever-popular strobe light demonstration. The room is darkened and a jug full of water is connected by a tube to a medicine dropper. The dropper drips water and the strobe illuminate the falling droplets at a regular rate - say once every 0.2 seconds. Instead of seeing a stream of water free-falling from the medicine dropper, several consecutive drops with increasing separation distance are seen. The pattern of drops resembles the dot diagram shown in the graphic at the right. The Acceleration of Gravity It was learned in the previous part of this lesson that a free-falling object is an object that is falling under the sole influence of gravity. A free-falling object has an acceleration of 9.8 m/s/s, downward (on Earth). This numerical value for the acceleration of a free-falling object is such an important value that it is given a special name. It is known as the acceleration of gravity - the acceleration for any object moving under the sole influence of gravity. A matter of fact, this quantity known as the acceleration of gravity is such an important quantity that physicists have a special symbol to denote it - the symbol g. The numerical value for the acceleration of gravity is most accurately known as 9.8 m/s2. There are slight variations in this numerical value (to the second decimal place) that are dependent primarily upon on altitude. We will occasionally use the approximated value of 10 m/s2 in order to reduce the complexity of the many mathematical tasks that we will perform with this number. By so doing, we will be able to better focus on the conceptual nature of physics without too much of a sacrifice in numerical accuracy. g = 9.8 m/s2, downward Look It Up! Even on the surface of the Earth, there are local variations in the value of the acceleration of gravity (g). These variations are due to latitude, altitude and the local geological structure of the region. Recall from an earlier lesson that acceleration is the rate at which an object changes its velocity. It is the ratio of velocity change to time between any two points in an object's path. To accelerate at 9.8 m/s2 means to change the velocity by 9.8 m/s each second. If the velocity and time for a free-falling object being dropped from a position of rest were tabulated, then one would note the following pattern. Time (s) Velocity (m/s) 0 0 1 - 9.8 2 - 19.6 3 - 29.4 4 - 39.2 5 - 49.0 . Observe that the velocity-time data above reveal that the object's velocity is changing by 9.8 m/s each consecutive second. That is, the free-falling object has an acceleration of approximately 9.8 m/s2. Another way to represent this acceleration of 9.8 m/s2 is to add numbers to our dot diagram that we saw earlier in this lesson. The velocity of the ball is seen to increase as depicted in the diagram at the right. (NOTE: The diagram is not drawn to scale - in two seconds, the object would drop considerably further than the distance from shoulder to toes.) Representing Free Fall by Graphs • Early in Lesson 1 it was mentioned that there are a variety of means of describing the motion of objects. One such means of describing the motion of objects is through the use of graphs - position versus time and velocity vs. time graphs. In this part of Lesson 5, the motion of a free-falling motion will be represented using these two basic types of graphs. Representing Free Fall by Position-Time Graphs A position versus time graph for a free-falling object is shown below. Observe that the line on the graph curves. As learned earlier, a curved line on a position versus time graph signifies an accelerated motion. Since a free-falling object is undergoing an acceleration (g = 9.8 m/s/s), it would be expected that its position-time graph would be curved. A further look at the position-time graph reveals that the object starts with a small velocity (slow) and finishes with a large velocity (fast). Since the slope of any position vs. time graph is the velocity of the object (as learned in Lesson 3), the small initial slope indicates a small initial velocity and the large final slope indicates a large final velocity. Finally, the negative slope of the line indicates a negative (i.e., downward) velocity. Representing Free Fall by Velocity-Time Graphs A velocity versus time graph for a free-falling object is shown below. Observe that the line on the graph is a straight, diagonal line. As learned earlier, a diagonal line on a velocity versus time graph signifies an accelerated motion. Since a free-falling object is undergoing an acceleration (g = 9,8 m/s/s, downward), it would be expected that its velocity-time graph would be diagonal. A further look at the velocity-time graph reveals that the object starts with a zero velocity (as read from the graph) and finishes with a large, negative velocity; that is, the object is moving in the negative direction and speeding up. An object that is moving in the negative direction and speeding up is said to have a negative acceleration (if necessary, review the vector nature of acceleration). Since the slope of any velocity versus time graph is the acceleration of the object (as learned in Lesson 4), the constant, negative slope indicates a constant, negative acceleration. This analysis of the slope on the graph is consistent with the motion of a free-falling object - an object moving with a constant acceleration of 9.8 m/s/s in the downward direction. The Kinematic Equations The goal of this first unit has been to investigate the variety of means by which the motion of objects can be described. The variety of representations that we have investigated includes verbal representations, pictorial representations, numerical representations, and graphical representations (position-time graphs and velocity-time graphs). In Lesson 6, we will investigate the use of equations to describe and represent the motion of objects. These equations are known as kinematic equations. There are a variety of quantities associated with the motion of objects - displacement (and distance), velocity (and speed), acceleration, and time. Knowledge of each of these quantities provides descriptive information about an object's motion. For example, if a car is known to move with a constant velocity of 22.0 m/s, North for 12.0 seconds for a northward displacement of 264 meters, then the motion of the car is fully described. And if a second car is known to accelerate from a rest position with an eastward acceleration of 3.0 m/s2 for a time of 8.0 seconds, providing a final velocity of 24 m/s, East and an eastward displacement of 96 meters, then the motion of this car is fully described. These two statements provide a complete description of the motion of an object. However, such completeness is not always known. It is often the case that only a few parameters of an object's motion are known, while the rest are unknown. For example as you approach the stoplight, you might know that your car has a velocity of 22 m/s, East and is capable of a skidding acceleration of 8.0 m/s2, West. However you do not know the displacement that your car would experience if you were to slam on your brakes and skid to a stop; and you do not know the time required to skid to a stop. In such an instance as this, the unknown parameters can be determined using physics principles and mathematical equations (the kinematic equations). The BIG 4 The kinematic equations are a set of four equations that can be utilized to predict unknown information about an object's motion if other information is known. The equations can be utilized for any motion that can be described as being either a constant velocity motion (an acceleration of 0 m/s/s) or a constant acceleration motion. They can never be used over any time period during which the acceleration is changing. Each of the kinematic equations include four variables. If the values of three of the four variables are known, then the value of the fourth variable can be calculated. In this manner, the kinematic equations provide a useful means of predicting information about an object's motion if other information is known. For example, if the acceleration value and the initial and final velocity values of a skidding car is known, then the displacement of the car and the time can be predicted using the kinematic equations. Lesson 6 of this unit will focus upon the use of the kinematic equations to predict the numerical values of unknown quantities for an object's motion. The four kinematic equations that describe an object's motion are: There are a variety of symbols used in the above equations. Each symbol has its own specific meaning. The symbol d stands for the displacement of the object. The symbol t stands for the time for which the object moved. The symbol a stands for the acceleration of the object. And the symbol v stands for the velocity of the object; a subscript of i after the v (as in vi) indicates that the velocity value is the initial velocity value and a subscript of f (as in vf) indicates that the velocity value is the final velocity value. Each of these four equations appropriately describes the mathematical relationship between the parameters of an object's motion. As such, they can be used to predict unknown information about an object's motion if other information is known. In the next part of Lesson 6 we will investigate the process of doing this. Kinematic Equations and Problem-Solving The four kinematic equations that describe the mathematical relationship between the parameters that describe an object's motion were introduced in the previous part of Lesson 6. The four kinematic equations are: In the above equations, the symbol d stands for the displacement of the object. The symbol t stands for the time for which the object moved. The symbol a stand for the acceleration of the object. And the symbol v stands for the instantaneous velocity of the object; a subscript of i after the v (as in vi) indicates that the velocity value is the initial velocity value and a subscript of f (as in vf) indicates that the velocity value is the final velocity value. Problem-Solving Strategy In this part of Lesson 6 we will investigate the process of using the equations to determine unknown information about an object's motion. The process involves the use of a problem-solving strategy that will be used throughout the course. The strategy involves the following steps: 1. Construct an informative diagram of the physical situation. 2. Identify and list the given information in variable form. 3. Identify and list the unknown information in variable form. 4. Identify and list the equation that will be used to determine unknown information from known information. 5. Substitute known values into the equation and use appropriate algebraic steps to solve for the unknown information. 6. Check your answer to ensure that it is reasonable and mathematically correct. The use of this problem-solving strategy in the solution of the following problem is modeled in Examples A and B below. Example Problem A . Ima Hurryin is approaching a stoplight moving with a velocity of +30.0 m/s. The light turns yellow, and Ima applies the brakes and skids to a stop. If Ima's acceleration is -8.00 m/s2, then determine the displacement of the car during the skidding process. (Note that the direction of the velocity and the acceleration vectors are denoted by a + and a - sign.) The solution to this problem begins by the construction of an informative diagram of the physical situation. This is shown below. The second step involves the identification and listing of known information in variable form. Note that the vf value can be inferred to be 0 m/s since Ima's car comes to a stop. The initial velocity (vi) of the car is +30.0 m/s since this is the velocity at the beginning of the motion (the skidding motion). And the acceleration (a) of the car is given as - 8.00 m/s2. (Always pay careful attention to the + and - signs for the given quantities.) The next step of the strategy involves the listing of the unknown (or desired) information in variable form. In this case, the problem requests information about the displacement of the car. So d is the unknown quantity. The results of the first three steps are shown in the table below. Diagram: Given: Find: vi = +30.0 m/s vf = 0 m/s a = - 8.00 m/s2 d = ?? The next step of the strategy involves identifying a kinematic equation that would allow you to determine the unknown quantity. There are four kinematic equations to choose from. In general, you will always choose the equation that contains the three known and the one unknown variable. In this specific case, the three known variables and the one unknown variable are vf, vi, a, and d. Thus, you will look for an equation that has these four variables listed in it. An inspection of the four equations above reveals that the equation on the top right contains all four variables. vf2 = vi2 + 2 • a • d Once the equation is identified and written down, the next step of the strategy involves substituting known values into the equation and using proper algebraic steps to solve for the unknown information. This step is shown below. (0 m/s)2 = (30.0 m/s)2 + 2 • (-8.00 m/s2) • d 0 m2/s2 = 900 m2/s2 + (-16.0 m/s2) • d (16.0 m/s2) • d = 900 m2/s2 - 0 m2/s2 (16.0 m/s2)*d = 900 m2/s2 d = (900 m2/s2)/ (16.0 m/s2) d = (900 m2/s2)/ (16.0 m/s2) d = 56.3 m The solution above reveals that the car will skid a distance of 56.3 meters. (Note that this value is rounded to the third digit.) The last step of the problem-solving strategy involves checking the answer to assure that it is both reasonable and accurate. The value seems reasonable enough. It takes a car a considerable distance to skid from 30.0 m/s (approximately 65 mi/hr) to a stop. The calculated distance is approximately one-half a football field, making this a very reasonable skidding distance. Checking for accuracy involves substituting the calculated value back into the equation for displacement and insuring that the left side of the equation is equal to the right side of the equation. Indeed it is! Example Problem B Ben Rushin is waiting at a stoplight. When it finally turns green, Ben accelerated from rest at a rate of a 6.00 m/s2 for a time of 4.10 seconds. Determine the displacement of Ben's car during this time period. Once more, the solution to this problem begins by the construction of an informative diagram of the physical situation. This is shown below. The second step of the strategy involves the identification and listing of known information in variable form. Note that the vi value can be inferred to be 0 m/s since Ben's car is initially at rest. The acceleration (a) of the car is 6.00 m/s2. And the time (t) is given as 4.10 s. The next step of the strategy involves the listing of the unknown (or desired) information in variable form. In this case, the problem requests information about the displacement of the car. So d is the unknown information. The results of the first three steps are shown in the table below. Diagram: Given: Find: vi = 0 m/s t = 4.10 s a = 6.00 m/s2 d = ?? The next step of the strategy involves identifying a kinematic equation that would allow you to determine the unknown quantity. There are four kinematic equations to choose from. Again, you will always search for an equation that contains the three known variables and the one unknown variable. In this specific case, the three known variables and the one unknown variable are t, vi, a, and d. An inspection of the four equations above reveals that the equation on the top left contains all four variables. d = vi • t + ½ • a • t2 Once the equation is identified and written down, the next step of the strategy involves substituting known values into the equation and using proper algebraic steps to solve for the unknown information. This step is shown below. d = (0 m/s) • (4.1 s) + ½ • (6.00 m/s2) • (4.10 s)2 d = (0 m) + ½ • (6.00 m/s2) • (16.81 s2) d = 0 m + 50.43 m d = 50.4 m The solution above reveals that the car will travel a distance of 50.4 meters. (Note that this value is rounded to the third digit.) The last step of the problem-solving strategy involves checking the answer to assure that it is both reasonable and accurate. The value seems reasonable enough. A car with an acceleration of 6.00 m/s/s will reach a speed of approximately 24 m/s (approximately 50 mi/hr) in 4.10 s. The distance over which such a car would be displaced during this time period would be approximately one-half a football field, making this a very reasonable distance. Checking for accuracy involves substituting the calculated value back into the equation for displacement and insuring that the left side of the equation is equal to the right side of the equation. Indeed, it is! The two example problems above illustrate how the kinematic equations can be combined with a simple problem-solving strategy to predict unknown motion parameters for a moving object. Provided that three motion parameters are known, any of the remaining values can be determined. In the next part of Lesson 6, we will see how this strategy can be applied to free fall situations. Or if interested, you can try some practice problems and check your answer against the given solutions. Kinematic Equations and Free Fall As mentioned in Lesson 5, a free-falling object is an object that is falling under the sole influence of gravity. That is to say that any object that is moving and being acted upon only be the force of gravity is said to be "in a state of free fall." Such an object will experience a downward acceleration of 9.8 m/s/s. Whether the object is falling downward or rising upward towards its peak, if it is under the sole influence of gravity, then its acceleration value is 9.8 m/s/s. Like any moving object, the motion of an object in free fall can be described by four kinematic equations. The kinematic equations that describe any object's motion are: The symbols in the above equation have a specific meaning: the symbol d stands for the displacement; the symbol t stands for the time; the symbol a stands for the acceleration of the object; the symbol vi stands for the initial velocity value; and the symbol vf stands for the final velocity. Applying Free Fall Concepts to Problem-Solving There are a few conceptual characteristics of free fall motion that will be of value when using the equations to analyze free fall motion. These concepts are described as follows: • An object in free fall experiences an acceleration of -9.8 m/s/s. (The - sign indicates a downward acceleration.) Whether explicitly stated or not, the value of the acceleration in the kinematic equations is -9.8 m/s/s for any freely falling object. • If an object is merely dropped (as opposed to being thrown) from an elevated height, then the initial velocity of the object is 0 m/s. • If an object is projected upwards in a perfectly vertical direction, then it will slow down as it rises upward. The instant at which it reaches the peak of its trajectory, its velocity is 0 m/s. This value can be used as one of the motion parameters in the kinematic equations; for example, the final velocity (vf) after traveling to the peak would be assigned a value of 0 m/s. • If an object is projected upwards in a perfectly vertical direction, then the velocity at which it is projected is equal in magnitude and opposite in sign to the velocity that it has when it returns to the same height. That is, a ball projected vertically with an upward velocity of +30 m/s will have a downward velocity of -30 m/s when it returns to the same height. These four principles and the four kinematic equations can be combined to solve problems involving the motion of free-falling objects. The two examples below illustrate application of free fall principles to kinematic problem-solving. In each example, the problem solving strategy that was introduced earlier in this lesson will be utilized. Example Problem A Luke Autbeloe drops a pile of roof shingles from the top of a roof located 8.52 meters above the ground. Determine the time required for the shingles to reach the ground. The solution to this problem begins by the construction of an informative diagram of the physical situation. This is shown below. The second step involves the identification and listing of known information in variable form. You might note that in the statement of the problem, there is only one piece of numerical information explicitly stated: 8.52 meters. The displacement (d) of the shingles is -8.52 m. (The - sign indicates that the displacement is downward). The remaining information must be extracted from the problem statement based upon your understanding of the above principles. For example, the vi value can be inferred to be 0 m/s since the shingles are dropped (released from rest; see note above). And the acceleration (a) of the shingles can be inferred to be -9.8 m/s2 since the shingles are free-falling (see note above). (Always pay careful attention to the + and - signs for the given quantities.) The next step of the solution involves the listing of the unknown (or desired) information in variable form. In this case, the problem requests information about the time of fall. So t is the unknown quantity. The results of the first three steps are shown in the table below. Diagram: Given: Find: vi = 0.0 m/s d = -8.52 m a = - 9.8 m/s2 t = ?? The next step involves identifying a kinematic equation that allows you to determine the unknown quantity. There are four kinematic equations to choose from. In general, you will always choose the equation that contains the three known and the one unknown variable. In this specific case, the three known variables and the one unknown variable are d, vi, a, and t. Thus, you will look for an equation that has these four variables listed in it. An inspection of the four equations above reveals that the equation on the top left contains all four variables. d = vi • t + ½ • a • t2 Once the equation is identified and written down, the next step involves substituting known values into the equation and using proper algebraic steps to solve for the unknown information. This step is shown below. -8.52 m = (0 m/s) • (t) + ½ • (-9.8 m/s2) • (t)2 -8.52 m = (0 m) *(t) + (-4.9 m/s2) • (t)2 -8.52 m = (-4.9 m/s2) • (t)2 (-8.52 m)/(-4.9 m/s2) = t2 1.739 s2 = t2 t = 1.32 s The solution above reveals that the shingles will fall for a time of 1.32 seconds before hitting the ground. (Note that this value is rounded to the third digit.) The last step of the problem-solving strategy involves checking the answer to assure that it is both reasonable and accurate. The value seems reasonable enough. The shingles are falling a distance of approximately 10 yards (1 meter is pretty close to 1 yard); it seems that an answer between 1 and 2 seconds would be highly reasonable. The calculated time easily falls within this range of reasonability. Checking for accuracy involves substituting the calculated value back into the equation for time and insuring that the left side of the equation is equal to the right side of the equation. Indeed it is! Example Problem B Rex Things throws his mother's crystal vase vertically upwards with an initial velocity of 26.2 m/s. Determine the height to which the vase will rise above its initial height. Once more, the solution to this problem begins by the construction of an informative diagram of the physical situation. This is shown below. The second step involves the identification and listing of known information in variable form. You might note that in the statement of the problem, there is only one piece of numerical information explicitly stated: 26.2 m/s. The initial velocity (vi) of the vase is +26.2 m/s. (The + sign indicates that the initial velocity is an upwards velocity). The remaining information must be extracted from the problem statement based upon your understanding of the above principles. Note that the vf value can be inferred to be 0 m/s since the final state of the vase is the peak of its trajectory (see note above). The acceleration (a) of the vase is -9.8 m/s2 (see note above). The next step involves the listing of the unknown (or desired) information in variable form. In this case, the problem requests information about the displacement of the vase (the height to which it rises above its starting height). So d is the unknown information. The results of the first three steps are shown in the table below. Diagram: Given: Find: vi = 26.2 m/s vf = 0 m/s a = -9.8 m/s2 d = ?? The next step involves identifying a kinematic equation that would allow you to determine the unknown quantity. There are four kinematic equations to choose from. Again, you will always search for an equation that contains the three known variables and the one unknown variable. In this specific case, the three known variables and the one unknown variable are vi, vf, a, and d. An inspection of the four equations above reveals that the equation on the top right contains all four variables. vf2 = vi2 + 2 • a • d Once the equation is identified and written down, the next step involves substituting known values into the equation and using proper algebraic steps to solve for the unknown information. This step is shown below. (0 m/s)2 = (26.2 m/s)2 + 2 •(-9.8m/s2) •d 0 m2/s2 = 686.44 m2/s2 + (-19.6 m/s2) •d (-19.6 m/s2) • d = 0 m2/s2 -686.44 m2/s2 (-19.6 m/s2) • d = -686.44 m2/s2 d = (-686.44 m2/s2)/ (-19.6 m/s2) d = 35.0 m The solution above reveals that the vase will travel upwards for a displacement of 35.0 meters before reaching its peak. (Note that this value is rounded to the third digit.) The last step of the problem-solving strategy involves checking the answer to assure that it is both reasonable and accurate. The value seems reasonable enough. The vase is thrown with a speed of approximately 50 mi/hr (merely approximate 1 m/s to be equivalent to 2 mi/hr). Such a throw will never make it further than one football field in height (approximately 100 m), yet will surely make it past the 10-yard line (approximately 10 meters). The calculated answer certainly falls within this range of reasonability. Checking for accuracy involves substituting the calculated value back into the equation for displacement and insuring that the left side of the equation is equal to the right side of the equation. Indeed, it is! Kinematic equations provide a useful means of determining the value of an unknown motion parameter if three motion parameters are known. In the case of a free-fall motion, the acceleration is often known. And in many cases, another motion parameter can be inferred through a solid knowledge of some basic kinematic principles.
Health 11/12 Review for Final Exam Core Concepts - Mental and Emotional Health, Substance Abuse Prevention, Safety and Violence Prevention, Family Life and Human Sexuality, Disease Prevention and Control, Healthy Eating Health Education Skills - goal setting, decision making, accessing information/resources, analyzing influences, communication, self-management, advocacy DIMENSIONS of Wellness - social, spiritual, emotional/mental, environmental, financial, intellectual, multicultural, occupational, physical, sexual RISK factors - anything that increases the risk of disease, injury, or illness. PROTECTIVE factors - anything that decreases the risk of disease, injury, or illness. INTERNAL health factors - health factors that can be either hereditary and genetic or acquired elements -- include smoking and personal diet or eating habits. Example – a genetic predisposition to an illness. EXTERNAL health factors - health factors that are part of the direct outer environment, the geographical location, micro-organisms, socio-economic elements that could affect an individual's health. Example – being unable to afford mental health services. Unit 1- Managing Personal and Community Wellness Explain Maslow’s Hierarchy of Needs in your own words using the image provided. Explain how each Social Determinant of Health may impact a person’s health. Levels of Disease Prevention • PRIMARY The goal is to avoid conditions altogether. • SECONDARY The goal is early detection. • TERTIARY The goal is to minimize the damage (manage). Define the following terms. Fads/Trends Sleep hygiene Driver safety Unit 2- Investigating Social Ecological Factors on Well-Being Socio-Ecological Model – The SEM examines how health behaviors form based on characteristics of individuals, communities, nations and levels in between. Each level overlaps with other levels signifying how the best public health strategies are those that encompass and target a wide range of perspectives. Interpersonal (personal) health vs. intrapersonal (relationship) health Health INEQUITY - systemic, ingrained and unjust barriers that prevent segments of the population from having the opportunity of health leading to health disparity. IMPLICIT BIAS - a form of bias that occurs automatically and unintentionally, that nevertheless affects judgments, decisions, and behaviors. Research has shown implicit bias can contribute to unequal access to quality healthcare, negative patient-provider relationships and interactions; and create mistrust in the healthcare system and practitioners among patients. This can contribute to health disparities. Health DISPARITY - represents a difference in health between populations. It is often used to describe disease burden and other negative health outcomes socially disadvantaged groups may face. Health EQUITY - The opposite of health inequity. It describes a system that supports a high standard of health and healthcare for all people. Racism - Beliefs, attitudes, institutional arrangements, and acts that tend to denigrate individuals or groups because of phenotypic characteristics or ethnic group affiliation. DISCRIMINATION - An unjust differential treatment of a person or a group. PRIVILEGE- The unearned access to resources and social power that are only available to some because of their membership within certain social groups. OPPRESSION is the act of taking away choices from others and can be defined as a system that maintains advantage and disadvantage based on social identities and that acts on multiple levels from interpersonal to institutional and societal. (internalized, interpersonal, institutional, structural) Systematic Oppression - Intentional disadvantage of groups of people based on their identity while advantaging members of dominant group (race, gender, sexual orientation, language, size, ability, etc.). Intersectionality - The complex, cumulative way in which the effects of multiple forms of discrimination (such as racism, sexism, and classism) combine, overlap, or intersect especially in the experiences of marginalized individuals or groups Unit 3- Accessing Resources and Communicating to Support Mental and Emotional Health What is anger? What is anxiety? What is stress? STRESSORS are the things that cause stress. Stressors can be internal and external. A stressor may be a one-time or short-term occurrence, or it can happen repeatedly over a long time. INTERNAL Stressors - are made by your belief system and the way you evaluate yourself. Examples include pessimistic attitude, negative self-talk, deep need to be perfect, low self-esteem or body image, unhealthy standards for self. EXTERNAL Stressors - are stressful things that happen in your surroundings and/or in your environment. Examples include busy schedules, work problems, family issues, financial trouble, social problems, injury, unforeseen circumstances. Socio-economic issues are also a part of external stressors such as poverty, violence, and racism. Define the following mental health conditions. Depression Eating disorders NSSI Non-suicidal self-injury Grief/Loss Suicide prevention A.C.T. • ACKNOWLEDGE- Tell them in a caring way that you recognize that they are having a problem • CARE- You can show you care by actively listening - put away anything else you are doing, make eye contact, sit down, ask questions. • TELL-(call 988 for additional help and support) - Tell them it is important that they speak with a trusted adult. Help them figure out who this may be and offer to go with your friend. A social norm is an unwritten, informal rule meant to guide behavior among the of society. It distinguishes between acceptable and unacceptable, good and bad, and so on. Social norms can influence a person with emotional or mental health disorders, access to care and stigmatize their situation. STIGMA- a mark of disgrace associated with a particular circumstance, quality, or person. • Self-stigma - This describes the internalized stigma that people with mental health conditions feel about themselves. • Public stigma - This refers to the negative attitudes around mental health from people in society. • Institutional stigma - This is a type of systemic stigma that arises from corporations, governments, and other institutions. Unit 4- Evaluating Risks of Substance Use and Abuse Harm Reduction - a set of practical strategies and ideas aimed at reducing negative consequences associated with drug use. Explain how each level of the Social Ecological Model is impacted by addiction. Individual Relationship Community Society SEM Level Contributing/Risk Factors to substance use Preventative/Protective Factors for substance use Individual Interpersonal/Relationship Community Society Unit 5- Analyzing Influences to Examine Ways to Increase Safety and Reduce Violence HATE CRIME - a crime, usually violent, motivated by prejudice or intolerance toward an individual’s national origin, ethnicity, color, religion, gender, gender identity, sexual orientation, or disability. Explain how the media influences violence in society. The Pyramid of Hate Explain the escalation of hate using the Pyramid of Hate visual. List several hate crime motivators. Example: age HEALTHY Relationship Signs - comfortable pace, trust, honesty, independence, respect, equality, kindness, taking responsibility, healthy conflict, fun UNHEALTHY Relationship Signs - intensity, possessiveness, manipulation, isolation, sabotage, belittling, guilting, volatility, deflecting responsibility, betrayal Sexual Assault is a sexual behavior WITHOUT consent. Human trafficking - the recruitment, harboring, transportation, provision, or obtaining of a person for labor or services, using force, fraud, or coercion for the purpose of subjection to involuntary servitude, peonage, debt bondage, or slavery. Sex trafficking - commercial sex act induced by force, fraud, or coercion, or in which the person induced to perform such an act has not attained 18 years of age. Trafficking happens using… • Force - using violence to control someone. • Fraud - using lies to control someone. • Coercion - using threats to control someone. Unit 6- Family Life and Human Sexuality Agency - A belief about yourself and the extent to which you can act on that belief. • The ability to choose freely one’s own narrative. • To embrace the idea that I am the cause (or agent) of my own thoughts and actions. • Personal agency is a personal responsibility for who we are, what we experience, what we do about that experience, and how we shape our world to give us more of the experiences we want. SEXUAL Agency • The ability to choose your own interests and desires vs. what we see in the media or others’ perceptions • The ability to identify, communicate, and negotiate one’s sexual needs • The ability to initiate behaviors that allow for the satisfaction of those needs Sexually Explicit Material - photographs, videos, films, magazines, and books whose primary themes, topics, or depictions involve sexuality that may cause sexual arousal. Sexual scripts - thoughts, patterns, or behavior that a person has about themselves in a romantic or sexual context. It is how people picture themselves or want to project themselves in front of others. Reproductive Rights of Teens - In Maryland, teens have the right to an abortion, keep their child, obtain and use birth control, paternity tests, adoption, give up custody of their child within 10 days of birth (Safe Haven Law). • REPRODUCTIVE RIGHTS- legal rights and the freedom of the individual to control decisions regarding contraception, abortion, sterilization and childbirth. • SAFE HAVEN LAW- a distressed parent who is unable or unwilling to care for their infant can safely give up custody of their baby, no questions asked. CONSENT is an agreement between participants to engage in sexual activity. • It is clearly and freely communicated, verbal, and affirmative. Consent CANNOT be given if… • A person is underage, one or both partners is intoxicated or incapacitated by drugs or alcohol, one partner is asleep or unconscious, one partner feels pressured, threatened or intimidated, or one partner holds a position of power or authority over the other. Unit 7- Advocating for Enhanced Nutrition, Food Systems, and Health Outcomes Dietary Guidelines for Americans Guideline 1: Follow a Healthy Dietary Pattern at Every Life Stage Guideline 2: Customize and Enjoy Food and Beverage Choices to Reflect Personal Preferences, Cultural Traditions, and Budgetary Considerations Guideline 3: Focus on Meeting Food Group Needs with Nutrient-Dense Foods and Beverages, and Stay Within Calorie Limits Guideline 4: Limit Foods and Beverages Higher in Added Sugars, Saturated Fat, and Sodium, and Limit Alcoholic Beverages FOOD DESERT- a neighborhood where there is little or limited access to healthy and affordable food such as fruits, vegetables, whole grains, low-fat milk and other foods that make up the full range of a healthy diet. FOOD INSEQURITY lack of access to a sufficient amount of food because of limited funds. More than 49 million American households are considered food insecure and are vulnerable to poor health as a result. PROCCESED FOODS- any raw agricultural commodities that have been washed, cleaned, milled, cut, chopped, heated, pasteurized, blanched, cooked, canned, frozen, dried, dehydrated, mixed or packaged — anything done to them that alters their natural state.
Cell Theory The microscopes we use today are far more complex than those used in the 1600s by Antony van Leeuwenhoek, a Dutch shopkeeper who had great skill in crafting lenses. Despite the limitations of his now-ancient lenses, van Leeuwenhoek observed the movements of protista (a type of single-celled organism) and sperm, which he collectively termed “animalcules. ” In a 1665 publication called Micrographia, experimental scientist Robert Hooke coined the term “cell” for the box-like structures he observed when viewing cork tissue through a lens. In the 1670s, van Leeuwenhoek discovered bacteria and protozoa. Later advances in lenses, microscope construction, and staining techniques enabled other scientists to see some components inside cells. image Figure 4.3.1 : Structure of an Animal Cell: The cell is the basic unit of life and the study of the cell led to the development of the cell theory. By the late 1830s, botanist Matthias Schleiden and zoologist Theodor Schwann were studying tissues and proposed the unified cell theory. The unified cell theory states that: all living things are composed of one or more cells; the cell is the basic unit of life; and new cells arise from existing cells. Rudolf Virchow later made important contributions to this theory. Schleiden and Schwann proposed spontaneous generation as the method for cell origination, but spontaneous generation (also called abiogenesis) was later disproven. Rudolf Virchow famously stated “Omnis cellula e cellula”… “All cells only arise from pre-existing cells. “The parts of the theory that did not have to do with the origin of cells, however, held up to scientific scrutiny and are widely agreed upon by the scientific community today. The generally accepted portions of the modern Cell Theory are as follows: The cell is the fundamental unit of structure and function in living things. All organisms are made up of one or more cells. Cells arise from other cells through cellular division. The expanded version of the cell theory can also include: Cells carry genetic material passed to daughter cells during cellular division All cells are essentially the same in chemical composition Energy flow (metabolism and biochemistry) occurs within cells
Ions Ions are charged substances that have formed through the gain or loss of electrons. Cations form from the loss of electrons and have a positive charge while anions form through the gain of electrons and have a negative charge. Cation Formation Cations are the positive ions formed by the loss of one or more electrons. The most commonly formed cations of the representative elements are those that involve the loss of all of the valence electrons. Consider the alkali metal sodium (Na) . It has one valence electron in the n=3 energy level. Upon losing that electron, the sodiu ion now has an octet of electrons from the second energy level and a charge of 1+ . The electron arrangement of the sodium ion is now the same as that of the noble gas neon. Consider a similar process with magnesium and aluminum. In this case, the magnesium atom loses its two valence electrons in order to achieve the same arrangement as the noble gas neon and a charge of 2+ . The aluminum atom loses its three valence electrons to have the same electron arrangement as neon and a charge of 3+ . For representative elements under typical conditions, three electrons is usually the maximum number that will be los. Representative elements will not lose electrons beyond their valence because they would have to "break" the octet of the previous energy level which provides stability to the ion. Anions Anions are the negative ions formed from the gain of one or more electrons. When nonmetal atoms gain elections, they often do so until their outermost principal energy level achieves an octet. For fluorine, which has an electron arrangement of (2, 7), it only needs to gain one electron to have the same electron arrangement as neon. Forming an octet (eight electrons in the outer shell) provides stability to the atom. Fluorine will gain one electron and have a charge of 1− . The electron arrangement of the fluoride ion (2, 8) will also change to reflect the gain of an electron. Oxygen has an electron arrangement of (2, 6) and needs to gain two electrons to fill the n=2 energy level and achieve an octet of electrons in the outermost shell. The oxide ion will have a charge of 2− as a result of gaining two electrons. Under typical conditions, three electrons is the maximum that will be gained in the formation of anions. Subatomic Particles in an Ion Since ions form from the gain or loss of electrons, we can also look at the number of subatomic particles (protons, neutrons, and electrons) found in an ion. Remember that the number of protons determines the identity of the element and will not change in a chemical process. Example 2.5.1 How many protons, neutrons, and electrons in a single oxide (O2−) ion? Solution Oxygen has the atomic number 8 so both the atom and the ion will have 8 protons. The average atomic mass of oxygen is 16. Therefore, there will be 8 neutrons (atomic mass−atomic number=neutrons) . A neutral oxygen atom would have 8 electrons. However, the anion has gained two electrons so O2− has 10 electrons. We can also use information about the subatomic particles to determine the identity of an ion. Example 2.5.2 An ion with a 2+ charge has 18 electrons. Determine the identity of the ion. Solution If an ion has a 2+ charge then it must have lost electrons to form the cation. If the ion has 18 electrons and the atom lost 2 to form the ion, then the neutral atom contained 20 electrons. Since it was neutral, it must also have had 20 protons. Therefore the element is calcium. Polyatomic Ions A polyatomic ion is an ion composed of two or more atoms that have a charge as a group (poly = many). The ammonium ion (see figure below) consists of one nitrogen atom and four hydrogen atoms. Together, they comprise a single ion with a 1+ charge and a formula of NH+4 . The hydroxide ion (see figure below) contains one hydrogen atom and one oxygen atom with an overall charge of 1− . The carbonate ion (see figure below) consists of one carbon atom and three oxygen atoms and carries an overall charge of 2− . The formula of the carbonate ion is CO2−3 . The atoms of a polyatomic ion are tightly bonded together and so the entire ion behaves as a single unit. The figures below show several examples. Soult Screenshot 2-2-1.png Figure 2.5.1 : The ammonium ion (NH+4) is a nitrogen atom (blue) bonded to four hydrogen atoms (white). Soult Screenshot 2-2-2.png Figure 2.5.2 : The hydroxide ion (OH−) is an oxygen atom (red) bonded to a hydrogen atom. Soult Screenshot 2-2-3.png Figure 2.5.3 : The carbonate ion (CO2−3) is a carbon atom (black) bonded to three oxygen atoms. The table below lists a number of polyatomic ions by name and by structure. The heading for each column indicates the charge on the polyatomic ions in that group. Note that the vast majority of the ions listed are anions - there are very few polyatomic cations. 1− 2− 3− 1+ Table 2.5.1 : Common Polyatomic Ions acetate, CH3COO− carbonate, CO2−3 arsenate, AsO3−3 ammonium, NH+4 bromate, BrO−3 chromate, CrO2−4 phosphite, PO3−3 chlorate, ClO−3 dichromate, Cr2O2−7 phosphate, PO3−4 chlorite, ClO−2 hydrogen phosphate, HPO2−4 cyanide, CN− oxalate, C2O2−4 dihydrogen phosphate, H2PO−4 peroxide, O2−2 hydrogen carbonate, HCO−3 silicate, SiO2−3 hydrogen sulfate, HSO−4 sulfate, SO2−4 hydrogen sulfide, HS− sulfite, SO2−3 hydroxide, OH− hypochlorite, ClO− nitrate, NO−3 nitrite, NO−2 perchlorate, ClO−4 permanganate, MnO−4 The vast majority of polyatomic ions are anions, many of which end in -ate or -ite. Notice that in some cases such as nitrate (NO−3) and nitrite (NO−2) , there are multiple anions that consist of the same two elements. In these cases, the difference between the ions is the number of oxygen atoms present, while the overall charge is the same. As a class, these are called oxyanions. When there are two oxyanions for a particular element, the one with the greater number of oxygen atoms gets the -ate suffix, while the one with the fewer number of oxygen atoms gets the -ite suffix. The four oxyanions of chlorine are shown below, which also includes the use of the prefixes hypo- and per-. ClO− , hypochlorite ClO−2 , chlorite ClO−3 , chlorate ClO−4 , perchlorate Not your usual ion Soult Screenshot 2-2-4.png "Drink you milk. It's good for your bones." We're told this from early childhood, and with good reason. Milk contains a good supply of calcium, part of the structure of bone. However, there are two other ionic components of hydroxyapatite, the mineral component. Phosphate ion and hydroxide ion make up the remainder of the inorganic material in bone. News You Can Use Bone is a very complex structure. It is composed of protein (mainly collagen), hydroxyapatite (a calcium-phosphate-hydroxide mixture), some other minerals, and contains 10 - 20% water. The calcium/phosphate ratios are not stoichiometric, but vary somewhat from one portion of bone to the next. Bones are very strong but will break under enough stress. Regular exercise and proper nutrition help to increase bone strength. Watch a video about bone structure at http://www.youtube.com/watch?v=d9owEvYdouk Nitrate is an anion with a complex bonding structure. Major sources for this ion in drinking water are runoff from fertilizer, septic tank leakage, sewage, and natural deposits. High concentrations of nitrates represent a significant health hazard, especially to infants. The nitrate in the body is converted to nitrite, which then binds to hemoglobin. This binding decreases the ability of hemoglobin to transport oxygen, thus depriving the cells of the O2 needed for proper functioning. Cyanide production is widespread throughout nature. Forest fires will produce significant amounts of cyanide. Many plants contain cyanide, and it is produced by a number of bacteria, algae, and fungi. Cyanide is used industrially in metal finishing, iron and steel mills, and in organic synthesis processes. This material is also an important component for the refining of precious metals. Formation of a complex between cyanide and gold allows extraction of this metal from a mixture.
Covalent Molecules and Compounds Just as an atom is the simplest unit that has the fundamental chemical properties of an element, a molecule is the simplest unit that has the fundamental chemical properties of a covalent compound. Some pure elements exist as covalent molecules. Hydrogen, nitrogen, oxygen, and the halogens occur naturally as the diatomic (“two atoms”) molecules H2, N2, O2, F2, Cl2, Br2, and I2 (part (a) in Figure 3.1.1). Similarly, a few pure elements exist as polyatomic (“many atoms”) molecules, such as elemental phosphorus and sulfur, which occur as P4 and S8 (part (b) in Figure 3.1.1). Each covalent compound is represented by a molecular formula, which gives the atomic symbol for each component element, in a prescribed order, accompanied by a subscript indicating the number of atoms of that element in the molecule. The subscript is written only if the number of atoms is greater than 1. For example, water, with two hydrogen atoms and one oxygen atom per molecule, is written as H2O. Similarly, carbon dioxide, which contains one carbon atom and two oxygen atoms in each molecule, is written as CO2. Covalent compounds that predominantly contain carbon and hydrogen are called organic compounds. The convention for representing the formulas of organic compounds is to write carbon first, followed by hydrogen and then any other elements in alphabetical order (e.g., CH4O is methyl alcohol, a fuel). Compounds that consist primarily of elements other than carbon and hydrogen are called inorganic compounds; they include both covalent and ionic compounds. In inorganic compounds, the component elements are listed beginning with the one farthest to the left in the periodic table, as in CO2 or SF6. Those in the same group are listed beginning with the lower element and working up, as in ClF. By convention, however, when an inorganic compound contains both hydrogen and an element from groups 13–15, hydrogen is usually listed last in the formula. Examples are ammonia (NH3) and silane (SiH4). Compounds such as water, whose compositions were established long before this convention was adopted, are always written with hydrogen first: Water is always written as H2O, not OH2. The conventions for inorganic acids, such as hydrochloric acid (HCl) and sulfuric acid (H2SO4), are described elswhere. Note! For organic compounds: write C first, then H, and then the other elements in alphabetical order. For molecular inorganic compounds: start with the element at far left in the periodic table; list elements in same group beginning with the lower element and working up. Write the molecular formula of each compound. a. The phosphorus-sulfur compound that is responsible for the ignition of so-called strike anywhere matches has 4 phosphorus atoms and 3 sulfur atoms per molecule. b. Ethyl alcohol, the alcohol of alcoholic beverages, has 1 oxygen atom, 2 carbon atoms, and 6 hydrogen atoms per molecule. c. Freon-11, once widely used in automobile air conditioners and implicated in damage to the ozone layer, has 1 carbon atom, 3 chlorine atoms, and 1 fluorine atom per molecule. Solution: a. • A The molecule has 4 phosphorus atoms and 3 sulfur atoms. Because the compound does not contain mostly carbon and hydrogen, it is inorganic. • B Phosphorus is in group 15, and sulfur is in group 16. Because phosphorus is to the left of sulfur, it is written first. • C Writing the number of each kind of atom as a right-hand subscript gives P4S3 as the molecular formula. b. • A Ethyl alcohol contains predominantly carbon and hydrogen, so it is an organic compound. • B The formula for an organic compound is written with the number of carbon atoms first, the number of hydrogen atoms next, and the other atoms in alphabetical order: CHO. • C Adding subscripts gives the molecular formula C2H6O. c. • A Freon-11 contains carbon, chlorine, and fluorine. It can be viewed as either an inorganic compound or an organic compound (in which fluorine has replaced hydrogen). The formula for Freon-11 can therefore be written using either of the two conventions. • B According to the convention for inorganic compounds, carbon is written first because it is farther left in the periodic table. Fluorine and chlorine are in the same group, so they are listed beginning with the lower element and working up: CClF. Adding subscripts gives the molecular formula CCl3F. • C We obtain the same formula for Freon-11 using the convention for organic compounds. The number of carbon atoms is written first, followed by the number of hydrogen atoms (zero) and then the other elements in alphabetical order, also giving CCl3F. Write the molecular formula for each compound. a. Nitrous oxide, also called “laughing gas,” has 2 nitrogen atoms and 1 oxygen atom per molecule. Nitrous oxide is used as a mild anesthetic for minor surgery and as the propellant in cans of whipped cream. b. Sucrose, also known as cane sugar, has 12 carbon atoms, 11 oxygen atoms, and 22 hydrogen atoms. c. Sulfur hexafluoride, a gas used to pressurize “unpressurized” tennis balls and as a coolant in nuclear reactors, has 6 fluorine atoms and 1 sulfur atom per molecule. Answer: a. N2O b. C12H22O11 c. SF6. Ionic Compounds The substances described in the preceding discussion are composed of molecules that are electrically neutral; that is, the number of positively-charged protons in the nucleus is equal to the number of negatively-charged electrons. In contrast, ions are atoms or assemblies of atoms that have a net electrical charge. Ions that contain fewer electrons than protons have a net positive charge and are called cations. Conversely, ions that contain more electrons than protons have a net negative charge and are called anions. Ionic compounds contain both cations and anions in a ratio that results in no net electrical charge. Note! Ionic compounds contain both cations and anions in a ratio that results in zero electrical charge.An ionic compound that contains only two elements, one present as a cation and one as an anion, is called a binary ionic compound. One example is MgCl2, a coagulant used in the preparation of tofu from soybeans. For binary ionic compounds, the subscripts in the empirical formula can also be obtained by crossing charges: use the absolute value of the charge on one ion as the subscript for the other ion. This method is shown schematically as follows: Crossing charges. One method for obtaining subscripts in the empirical formula is by crossing charges. When crossing charges, it is sometimes necessary to reduce the subscripts to their simplest ratio to write the empirical formula. Consider, for example, the compound formed by Mg2+ and O2−. Using the absolute values of the charges on the ions as subscripts gives the formula Mg2O2:Polyatomic Ions Polyatomic ions are groups of atoms that bear net electrical charges, although the atoms in a polyatomic ion are held together by the same covalent bonds that hold atoms together in molecules. Just as there are many more kinds of molecules than simple elements, there are many more kinds of polyatomic ions than monatomic ions. Two examples of polyatomic cations are the ammonium (NH4+) and the methylammonium (CH3NH3+) ions. P. The method used to predict the empirical formulas for ionic compounds that contain monatomic ions can also be used for compounds that contain polyatomic ions. The overall charge on the cations must balance the overall charge on the anions in the formula unit. Thus, K+ and NO3− ions combine in a 1:1 ratio to form KNO3 (potassium nitrate or saltpeter), a major ingredient in black gunpowder. Similarly, Ca2+ and SO42− form CaSO4 (calcium sulfate), which combines with varying amounts of water to form gypsum and plaster of Paris. The polyatomic ions NH4+ and NO3− form NH4NO3 (ammonium nitrate), a widely used fertilizer and, in the wrong hands, an explosive. One example of a compound in which the ions have charges of different magnitudes is calcium phosphate, which is composed of Ca2+ and PO43− ions; it is a major component of bones. The compound is electrically neutral because the ions combine in a ratio of three Ca2+ ions [3(+2) = +6] for every two ions [2(−3) = −6], giving an empirical formula of Ca3(PO4)2; the parentheses around PO4 in the empirical formula indicate that it is a polyatomic ion. Writing the formula for calcium phosphate as Ca3P2O8 gives the correct number of each atom in the formula unit, but it obscures the fact that the compound contains readily identifiable PO43− ions.Summary • There are two fundamentally different kinds of chemical bonds (covalent and ionic) that cause substances to have very different properties. • The composition of a compound is represented by an empirical or molecular formula, each consisting of at least one formula unit.Contributors The atoms in chemical compounds are held together by attractive electrostatic interactions known as chemical bonds. Ionic compounds contain positively and negatively charged ions in a ratio that results in an overall charge of zero. The ions are held together in a regular spatial arrangement by electrostatic forces. Most covalent compounds consist of molecules, groups of atoms in which one or more pairs of electrons are shared by at least two atoms to form a covalent bond. The atoms in molecules are held together by the electrostatic attraction between the positively charged nuclei of the bonded atoms and the negatively charged electrons shared by the nuclei. The molecular formula of a covalent compound gives the types and numbers of atoms present. Compounds that contain predominantly carbon and hydrogen are called organic compounds, whereas compounds that consist primarily of elements other than carbon and hydrogen are inorganic compounds. Diatomic molecules contain two atoms, and polyatomic molecules contain more than two. A structural formula indicates the composition and approximate structure and shape of a molecule. Single bonds, double bonds, and triple bonds are covalent bonds in which one, two, and three pairs of electrons, respectively, are shared between two bonded atoms. Atoms or groups of atoms that possess a net electrical charge are called ions; they can have either a positive charge (cations) or a negative charge (anions). Ions can consist of one atom (monatomic ions) or several (polyatomic ions). The charges on monatomic ions of most main group elements can be predicted from the location of the element in the periodic table. Ionic compounds usually form hard crystalline solids with high melting points. Covalent molecular compounds, in contrast, consist of discrete molecules held together by weak intermolecular forces and can be gases, liquids, or solids at room temperature and pressure. An empirical formula gives the relative numbers of atoms of the elements in a compound, reduced to the lowest whole numbers. The formula unit is the absolute grouping represented by the empirical formula of a compound, either ionic or covalent. Empirical formulas are particularly useful for describing the composition of ionic compounds, which do not contain readily identifiable molecules. Some ionic compounds occur as hydrates, which contain specific ratios of loosely bound water molecules called waters of hydration.
Land warfare is a complex domain that involves the application of military power on the ground to achieve political and strategic objectives. Modern military doctrine, such as that used by the U.S. Army and the Indian Army, categorizes these elements into Combat Power and the Principles of War. 1. The 8 Elements of Combat Power Combat power is the total means of destructive, constructive, and information capabilities that a military unit can apply. It is typically broken down into eight key elements: ElementDescriptionLeadershipThe "multiplier" of all other elements. It provides purpose, direction, and motivation to soldiers.InformationEnables commanders to make informed decisions and creates opportunities to achieve results.Mission CommandThe system used to integrate the other elements. It focuses on decentralized execution based on the commander's intent.Movement & ManeuverThe movement of forces to gain a positional advantage over the enemy to deliver lethal or non-lethal effects.IntelligenceThe understanding of the enemy, terrain, weather, and civil considerations.FiresThe use of weapon systems (artillery, mortars, air support) to create specific lethal or non-lethal effects.SustainmentThe logistics required to maintain operations, including ammunition, fuel, food, and medical support.ProtectionThe preservation of the force so that the commander can apply maximum combat power.2. The Principles of War These are the enduring "rules of thumb" that guide how land forces are employed strategically and tactically: Objective: Direct every operation toward a clearly defined and attainable goal. Offensive: Seize, retain, and exploit the initiative. You cannot win by defending alone. Mass: Concentrate the effects of combat power at the most advantageous place and time. Economy of Force: Allocate the minimum essential combat power to secondary efforts so you can "mass" elsewhere. Maneuver: Place the enemy in a position of disadvantage through flexible movement. Unity of Command: Ensure all forces operate under a single responsible commander toward a common objective. Security: Prevent the enemy from gaining an unexpected advantage. Surprise: Strike the enemy at a time, place, or in a manner for which they are unprepared. Simplicity: Prepare clear, uncomplicated plans to minimize confusion in the "fog of war." 3. The Modern Legal Framework Land warfare is also governed by the Law of Land Warfare (International Humanitarian Law), which rests on four pillars: Military Necessity: Actions must be necessary to achieve a legitimate military goal. Distinction: Forces must distinguish between combatants and non-combatants (civilians). Proportionality: The anticipated harm to civilians must not be excessive in relation to the concrete military advantage gained. Unnecessary Suffering: Weapons and methods must not cause gratuitous or superfluous injury. Note: Contemporary land warfare is increasingly "Multi-Domain," meaning land forces must now integrate with cyber, space, and electronic warfare to be effective. , While land warfare uses many tools, the two primary "philosophies" of how to win a war are Attrition and Maneuver. Most modern conflicts are a spectrum of both, but understanding the pure form of each helps explain military strategy. 1. Attrition Warfare: The "Sledgehammer" Attrition warfare is a strategy where one side attempts to win by wearing down the enemy to the point of collapse through continuous losses in personnel, equipment, and supplies. Core Logic: "I have more than you." It assumes that if you can destroy the enemy’s resources faster than they can replace them, you will eventually win. Focus: Firepower and mass. Success is measured by "body counts," equipment destroyed, and the steady seizing of terrain. Command Style: Usually centralized and methodical. It requires strict synchronization of massive resources (artillery, logistics, manpower). Historical Example: The Battle of Verdun (WWI). German Chief of Staff Erich von Falkenhayn famously stated his goal was to "bleed France white" by forcing them to defend a position they could not afford to lose, regardless of the cost in lives. 2. Maneuver Warfare: The "Scalpel" Maneuver warfare seeks to shatter the enemy’s moral and physical cohesion—their ability to act as a unified force—rather than simply destroying every soldier. Core Logic: "I am faster and more unpredictable than you." It aims to create a state of chaos where the enemy's leadership can no longer make effective decisions. Focus: Speed, surprise, and dislocation (forcing the enemy to be in the wrong place at the wrong time). The OODA Loop: Developed by Col. John Boyd, this is the heart of maneuver theory. It stands for Observe, Orient, Decide, Act. The goal is to cycle through these steps faster than the enemy, essentially "getting inside" their decision-making process until they collapse from confusion. Historical Example: The 1940 Invasion of France (Blitzkrieg). Instead of fighting a line-by-line battle of attrition, German forces used speed and concentrated armor to bypass strongpoints, cut communication lines, and cause a total systemic collapse of the French military in weeks. 3. Key Differences at a Glance FeatureAttrition WarfareManeuver WarfareObjectivePhysical destruction of the enemy army.Functional/Psychological collapse of the enemy.TargetThe enemy's strength (mass).The enemy's weakness (vulnerability).Primary ToolMassed Firepower.Movement and Tempo.Command"Command Push" (Top-down, rigid)."Recon Pull" (Decentralized, flexible).Success MetricExchange ratios (Kill counts).Disruption and loss of enemy control.4. The Modern Synthesis: "Schwerpunkt" In practice, no army is purely "maneuver" or "attrition." To maneuver successfully, you often need a period of attrition to punch a hole in the enemy's line. A critical concept here is the Schwerpunkt (Center of Gravity/Focus of Effort). A commander identifies the single most important place to strike and concentrates all available "elements of power" there. While the rest of the front might look like attrition, the Schwerpunkt is where the maneuver happens to achieve a breakthrough. Modern Reality: In high-intensity conflicts today (like the war in Ukraine), we see a "return to attrition" because modern sensors (drones, satellites) make it very difficult to achieve the surprise needed for pure maneuver warfare. When you can see everything, it's hard to be "unexpected."