POE FINAL SEMESTER 2

Size: px
Start display at page:

Download "POE FINAL SEMESTER 2"

Transcription

1 POE FINAL SEMESTER 2 MULTIPLE CHOICE 1. What is the purpose of the RobotC Debug window? a. It allows the user to Start and Stop their program. b. It allows the user to step through their program one line at a time. c. It must be open to use any of the other Debug windows (Sensors, Motors, etc.) d. All of the above e. None of the above 2. A Light Sensor is a sensor a. Analog b. Digital 3. A Potentiometer is a sensor. a. Analog b. Digital 4. A Quad Encoder (Shaft Encoder) is a sensor. a. Analog b. Digital 5. The Ultrasound (SONAR) sensor is. a. Analog b. Digital 6. Bumper switches and limit switches are inputs. a. Analog b. Digital 7. What is the purpose of the SensorValue [sensorname] command? a. It retrieves the value of sensorname b. It sets the value of sensorname c. Both of the above d. None of the above 8. What is the purpose of the RobotC Motors and Sensors Setup? a. It is a lookup chart that tells you where to plug in your motors and sensors and what to call them. b. It is a place where you can read all of the values of the sensors in one place c. It is a central place to configure and name all of the motors and sensors that are connected to the Cortex. d. None of the above.

2 9. What programming language is this written in? a. Standard RobotC b. RobotC Natural Language c. Pseudocode d. None of the above 10. What will this program cause the robot to do? a. Spin in left circles until the sonar sensor detects an object within 10 cm AND the touch sensor is pressed b. The robot will move forward if the sonar sensor detects an object within 10 cm OR if the touch sensor is pressed. c. The robot will move forward while the touch sensor is not pressed. If an object is detected within 10 cm by the sonar sensor, the robot will stop and turn left before moving again. d. The program will not run on the robot. 11. The Line Follower (Line Tracking Sensor) is a sensor. a. Analog b. Digital 12. What range of values does the Line Follower provide? a. 0 to 1023 b. 0 to 4095 c to 127 d. 0 to Why would a VEX robotic vehicle spin in place if you gave them the same motor power level?

3 a. The motors are designed to mirror each other on opposite sides of the vehicle s drivetrain b. Motor inconsistency is a design flaw in VEX robotic equipment. c. The Robot Vehicle has been built incorrectly. 14. How many analog ports are on a Cortex controller? a. 6 b. 8 c. 10 d How many Motor output ports are on a Cortex controller? a. 6 b. 8 c. 10 d How do you change the polarity of the Quad Shaft Encoder? a. You can t. b. Use the Motors and Sensors setup. c. Use the SensorValue [ ] command. d. Swap where the wires are plugged in. 17. One full revolution of the Quad Shaft Encoder is equal to how many ticks? a. 90 b. 180 c. 360 d How does the Ultrasonic Rangefinder (SONAR sensor) measure distance? a. It sends out pulses of sound, listens for the echo signal strength, and calculates the distance. b. It requires special equipment to be attached to the Cortex. c. It sends out pulses of sound, listens for the echo, and the Cortex uses the amount of time it takes for the sound to bounce back to calculate the distance. d. What? That s what that s for? 19. The Ultrasonic Rangefinder (SONAR sensor) can give distances in: a. Millimeters b. Centimeters c. Inches d. All of the above. 20. The Potentiometer returns values from: a. 0 to 100

4 b. 0 to 1023 c. 0 to 4095 d to The bumper switch and limit switch give values of 1 when pressed and 0 when released. a. True b. False 22. Is the speed of a motor affected by battery power? a. Yes b. No 23. Does the Potentiometer have a full range of motion? a. Yes b. No 24. The Quad Shaft Encoder can only count positive directions of rotation. a. True b. False 25. What are the command(s) to control the VEX Flashlight? a. FlashlightOn ( ), FlashlightOff ( ) b. turnflashlighton ( ), turnflashlightoff ( ) c. FLOn ( ), FLOff ( ) d. None of the above 26. What command(s) control the VEX LED? a. turnledon ( ), turnledoff ( ) b. switchledoff ( ), switchledon ( ) c. LEDOn ( ), LEDOff ( ) 27. How should a VEX LED be configured in the Motors and Sensors Setup a. Digital Input b. VEX LED c. Digital Output d. 2-wire 269 motor 28. Which of the following is NOT a Natural Language command? a. startmotor() b. stopmotor() c. setservo() d. stopservo() 29. Which of these commands waits for the potentiometer to fall below a given threshold? a. untilpotentiometerlessthan()

5 b. untilpotentiometergreaterthan ( ) c. untilsensorlessthan ( ) d. untilsensorgreaterthan ( ) 30. What will the following program cause your robot to do? a. the code will turn on the right motor at half speed for 2 seconds and then stop. b. the code will turn on the right motor at half speed for 2 milliseconds and then stop. c. the code will cause the robot to move forward at half speed for 2 rotations and then stop. d. the code will turn on the right motor at full speed in the opposite direction for 2 seconds and then stop. 31. Which of the following commands will allow a user to move a servo motor? a. setservo(servoport, position); b. setservo (position, servoport); c. startservo(servoport, distance); d. setservo(servoport, distance); 32. In which Natural Language Category will a user find the commands for the LEDs and the VEX Flashlight? a. Movement b. Control Structures c. Special d. Behaviors 33. Which command waits for a bumper or limit switch to be pressed and released? a. untiltouch b. untilrelease c. untilbump d. untilpress 34. Which command waits for a bumper or limit switch to be pressed? a. untiltouch b. untilrelease c. untilbump d. untilpress

6 35. When a light is shined on a light sensor, does the sensor value increase or decrease? a. Increase b. Decrease c. No effect on the sensor 36. As soon as you start up RobotC for the first time, the Natural Language is enabled. a. True, it s the default b. False, you must set it first 37. Which of these is more precise? a. untilencodercounts() b. untilencoderrotations() 38. How does a user access the value of a sensor in RobotC? a. SensorValue() b. Sensor() c. Value() 39. How does a user reset a timer in RobotC? a. Time1(); b. ResetTimer(); c. ClearTimer(); 40. Where can a user see all of the values of the sensors, timers, and global variables? a. Sensor Configurator b. Motors and Sensors Setup c. Debug windows d. Task main 41. In lines 38, 41, 42, and 49, what is motorcount? a. Function b. Variable c. Task d. Condition Statement 42. In the RobotC code below, how many times will the program run?

7 a. 9 b. 10 c. 11 d. Cannot be determined 43. In the program below, what are Sub1, Sub2, and Sub3? a. Functions b. Global Variables c. Local Variables d. Sensor Values 44. What tool can you use to control how long a while loop will run? a. Timers b. the wait1msec ( ); command c. the VEX Stopwatch sensor d. Potentiometer 45. Which of these is not part of the Debug window? a. Start b. Step c. Continuous d. Wait 46. Which of these is a way to loop a program? a. While() b. Repeat until () c. Void () d. If else() 47. Which of these is a way to create a single line comment in RobotC? a. //

8 b. * c. 48. Why is it important to comment out code? a. Comments are not important. b. They allow the programmer to make notes in the code. c. They help others to understand the code. d. Both B and C 49. How does a user create a multi-line comment in RobotC? a. /* */ b. c. ** ** d. // // 50. What is happening in the code below? a. The robot checks the condition of the bumper switch. If the value is 1, the if statement runs. If the value is 0, the else statement runs. The program ends immediately after that. b. The robot checks the condition of the bumper switch. If the value is 1, the if statement runs. If the value is 0, the else statement runs. The program loops forever. c. The robot checks the condition of the bumper switch. If the value is 0, the if statement runs. If the value is 1, the else statement runs. The program then loops forever. 51. In RobotC programming, all simple statements end with a(n): a. Colon b. Semi-colon c. Asterisk d. Single quote 52. Which of the following describes task main ( ). a. It defines the main task of the robot. b. Every RobotC program must contain one task main. c. Both A and B d. None of the above

9 53. What is a threshold in robot programming? a. A minimal motor power level before the motor will turn. b. A safe starting zone for your robot so it won t fall off a table. c. A value that separates many values into two categories so that the robot can make a decision. d. None of the above 54. All RobotC programs must contain what? a. Task main () b. Void () c. Semi-colons after statements d. Both A and C 55. Which one uses a liquid for fluid power? a. hydralauics b. pneumatics A pneumatic system is producing 80 lb/in. 2 of gauge pressure. A cylinder is needed to press an adhesive label onto a product. It has been determined that 10 lb of force is optimal to complete this task. 56. What is the required area of the cylinder? 57. What is the diameter of the cylinder? The gauge pressure of a pneumatic cylinder reads 30 lb/in. 2 when the volume is 25 in. 3. The cylinder is compressed until the gauge reads 60 lb/in What is the initial absolute pressure of the cylinder? 59. What is the new volume of the cylinder after the change in pressure? A flow meter is attached in a hydraulic line that measures 17 gal/min. The line has an inside diameter of 2.25 in. 60. What is the flow rate in the line measured in (in 3 /min)? 61. What is the flow velocity of the hydraulic fluid?

10 62. In the system shown below. The input force is 25lbs and the output force is 325lbs. What would the diameter of the output cylinder have to be if the input cylinder has a diameter of 1.75in. Match the following components of a hydraulic system 63. Valve 64. Cylinder 65. Resevoir A B C D 66. This is the average of a data set. a. mean b. median c. mode d. standard deviation 67. This is the most common result of a data set. a. mean b. median c. mode d. standard deviation 68. This is the middle value of a data set. a. mean b. median c. mode d. standard deviation 69. This show the amount of spread in a data set. a. mean b. median c. mode d. standard deviation

11 70. What is the median value for the following numbers? 16, 18, 15, 12, 22, 16, 25 a. 25 b. 12 c d What is the mode for the following numbers? 16, 18, 15, 12, 22, 16, 25 a. 25 b. 12 c d What is the mean for the following numbers? 16, 18, 15, 12, 22, 16, 25 a. 25 b. 12 c d This term describes the straight-line distance between where an object starts and where it ends up. a. displacement b. velocity c. speed d. acceleration 74. This term describes the rate that an object travels by comparing the displacement the object experiences to the time period. a. displacement b. velocity c. speed d. acceleration 75. This term describes the rate that an object travels by comparing the distance an object moves to the time period. a. displacement b. velocity c. speed d. acceleration

12 76. This term describes the change in rate of motion of an object (a speeding up or slowing down of an object). a. displacement b. velocity c. speed d. acceleration 77. Because our projectile devices will launch and land on the same horizontal plane we can assume: a. Initial vertical velocity is equal to zero b. Vertical displacement is equal to zero. c. Acceleration is equal to velocity d. Horizontal displacement is equal to zero 78. The launch angle that will produce the greatest range is: a. Theta Ѳ b. 45 degrees c. 60 degrees d. Determined by the sine of the initial velocity 79. Velocity is considered a vector quantity because it has both a: a. Displacement and a magnitude b. Magnitude and a direction c. Scalar value and gravitational value d. Magnitude and a latitude 80. If the horizontal motion of a projectile is constant, what can be said about the horizontal acceleration of a projectile? a. It is equal to zero b. It is caused by gravity c. It is slowing down d. It is equal to the vertical acceleration 81. What is the cause of the vertical acceleration of a projectile? a. Horizontal motion b. Velocity c. Time d. Gravity 82. The sine (SIN) of an angle compares the length of: a. The hypotenuse to the angle b. The adjacent side to the angle c. The adjacent side to the hypotenuse d. The opposite side to the hypotenuse

13 True or False: 83. When a car rounds a corner at a constant speed, its velocity is also constant. 84. The change in velocity with respect to time is called acceleration. 85. The SI unit of acceleration is meters per second (m/s). 86. Displacement is a scalar quantity. 87. A vector quantity has magnitude and direction. 88. Velocity is a vector quantity. 89. The rate at which velocity changes with respect to time is called acceleration. 90. A ball is thrown straight up. At its highest point, its velocity and acceleration are zero. 91. As a ball falls freely, the distance it falls each second is the same. 92. The acceleration of any moving object is always 9.80 m/s balls are thrown from the same height, one upward and one downward. If the ball thrown upward has the same magnitude of velocity as the ball that is thrown downwards, the balls will strike the ground with the same velocity. 94. When an object has a positive acceleration along a horizontal path, the distance it travels each second increases. 95. If a ball falls freely for 1.0 seconds from rest, the displacement of the ball during that 1.0 second will be 9.8 m. 96. Air resistance will increase the acceleration of a ball when dropped from rest. 97. A positive or negative sign given to a velocity or displacement indicates that an object is traveling on an upward or downward direction. 98. When a ball is thrown up into the air and returns to your hand from the point that it left, the displacement of the ball is zero. 99. Neglecting air resistance, a projectile fired horizontally will accelerate vertically at a slower rate than if it were dropped from rest Neglecting air resistance, a projectile will travel horizontally with a constant velocity A projectile will reach maximum horizontal displacement when fired at an angle of 40 o. Multiple Choice: 102. Speed is: a. the distance traveled by an object in a certain period of time. b. the displacement of an object in a certain period of time. c. the distance traveled by an object in a certain period of time in a certain direction. d. all of the above When you look at the speedometer of a moving car you see the car s: a. average velocity.

14 b. instantaneous acceleration. c. instantaneous speed. d. average speed For an object in free fall (neglecting air resistance), the acceleration of an object the mass of the object. a. is directly proportional to b. is inversely proportional to c. does not depend upon 105. For an object traveling away from the surface of the earth (where the velocity is considered to be negative), the acceleration is considered to be. a m/s 2 b m/s 2 c m/s d m/s 106. For every second an object falls toward the surface of the earth (where the velocity is considered to be positive) while in free fall, the velocity. a. increases 9.80 m b. decreases 9.80 m c. increases 9.80 m/s d. decreases 9.80 m/s 107. When a ball is thrown upward with a certain velocity, the magnitude of the velocity of the ball when it returns to your hand will be the magnitude of the velocity of the ball when it left your hand. a. greater than b. less than c. the same as 108. A projectile, fired at a 60 o angle, will have the same horizontal displacement as a projectile fired at an angle of: a. 15 o b. 30 o c. 45 o d. 75 o 109. A massive ball is dropped from a moving vehicle that is traveling in a straight line at a constant velocity. Neglecting air resistance, the massive ball will strike the ground: a. behind the vehicle b. in front of the vehicle c. beside the vehicle 110. Where will the ball strike the ground if, just after it is dropped the vehicle accelerates? a. behind the vehicle b. in front of the vehicle c. beside the vehicle 111. One possible unit of speed is: a. m/s b. s/m c. m d. m/s A runner traveled 15 km east and then backtracked 11 km west before stopping. The displacement of the runner from the original position is: a. 26 km east b. 4 km east c. 4 km west d. 26 km west 113. A negative slope of a straight line on a graph of displacement time for a moving object indicates:

15 a. the object is speeding up and moving backward. b. the object is moving backward and the velocity is constant during that period of time. c. the object is moving forward and the velocity is constant during that period of time. d. the object is slowing down and moving backward The area under a line on a velocity vs. time graph for a moving object gives a value of: a. the rise over the run. b. the displacement of the object for a given period of time. c. the average acceleration of the moving object. d. the instantaneous velocity of the object The slope of a tangent line at a point on a displacement time curve for a moving object curve can give a value of: a. the instantaneous velocity at that time. b. the average velocity. c. the instantaneous acceleration at that time. d. the average acceleration.

Unit 1: Mechanical Equilibrium

Unit 1: Mechanical Equilibrium Unit 1: Mechanical Equilibrium Chapter: Two Mechanical Equilibrium Big Idea / Key Concepts Student Outcomes 2.1: Force 2.2: Mechanical Equilibrium 2.3: Support Force 2.4: Equilibrium for Moving Objects

More information

AP Physics C: Mechanics Ch. 2 Motion. SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question.

AP Physics C: Mechanics Ch. 2 Motion. SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Name: Period: Date: AP Physics C: Mechanics Ch. Motion SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. ) Car A is traveling at twice the speed of car

More information

Formative Assessment: Uniform Acceleration

Formative Assessment: Uniform Acceleration Formative Assessment: Uniform Acceleration Name 1) A truck on a straight road starts from rest and accelerates at 3.0 m/s 2 until it reaches a speed of 24 m/s. Then the truck travels for 20 s at constant

More information

A B C D. Unit 6 (1-Dimensional Motion) Practice Assessment

A B C D. Unit 6 (1-Dimensional Motion) Practice Assessment Unit 6 (1-Dimensional Motion) Practice Assessment Choose the best answer to the following questions. Indicate the confidence in your answer by writing C (Confident), S (So-so), or G (Guessed) next to the

More information

Comment: Unlike distance, displacement takes into consideration the direction of motion from the point of origin (where the object starts to move).

Comment: Unlike distance, displacement takes into consideration the direction of motion from the point of origin (where the object starts to move). Chapter 3 Kinematics (A) Distance Vs Displacement 1. Compare distance and displacement in terms of: (a) definition Distance is the total length of travel, irrespective of direction. Displacement is the

More information

Particle Motion Notes Position When an object moves, its position is a function of time. For its position function, we will denote the variable s(t).

Particle Motion Notes Position When an object moves, its position is a function of time. For its position function, we will denote the variable s(t). Particle Motion Notes Position When an object moves, its position is a function of time. For its position function, we will denote the variable s(t). Example 1: For s( t) t t 3, show its position on the

More information

Pre-Test for One-Dimensional Motion

Pre-Test for One-Dimensional Motion Pre-Test for One-Dimensional Motion 1.) Let's say that during a thunderstorm you measure the time lag between the flash and the thunderclap to be 3 seconds. If the speed of sound is about 340 m/s, which

More information

Chapter 2. Kinematic Equations. Problem 1. Kinematic Equations, specific. Motion in One Dimension

Chapter 2. Kinematic Equations. Problem 1. Kinematic Equations, specific. Motion in One Dimension Kinematic Equations Chapter Motion in One Dimension The kinematic equations may be used to solve any problem involving one-dimensional motion with a constant You may need to use two of the equations to

More information

Practice Test What two units of measurement are necessary for describing speed?

Practice Test What two units of measurement are necessary for describing speed? Practice Test 1 1. What two units of measurement are necessary for describing speed? 2. What kind of speed is registered by an automobile? 3. What is the average speed in kilometers per hour for a horse

More information

Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters 2-3

Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters 2-3 A.P. Physics B Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters - 3 * In studying for your test, make sure to study this review sheet along with your quizzes and homework assignments.

More information

SUMMARY. ) t, UNIT. Constant velocity represents uniform motion. Acceleration causes a change in velocity.

SUMMARY. ) t, UNIT. Constant velocity represents uniform motion. Acceleration causes a change in velocity. UNIT A SUMMARY KEY CONCEPTS CHAPTER SUMMARY 1 Constant velocity represents uniform motion. Distance and Displacement Position-time graphs Average speed and average velocity Positive, negative, and zero

More information

Lecture Notes Kinematics Recap 2.4 Acceleration

Lecture Notes Kinematics Recap 2.4 Acceleration Lecture Notes 2.5-2.9 Kinematics Recap 2.4 Acceleration Acceleration is the rate at which velocity changes. The SI unit for acceleration is m/s 2 Acceleration is a vector, and thus has both a magnitude

More information

Chapter 2: 2-Dimensional Motion

Chapter 2: 2-Dimensional Motion Chapter 2: 2-Dimensional Motion Chapter 2: 2-Dimensional Motion Chapter 2: 2-Dimensional Motion 2.1 Position 2.2 Distance and Displacement 2.3 Average Speed and Average Velocity 2.4 Instant Speed and Instant

More information

Chapter 2. Motion in One Dimension

Chapter 2. Motion in One Dimension Chapter 2 Motion in One Dimension Types of Motion Translational An example is a car traveling on a highway. Rotational An example is the Earth s spin on its axis. Vibrational An example is the back-and-forth

More information

An object moves back and forth, as shown in the position-time graph. At which points is the velocity positive?

An object moves back and forth, as shown in the position-time graph. At which points is the velocity positive? 1 The slope of the tangent on a position-time graph equals the instantaneous velocity 2 The area under the curve on a velocity-time graph equals the: displacement from the original position to its position

More information

MOTION ALONG A STRAIGHT LINE

MOTION ALONG A STRAIGHT LINE MOTION ALONG A STRAIGHT LINE 2 21 IDENTIFY: The average velocity is Let be upward EXECUTE: (a) EVALUATE: For the first 115 s of the flight, When the velocity isn t constant the average velocity depends

More information

Exam 2--PHYS 101--Fall 2014

Exam 2--PHYS 101--Fall 2014 Class: Date: Exam 2--PHYS 101--Fall 2014 Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Consider these vectors. What is A-B? a. a c. c b. b d. d 2. Consider

More information

Unit 1 Parent Guide: Kinematics

Unit 1 Parent Guide: Kinematics Unit 1 Parent Guide: Kinematics Kinematics is the study of the motion of objects. Scientists can represent this information in the following ways: written and verbal descriptions, mathematically (with

More information

RELEASED. Go to next page. 2. The graph shows the acceleration of a car over time.

RELEASED. Go to next page. 2. The graph shows the acceleration of a car over time. 1. n object is launched across a room. How can a student determine the average horizontal velocity of the object using a meter stick and a calculator? The student can calculate the object s initial potential

More information

Test Booklet. Subject: SC, Grade: HS 2008 Grade High School Physics. Student name:

Test Booklet. Subject: SC, Grade: HS 2008 Grade High School Physics. Student name: Test ooklet Subject: S, Grade: HS 2008 Grade High School Physics Student name: uthor: North arolina istrict: North arolina Released Tests Printed: Monday July 09, 2012 1 n object is launched across a room.

More information

1. (P2.1A) The picture below shows a ball rolling along a table at 1 second time intervals. What is the object s average velocity after 6 seconds?

1. (P2.1A) The picture below shows a ball rolling along a table at 1 second time intervals. What is the object s average velocity after 6 seconds? PHYSICS FINAL EXAM REVIEW FIRST SEMESTER (01/2017) UNIT 1 Motion P2.1 A Calculate the average speed of an object using the change of position and elapsed time. P2.1B Represent the velocities for linear

More information

1. A sphere with a radius of 1.7 cm has a volume of: A) m 3 B) m 3 C) m 3 D) 0.11 m 3 E) 21 m 3

1. A sphere with a radius of 1.7 cm has a volume of: A) m 3 B) m 3 C) m 3 D) 0.11 m 3 E) 21 m 3 1. A sphere with a radius of 1.7 cm has a volume of: A) 2.1 10 5 m 3 B) 9.1 10 4 m 3 C) 3.6 10 3 m 3 D) 0.11 m 3 E) 21 m 3 2. A 25-N crate slides down a frictionless incline that is 25 above the horizontal.

More information

1) If the acceleration of an object is negative, the object must be slowing down. A) True B) False Answer: B Var: 1

1) If the acceleration of an object is negative, the object must be slowing down. A) True B) False Answer: B Var: 1 University Physics, 13e (Young/Freedman) Chapter 2 Motion Along a Straight Line 2.1 Conceptual Questions 1) If the acceleration of an object is negative, the object must be slowing down. A) True B) False

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) If the acceleration of an object is negative, the object must be slowing down. A) True B) False

More information

Physics Pre-comp diagnostic Answers

Physics Pre-comp diagnostic Answers Name Element Physics Pre-comp diagnostic Answers Grade 8 2017-2018 Instructions: THIS TEST IS NOT FOR A GRADE. It is to help you determine what you need to study for the precomps. Just do your best. Put

More information

Study Guide Solutions

Study Guide Solutions Study Guide Solutions Table of Contents Chapter 1 A Physics Toolkit... 3 Vocabulary Review... 3 Section 1.1: Mathematics and Physics... 3 Section 1.2: Measurement... 3 Section 1.3: Graphing Data... 4 Chapter

More information

Displacement, Velocity, and Acceleration AP style

Displacement, Velocity, and Acceleration AP style Displacement, Velocity, and Acceleration AP style Linear Motion Position- the location of an object relative to a reference point. IF the position is one-dimension only, we often use the letter x to represent

More information

F13--HPhys--Q4 Practice POST

F13--HPhys--Q4 Practice POST Name: Class: Date: ID: A F13--HPhys--Q4 Practice POST Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Which of the following is not an example of projectile

More information

Chapter 3. Motion in One Dimension

Chapter 3. Motion in One Dimension Chapter 3 Motion in One Dimension Outline 3.1 Position, Velocity and Speed 3.2 Instantaneous Velocity and Speed 3.3 Acceleration 3.4 Motion Diagrams 3.5 One-Dimensional Motion with Constant Acceleration

More information

2008 FXA. DISPLACEMENT (s) / metre (m) 1. Candidates should be able to : The distance moved by a body in a specified direction.

2008 FXA. DISPLACEMENT (s) / metre (m) 1. Candidates should be able to : The distance moved by a body in a specified direction. DISPLACEMENT (s) / metre (m) 1 Candidates should be able to : Define displacement, instantaneous speed, average speed, velocity and acceleration. Select and use the relationships : average speed = distance

More information

5. Use the graph below to determine the displacement of the object at the end of the first seven seconds.

5. Use the graph below to determine the displacement of the object at the end of the first seven seconds. Name: Hour: 1. The slope of the tangent on a position-time graph equals the: Sem 1 Exam Review Advanced Physics 2015-2016 2. The area under the curve on a velocity-time graph equals the: 3. The graph below

More information

INTRODUCTION AND KINEMATICS. Physics Unit 1 Chapters 1-3

INTRODUCTION AND KINEMATICS. Physics Unit 1 Chapters 1-3 INTRODUCTION AND KINEMATICS Physics Unit 1 Chapters 1-3 This Slideshow was developed to accompany the textbook OpenStax Physics Available for free at https://openstaxcollege.org/textbooks/college-physics

More information

Distance vs. Displacement, Speed vs. Velocity, Acceleration, Free-fall, Average vs. Instantaneous quantities, Motion diagrams, Motion graphs,

Distance vs. Displacement, Speed vs. Velocity, Acceleration, Free-fall, Average vs. Instantaneous quantities, Motion diagrams, Motion graphs, Distance vs. Displacement, Speed vs. Velocity, Acceleration, Free-fall, Average vs. Instantaneous quantities, Motion diagrams, Motion graphs, Kinematic formulas. A Distance Tells how far an object is from

More information

Trial 1 Trial 2 Trial 3. From your results, how many seconds would it take the car to travel 1.50 meters? (3 significant digits)

Trial 1 Trial 2 Trial 3. From your results, how many seconds would it take the car to travel 1.50 meters? (3 significant digits) SPEED & ACCELERATION PART I: A DISTANCE-TIME STUDY AT CONSTANT SPEED Speed is composed of two fundamental concepts, namely, distance and time. In this part of the experiment you will take measurements

More information

Chapter 2 One-Dimensional Kinematics. Copyright 2010 Pearson Education, Inc.

Chapter 2 One-Dimensional Kinematics. Copyright 2010 Pearson Education, Inc. Chapter 2 One-Dimensional Kinematics Units of Chapter 2 Position, Distance, and Displacement Average Speed and Velocity Instantaneous Velocity Acceleration Motion with Constant Acceleration Applications

More information

Partner s Name: EXPERIMENT MOTION PLOTS & FREE FALL ACCELERATION

Partner s Name: EXPERIMENT MOTION PLOTS & FREE FALL ACCELERATION Name: Partner s Name: EXPERIMENT 500-2 MOTION PLOTS & FREE FALL ACCELERATION APPARATUS Track and cart, pole and crossbar, large ball, motion detector, LabPro interface. Software: Logger Pro 3.4 INTRODUCTION

More information

Lecture 2. 1D motion with Constant Acceleration. Vertical Motion.

Lecture 2. 1D motion with Constant Acceleration. Vertical Motion. Lecture 2 1D motion with Constant Acceleration. Vertical Motion. Types of motion Trajectory is the line drawn to track the position of an abject in coordinates space (no time axis). y 1D motion: Trajectory

More information

Motion Chapter 3, Section 1: Distance, Displacement, Speed, Velocity

Motion Chapter 3, Section 1: Distance, Displacement, Speed, Velocity 3 Motion Chapter 3, Section 1: Distance, Displacement, Speed, Velocity Distance An important part of describing the motion of an object is to describe how far it has moved, which is distance. The SI unit

More information

3.4 Solutions.notebook March 24, Horizontal Tangents

3.4 Solutions.notebook March 24, Horizontal Tangents Note Fix From 3.3 Horizontal Tangents Just for fun, sketch y = sin x and then sketch its derivative! What do you notice? More on this later 3.4 Velocity and Other Rates of Change A typical graph of the

More information

PHY 111L Activity 2 Introduction to Kinematics

PHY 111L Activity 2 Introduction to Kinematics PHY 111L Activity 2 Introduction to Kinematics Name: Section: ID #: Date: Lab Partners: TA initials: Objectives 1. Introduce the relationship between position, velocity, and acceleration 2. Investigate

More information

Motion Along a Straight Line

Motion Along a Straight Line PHYS 101 Previous Exam Problems CHAPTER Motion Along a Straight Line Position & displacement Average & instantaneous velocity Average & instantaneous acceleration Constant acceleration Free fall Graphical

More information

General Physics (PHY 170) Chap 2. Acceleration motion with constant acceleration. Tuesday, January 15, 13

General Physics (PHY 170) Chap 2. Acceleration motion with constant acceleration. Tuesday, January 15, 13 General Physics (PHY 170) Chap 2 Acceleration motion with constant acceleration 1 Average Acceleration Changing velocity (non-uniform) means an acceleration is present Average acceleration is the rate

More information

If we plot the position of a moving object at increasing time intervals, we get a position time graph. This is sometimes called a distance time graph.

If we plot the position of a moving object at increasing time intervals, we get a position time graph. This is sometimes called a distance time graph. Physics Lecture #2: Position Time Graphs If we plot the position of a moving object at increasing time intervals, we get a position time graph. This is sometimes called a distance time graph. Suppose a

More information

Honors Physics Semester 2 Final Exam Review Answers

Honors Physics Semester 2 Final Exam Review Answers Honors Physics Semester 2 Final Exam Review Answers 1600 kg 800 kg 9 m/s A truck with mass 1600 kg collides with a car with mass 800 kg at rest. They stick together and continue to move to the right. 1.

More information

Twentieth SLAPT Physics Contest Southern Illinois University Edwardsville April 30, Mechanics Test

Twentieth SLAPT Physics Contest Southern Illinois University Edwardsville April 30, Mechanics Test Twentieth SLAPT Physics Contest Southern Illinois University Edwardsville April 30, 2005 Mechanics Test Please answer the following questions on the supplied answer sheet. You may write on this test booklet,

More information

5 Projectile Motion. Projectile motion can be described by the horizontal and vertical components of motion.

5 Projectile Motion. Projectile motion can be described by the horizontal and vertical components of motion. Projectile motion can be described by the horizontal and vertical components of motion. In the previous chapter we studied simple straight-line motion linear motion. Now we extend these ideas to nonlinear

More information

Full file at

Full file at Section 3-1 Constructing Complex Motions from Simple Motion *1. In Figure 3-1, the motion of a spinning wheel (W) that itself revolves in a circle is shown. Which of the following would not be represented

More information

Review Session 1. Page 1

Review Session 1. Page 1 Review Session 1 1. Which combination of fundamental units can be used to express the amount of work done on an object? 2. The height of a typical kitchen table is approximately A) 10-2 m B) 10 0 m C)

More information

Fall 2008 RED Barcode Here Physics 105, sections 1 and 2 Please write your CID Colton

Fall 2008 RED Barcode Here Physics 105, sections 1 and 2 Please write your CID Colton Fall 008 RED Barcode Here Physics 105, sections 1 and Exam 1 Please write your CID Colton -3669 3 hour time limit. One 3 5 handwritten note card permitted (both sides). Calculators permitted. No books.

More information

4.1 Motion Is Relative. An object is moving if its position relative to a fixed point is changing. You can describe the motion of an object by its

4.1 Motion Is Relative. An object is moving if its position relative to a fixed point is changing. You can describe the motion of an object by its 4.1 Motion Is Relative You can describe the motion of an object by its position, speed, direction, and acceleration. An object is moving if its position relative to a fixed point is changing. 4.1 Motion

More information

Displacement, Velocity & Acceleration

Displacement, Velocity & Acceleration Displacement, Velocity & Acceleration Honors/AP Physics Mr. Velazquez Rm. 254 1 Velocity vs. Speed Speed and velocity can both be defined as a change in position or displacement over time. However, speed

More information

James T. Shipman Jerry D. Wilson Charles A. Higgins, Jr. Omar Torres. Chapter 2 Motion Cengage Learning

James T. Shipman Jerry D. Wilson Charles A. Higgins, Jr. Omar Torres. Chapter 2 Motion Cengage Learning James T. Shipman Jerry D. Wilson Charles A. Higgins, Jr. Omar Torres Chapter 2 Motion Defining Motion Motion is a continuous change in position can be described by measuring the rate of change of position

More information

PHYS 101 Previous Exam Problems. Kinetic Energy and

PHYS 101 Previous Exam Problems. Kinetic Energy and PHYS 101 Previous Exam Problems CHAPTER 7 Kinetic Energy and Work Kinetic energy Work Work-energy theorem Gravitational work Work of spring forces Power 1. A single force acts on a 5.0-kg object in such

More information

UNIT I: MECHANICS Chapter 5: Projectile Motion

UNIT I: MECHANICS Chapter 5: Projectile Motion IMPORTANT TERMS: Component Projectile Resolution Resultant Satellite Scalar quantity Vector Vector quantity UNIT I: MECHANICS Chapter 5: Projectile Motion I. Vector and Scalar Quantities (5-1) A. Vector

More information

Chapter 2: 1D Kinematics

Chapter 2: 1D Kinematics Chapter 2: 1D Kinematics Description of motion involves the relationship between position, displacement, velocity, and acceleration. A fundamental goal of 1D kinematics is to determine x(t) if given initial

More information

Worksheet At t = 0 a car has a speed of 30 m/s. At t = 6 s, its speed is 14 m/s. What is its average acceleration during this time interval?

Worksheet At t = 0 a car has a speed of 30 m/s. At t = 6 s, its speed is 14 m/s. What is its average acceleration during this time interval? Worksheet 9 1. A poorly tuned Geo Metro (really old cheap, slow, car) can accelerate from rest to a speed of 28 m/s in 20 s. a) What is the average acceleration of the car? b) What distance does it travel

More information

161 Spring 2018 Exam 1 Version A Name: No cell phones or electronic devices (except scientific calculators). = 4 3 = = =

161 Spring 2018 Exam 1 Version A Name: No cell phones or electronic devices (except scientific calculators). = 4 3 = = = 161 Spring 2018 Exam 1 Version A Name: No cell phones or electronic devices (except scientific calculators). = 4 3 = = = = 4 = h h = = ± 4 2 = 2 = = 2 1609 m = 1 mi 12 in = 1 ft 60 s = 1 min 1000 g = 1

More information

acceleration versus time. LO Determine a particle s change in position by graphical integration on a graph of velocity versus time.

acceleration versus time. LO Determine a particle s change in position by graphical integration on a graph of velocity versus time. Chapter: Chapter 2 Learning Objectives LO 2.1.0 Solve problems related to position, displacement, and average velocity to solve problems. LO 2.1.1 Identify that if all parts of an object move in the same

More information

Honors Physics Acceleration and Projectile Review Guide

Honors Physics Acceleration and Projectile Review Guide Honors Physics Acceleration and Projectile Review Guide Major Concepts 1 D Motion on the horizontal 1 D motion on the vertical Relationship between velocity and acceleration Difference between constant

More information

The graph shows how the resultant force on the car varies with displacement.

The graph shows how the resultant force on the car varies with displacement. 1 (a) A car is moving at constant velocity when the driver applies the brakes. The graph shows how the resultant force on the car varies with displacement. Resultant force 0 A B Displacement (i) State

More information

Summary of motion graphs Object is moving to the right (in positive direction) v = 0 a = 0

Summary of motion graphs Object is moving to the right (in positive direction) v = 0 a = 0 Summary of motion graphs Object is moving to the right (in positive direction) Object at rest (not moving) Position is constant v (m/s) a (m/s 2 ) v = 0 a = 0 Constant velocity Position increases at constant

More information

Lab 5: Projectile Motion

Lab 5: Projectile Motion Lab 5 Projectile Motion 47 Name Date Partners Lab 5: Projectile Motion OVERVIEW We learn in our study of kinematics that two-dimensional motion is a straightforward application of onedimensional motion.

More information

Motion of a Point. Figure 1 Dropped vehicle is rectilinear motion with constant acceleration. Figure 2 Time and distance to reach a speed of 6 m/sec

Motion of a Point. Figure 1 Dropped vehicle is rectilinear motion with constant acceleration. Figure 2 Time and distance to reach a speed of 6 m/sec Introduction Motion of a Point In this chapter, you begin the subject of kinematics (the study of the geometry of motion) by focusing on a single point or particle. You utilize different coordinate systems

More information

Chapter 2 Motion in One Dimension

Chapter 2 Motion in One Dimension Chapter 2 Motion in One Dimension Multiple Choice 1. The position of a particle moving along the x axis is given by 2 x = ( 21+ 22t 6 0. t )m, where t is in s. What is the average velocity during the time

More information

Lecture 2. 1D motion with Constant Acceleration. Vertical Motion.

Lecture 2. 1D motion with Constant Acceleration. Vertical Motion. Lecture 2 1D motion with Constant Acceleration. Vertical Motion. Types of motion Trajectory is the line drawn to track the position of an abject in coordinates space (no time axis). y 1D motion: Trajectory

More information

CHAPTER 2: Describing Motion: Kinematics in One Dimension

CHAPTER 2: Describing Motion: Kinematics in One Dimension CHAPTER : Describing Motion: Kinematics in One Dimension Answers to Questions 1. A car speedometer measures only speed. It does not give any information about the direction, and so does not measure velocity..

More information

Motion and Forces study Guide

Motion and Forces study Guide Motion and Forces study Guide Completion Complete each statement. 1. The motion of an object looks different to observers in different. 2. The SI unit for measuring is the meter. 3. The direction and length

More information

PRACTICE TEST for Midterm Exam

PRACTICE TEST for Midterm Exam South Pasadena AP Physics PRACTICE TEST for Midterm Exam FORMULAS Name Period Date / / d = vt d = v o t + ½ at 2 d = v o + v 2 t v = v o + at v 2 = v 2 o + 2ad v = v x 2 + v y 2 = tan 1 v y v v x = v cos

More information

PH 1110 Summary Homework 1

PH 1110 Summary Homework 1 PH 111 Summary Homework 1 Name Section Number These exercises assess your readiness for Exam 1. Solutions will be available on line. 1a. During orientation a new student is given instructions for a treasure

More information

1. The diagram below shows the variation with time t of the velocity v of an object.

1. The diagram below shows the variation with time t of the velocity v of an object. 1. The diagram below shows the variation with time t of the velocity v of an object. The area between the line of the graph and the time-axis represents A. the average velocity of the object. B. the displacement

More information

AP Physics First Nine Weeks Review

AP Physics First Nine Weeks Review AP Physics First Nine Weeks Review 1. If F1 is the magnitude of the force exerted by the Earth on a satellite in orbit about the Earth and F2 is the magnitude of the force exerted by the satellite on the

More information

G r a d e 1 1 P h y s i c s ( 3 0 s ) Midterm Practice exam

G r a d e 1 1 P h y s i c s ( 3 0 s ) Midterm Practice exam G r a d e 1 1 P h y s i c s ( 3 0 s ) Midterm Practice exam G r a d e 1 1 P h y s i c s ( 3 0 s ) Midterm Practice Exam Instructions The final exam will be weighted as follows: Modules 1 6 100% The format

More information

AP Physics Free Response Practice Kinematics

AP Physics Free Response Practice Kinematics AP Physics Free Response Practice Kinematics 1982B1. The first meters of a 100-meter dash are covered in 2 seconds by a sprinter who starts from rest and accelerates with a constant acceleration. The remaining

More information

Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity?

Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity? Lab Exercise: Gravity (Report) Your Name & Your Lab Partner s Name Due Date Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity? 2. What are several advantage of

More information

CHAPTER 2 DESCRIBING MOTION: KINEMATICS IN ONE DIMENSION

CHAPTER 2 DESCRIBING MOTION: KINEMATICS IN ONE DIMENSION CHAPTER 2 DESCRIBING MOTION: KINEMATICS IN ONE DIMENSION OBJECTIVES After studying the material of this chapter, the student should be able to: state from memory the meaning of the key terms and phrases

More information

UIC PHYSICS 105 Fall st Midterm Exam

UIC PHYSICS 105 Fall st Midterm Exam UIC: Physics 105 1st Midterm Exam Fall 2014 Thursday, October 2 # LAST Name (print) FIRST Name (print) Signature: UIN #: Giving or receiving aid in any examination is cause for dismissal from the University.

More information

Physics Final Practice Exam Part 1

Physics Final Practice Exam Part 1 Physics Final Practice Exam Part 1 Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Which one of the following problems would NOT be a part of physics?

More information

Physics Mid-Term Practice Exam

Physics Mid-Term Practice Exam Physics Mid-Term Practice Exam Multiple Choice. Identify the choice that best completes the statement or answers the question. 1. Which one of the following problems would NOT be a part of physics? a.

More information

Chapter 3. Accelerated Motion

Chapter 3. Accelerated Motion Chapter 3 Accelerated Motion Chapter 3 Accelerated Motion In this chapter you will: Develop descriptions of accelerated motions. Use graphs and equations to solve problems involving moving objects. Describe

More information

KINETICS: MOTION ON A STRAIGHT LINE. VELOCITY, ACCELERATION. FREELY FALLING BODIES

KINETICS: MOTION ON A STRAIGHT LINE. VELOCITY, ACCELERATION. FREELY FALLING BODIES 014.08.06. KINETICS: MOTION ON A STRAIGHT LINE. VELOCITY, ACCELERATION. FREELY FALLING BODIES www.biofizika.aok.pte.hu Premedical course 04.08.014. Fluids Kinematics Dynamics MECHANICS Velocity and acceleration

More information

NATIONAL SENIOR CERTIFICATE GRADE 12

NATIONAL SENIOR CERTIFICATE GRADE 12 NATIONAL SENIOR CERTIFICATE GRADE 12 PHYSICAL SCIENCES: PHYSICS (P1) PREPARATORY EXAMINATIONS SEPTEMBER 2016 MARKS: 150 TIME: 3 hours This question paper consists of 16 pages and 3 data sheets. Physical

More information

A. VOCABULARY REVIEWS On the line, write the term that correctly completes each statement. Use each term once.

A. VOCABULARY REVIEWS On the line, write the term that correctly completes each statement. Use each term once. PART III. KINEMATICS A. VOCABULARY REVIEWS On the line, write the term that correctly completes each statement. Use each term once. 1. rise (Δy) The vertical separation of any two points on a curve is

More information

12/06/2010. Chapter 2 Describing Motion: Kinematics in One Dimension. 2-1 Reference Frames and Displacement. 2-1 Reference Frames and Displacement

12/06/2010. Chapter 2 Describing Motion: Kinematics in One Dimension. 2-1 Reference Frames and Displacement. 2-1 Reference Frames and Displacement Chapter 2 Describing Motion: Kinematics in One Dimension 2-1 Reference Frames and Displacement Any measurement of position, distance, or speed must be made with respect to a reference frame. For example,

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. PHYS 101 Fall 2013 (Purcell), Fake Midterm #1 MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) The figure shows the graph of the position x as a

More information

Page 1. Name: Section This assignment is due at the first class in 2019 Part I Show all work!

Page 1. Name: Section This assignment is due at the first class in 2019 Part I Show all work! Name: Section This assignment is due at the first class in 2019 Part I Show all work! 7164-1 - Page 1 1) A car travels at constant speed around a section of horizontal, circular track. On the diagram provided

More information

(a) On the diagram above, draw an arrow showing the direction of velocity of the projectile at point A.

(a) On the diagram above, draw an arrow showing the direction of velocity of the projectile at point A. QUESTION 1 The path of a projectile in a uniform gravitational field is shown in the diagram below. When the projectile reaches its maximum height, at point A, its speed v is 8.0 m s -1. Assume g = 10

More information

Veronika Kollár PreMed course

Veronika Kollár PreMed course Veronika Kollár PreMed course 30.07.013. The slope of a line y y y b y 1 x x 1 x The general equation of the line: f (x) = y = m x + b Where: b: intersection on the y axis m: the slope of the line x Intersection

More information

Station 1 Block, spring scale

Station 1 Block, spring scale Station 1 Block, spring scale Place the wooden block on Surface A with the metal loop facing you. Hook the green force gauge to the metal loop on the block. With the force gauge held horizontal, pull it

More information

Kinematics. Vector solutions. Vectors

Kinematics. Vector solutions. Vectors Kinematics Study of motion Accelerated vs unaccelerated motion Translational vs Rotational motion Vector solutions required for problems of 2- directional motion Vector solutions Possible solution sets

More information

2. KINEMATICS. By Liew Sau Poh

2. KINEMATICS. By Liew Sau Poh 2. KINEMATICS By Liew Sau Poh 1 OBJECTIVES 2.1 Linear motion 2.2 Projectiles 2.3 Free falls and air resistance 2 OUTCOMES Derive and use equations of motion with constant acceleration Sketch and use the

More information

Kinematics. Chapter 2. Position-Time Graph. Position

Kinematics. Chapter 2. Position-Time Graph. Position Kinematics Chapter 2 Motion in One Dimension Describes motion while ignoring the agents that caused the motion For now, will consider motion in one dimension Along a straight line Will use the particle

More information

Motion Graphs Refer to the following information for the next four questions.

Motion Graphs Refer to the following information for the next four questions. Motion Graphs Refer to the following information for the next four questions. 1. Match the description provided about the behavior of a cart along a linear track to its best graphical representation. Remember

More information

(numerical value) In calculating, you will find the total distance traveled. Displacement problems will find the distance from the starting point to the ending point. *Calculate the total amount traveled

More information

Class 11 Physics NCERT Exemplar Solutions Motion in a Straight Line

Class 11 Physics NCERT Exemplar Solutions Motion in a Straight Line Class 11 Physics NCERT Exemplar Solutions Motion in a Straight Line Multiple Choice Questions Single Correct Answer Type Q1. Among the four graphs shown in the figure, there is only one graph for which

More information

Kinematics and Dynamics

Kinematics and Dynamics AP PHYS 1 Test Review Kinematics and Dynamics Name: Other Useful Site: http://www.aplusphysics.com/ap1/ap1- supp.html 2015-16 AP Physics: Kinematics Study Guide The study guide will help you review all

More information

(f) none of the above

(f) none of the above Honors Physics TEST: Kinematics in 1D 10/30/12 Part 1. Multiple Choice: Answer the following multiple choice questions by picking the selection that best answers the question. Write your answers on a separate

More information

Chapter 3 Homework Packet. Conceptual Questions

Chapter 3 Homework Packet. Conceptual Questions Chapter 3 Homework Packet Conceptual Questions 1) Which one of the following is an example of a vector quantity? A) mass B) area C) distance D) velocity A vector quantity has both magnitude and direction.

More information

Chapter 8 : Motion. KEY CONCEPTS [ *rating as per the significance of concept ]

Chapter 8 : Motion. KEY CONCEPTS [ *rating as per the significance of concept ] Chapter 8 : Motion KEY CONCEPTS [ *rating as per the significance of concept ] 1 Motion **** 2 Graphical Representation of Motion *** & Graphs 3 Equation of motion **** 4 Uniform Circular Motion ** 1 Motion

More information

Exam 2--PHYS 101--F17

Exam 2--PHYS 101--F17 Name: Exam 2--PHYS 0--F7 Multiple Choice Identify the choice that best completes the statement or answers the question.. A ball is thrown in the air at an angle of 30 to the ground, with an initial speed

More information

Lec 1, , Course Intro. PHYS-1401, General Physics I Spring Physics I Lab starts next week.

Lec 1, , Course Intro. PHYS-1401, General Physics I Spring Physics I Lab starts next week. Lec 1, 2019-01-14, Course Intro Monday, January 14, 2019 10:21 AM PHYS-1401, General Physics I Spring 2019 - Physics I Lab starts next week. Science - Studying patterns in Nature Mathematics - Language

More information