#$&* course Mth 277 8/30 @ 11:39 p.m. If your solution to stated problem does not match the given solution, you should self-critique per instructions at
.............................................
Given Solution: `aThe magnitudes are 10 and 8, and the angle between the vectors is the change in angle from 30 degrees to 90 degrees, or 60 degrees. The dot product is therefore dot product = product of magnitudes * cos(angle) = 10 * 8 * cos(60 deg) = 40. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Self-critique (if necessary): ------------------------------------------------ Self-critique Rating: ********************************************* Question: `q002. What are the x and y components of the vector v having magnitude 10 and angle 30 degrees, and vector w having magnitude 8 and angle 90 degrees? What do you get if you add the product of the two x components to the product of the two y components? How is this result related to the answer to the preceding exercise? YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY Your solution: v = x-comp: 8.66, y-comp: 5 w = x-comp: 0, y - comp: 8, the products of the x’s + y’s equals 40, which is the same as if we calculated the dot products. confidence rating #$&*: very ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.............................................
Given Solution: `aThe vector v has x component vx = 10 cos(30 deg) = 8.7, approx., and vy = 10 sin(30 deg) = 5. The vector w has x component wx = 8 cos(90 deg) = 0 and y component wy = 8 sin(90 deg) = 8. The product of the two x components is vx * wx = 8.7 * 0 = 0, and the product of the y components is vy * wy = 5 * 8 = 40. The sum of these products is 0 + 40 = 40, which is identical to the result of the preceding exercise in which we found the dot product of v and w. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Self-critique (if necessary): ------------------------------------------------ Self-critique Rating: ********************************************* Question: `q003. If vector v is represented by < v1, v2 > and vector w by < w1, w2 > then if the result of the preceding exercise is valid, how do we write in symbols the dot product of the two vectors? In symbols how do we write the magnitudes of the two vectors? How then do we write the statement that the dot product of the two vectors is equal to the product of the magnitudes of the vectors, multiplied by the cosine of the angle between the vectors? YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY Your solution: The dot product is simply v1 * w1 + v2 * w2. The magnitudes are mag.V = sqrt.(v1^2 + v2^2) and mag.W = sqrt.(w1^2 + w2^2). Setting them equal gives us v1 * w1 + v2 * w2 = sqrt.(v1^2 + v2^2) * sqrt.(w1^2 + w2^2) * cos (theta), where theta is the difference in the two angles. confidence rating #$&*: very ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.............................................
Given Solution: `aIf the preceding exercise generalizes then the dot product is the sum of the product of the x components and the product of the y components. In this case we would therefore say that the dot product is v1 * w1 + v2 * w2. The magnitudes of the two vectors are | v | = sqrt(v1^2 + v2^2) and | w | = sqrt(w1^2 + w2^2). The statement therefore says that v1 * w1 + v2 * w2 = sqrt(v1^2 + v2^2) * sqrt(w1^2 + w2^2) * cos(theta). &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Self-critique (if necessary): ------------------------------------------------ Self-critique Rating: ********************************************* Question: `q004. Use the result of the preceding exercise to find the cosine of the angle between the vectors < 2, 3 > and < -7, 4 >. What therefore is the angle between these vectors? YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY Your solution: -2 = sqrt.(13) * sqrt.(65) * cos(theta). -2 = 29.1cos(theta). -.069 = cos(theta). Theta = 93.9 degrees. confidence rating #$&*: very ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.............................................
Given Solution: `aThe cosine of the angle theta between the vectors is found using the fact that dot product is product of magnitudes multiplies by the cosine of the angle, expressed in detail as v1 * w1 + v2 * w2 = sqrt(v1^2 + v2^2) * sqrt(w1^2 + w2^2) * cos(theta). We easily rearrange the equation to get cos(theta) = [ v1 * w1 + v2 * w2 ] / [ sqrt(v1^2 + v2^2) * sqrt(w1^2 + w2^2)]. In this case we have cos(theta) = [ 2 * -7 + 3 * 4 ] / [ sqrt(2^3 + 3^2) * sqrt( (-7)^2 + 4^2) ] = -2 / ( sqrt(13) * sqrt(53) ] = -2 / 26.3 = .08 approx.. The angle is therefore the solution theta to the equation cos(theta) = .08, which gives us theta = 83 degrees, approx.. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Self-critique (if necessary): My solution for the magnitude of W is different than yours. I calculated 4^2 + (-7)^2 to be 16 + 49 which is 65. Other than this, which I could not find where the issue was, the problem makes sense to me which is probably more important than the numbers anyway. ------------------------------------------------ Self-critique Rating:
.............................................
Given Solution: `aThe magnitude of a vector is found by taking the square root of the sum of the squares of its components, just as for a vector in 2-dimensional space. In this case we get magnitudes sqrt(2^2 + 4^2 + 5^2) = sqrt(45) = 6.7, approx., and sqrt((-3)^2 + 7^2 + 2^2) = sqrt(76) = 8.7 approx.. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Self-critique (if necessary): A bit of a number discrepancy again, but the work is the same. ------------------------------------------------ Self-critique Rating: ********************************************* Question: `q006. What is the dot product of the vectors v = < 2, 4, 5 > and w = < -3, 7, 2 > ? What therefore is the angle between these vectors? YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY Your solution: dot product = 32. 32 / sqrt.(45) * sqrt.(62) = cos(theta) theta = 52.7 degrees. confidence rating #$&*: very ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.............................................
Given Solution: `aSince dot product = product of magnitudes * cos(theta) we have cos(theta) = dot product / product of magnitudes. In the preceding problem we found the magnitudes of the vectors to be sqrt(45) and sqrt(76). So if we can find the dot product we can find the cosine of the angle and therefore the angle. The dot product is again the sum of the products of the invidual components, in this case 2 * (-3) + 4 * 7 + 5 * 2 = 32. Thus we have cos(theta) = 32 / ( sqrt(45) * sqrt(76) ) and theta = arccos[ 32 / (sqrt(45) * sqrt(76) ) = 56.8 deg, approx.. Note that these vectors can actually be constructed in 3-dimensional space, and if the construction is accurate the angle will be as indicated. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Self-critique (if necessary): ------------------------------------------------ Self-critique Rating: ********************************************* Question: `q007. Calculate the angle between the two vectors < 1, 7, -3, 4 > and < -3, -5, 2, 7 > . YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY Your solution: -16 is the dot product, the magnitudes equal sqrt.(75)*sqrt(87)*cos(theta). -16 / ((sqrt.(75)*sqrt(87)) = -.198. cos^-1(.198) = 101 degrees. confidence rating #$&*: very ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.............................................
Given Solution: `aAs before we find that theta = arccos ( dot product / product of magnitudes ). In this case theta = arccos [ (1 * -3 + 7 * -5 + -3 * 2 + 4 * 7) / ( sqrt(1^2 + 7^2 + (-3)^2 + 4^2 ) * sqrt( (-3)^2 + (-5)^2 + 2^2 + 7^2 ) ] = arccos[ -16 / 80.8 ] = 101 degrees, approx.. Note that though these vectors occur in 4 dimensions and hence cannot be constructed in 3-dimensional space the calculation of the angle between them, extending in the most obvious manner the procedures of the preceding problems, give us a result with just a little additional calculation " Self-critique (if necessary): ------------------------------------------------ Self-critique rating: ********************************************* Question: `q007. Calculate the angle between the two vectors < 1, 7, -3, 4 > and < -3, -5, 2, 7 > . YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY Your solution: -16 is the dot product, the magnitudes equal sqrt.(75)*sqrt(87)*cos(theta). -16 / ((sqrt.(75)*sqrt(87)) = -.198. cos^-1(.198) = 101 degrees. confidence rating #$&*: very ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.............................................
Given Solution: `aAs before we find that theta = arccos ( dot product / product of magnitudes ). In this case theta = arccos [ (1 * -3 + 7 * -5 + -3 * 2 + 4 * 7) / ( sqrt(1^2 + 7^2 + (-3)^2 + 4^2 ) * sqrt( (-3)^2 + (-5)^2 + 2^2 + 7^2 ) ] = arccos[ -16 / 80.8 ] = 101 degrees, approx.. Note that though these vectors occur in 4 dimensions and hence cannot be constructed in 3-dimensional space the calculation of the angle between them, extending in the most obvious manner the procedures of the preceding problems, give us a result with just a little additional calculation " Self-critique (if necessary): ------------------------------------------------ Self-critique rating: #*&!