(3, -2) satisfies both equations. 3-2=1, and -3-2=-5.
Step-by-step explanation:
Assuming figure to be trapezoid,
Perimeter=6+4+7+4yd
=21 yd
Area of trapezoid=((6+7)/2) x ((4)^2-(0.5)^2)
=(13/2)x(16-0.25)
=6.5 x 15.75
=102.375 Sq yards
Answer: the height of the lighthouse is 838.8 feet
Step-by-step explanation:
The right angle triangle ABC illustrating the scenario is shown in the attached photo.
The angle of depression and angle A are alternate angles, hence, they are the equal.
The height, h of the lighthouse represents the opposite side of the right angle triangle. The distance of the boat from the foot of the lighthouse represents the adjacent side of the right angle triangle.
To determine h, we would apply
the tangent trigonometric ratio.
Tan θ, = opposite side/adjacent side. Therefore,
Tan 62 = h/446
h = 446tan62 = 446 × 1.8807
h = 838.8 feet to the nearest tenth.
Answer:
His estimate is not correct
Each employee gets 205.6875
Step-by-step explanation:
Bonus to give out = 6582
Number of employees to get bonus = 32
Bonus per employee = Total bonus / number of employees
= 6582 / 32
= 205.6875
Each employee will get 205.6875 contrary to manger Jake reasoning of 2000 per employee
manger Jake reasoning
6572 / 32
32 in 65 = 2 remainder 1
He added 000 zeros to 2 which is wrong
He should have added 00 zeros to 2 because he has 172 remaining after dividing 65 by 32
Table for the question is attached in the picture below :
Answer:
SELECT distinct(TRUCK_ID), WEIGHT from SHIPMENT where WEIGHT < 800 ;
Step-by-step explanation:
The Structured query language (SQL) defined above, returns only the TRUCK_ID and Weight column from the shipment table as they are the only two columns listed after the select keyword. The condition is added using the WHERE keyword on the weight table, this filters the result returned to include only rows where the weight value is less than 800. The distinct keyword used alongside the TRUCK_ID column ensures that a certian TRUCK_ID value isn't returned more than once (Hence, it is used to avoid duplicates).