Finding the scalar of a vector (multiplying a vector by a constant) is quite simple.
Given a vector <a, b>, we can calculate a scalar of this vector, let's call it r<a, b> using the following:
r<a, b> = <ra, rb>
Using this knowledge, we can calculate -3u + 5v based on the following
-3u + 5v = -3*<-5, -3> + 5*<-6, -1> = <15, 9> + <-30, -5> = <-15, 4>
Your answer is correct!
When we have vectors that are given in the format of a = 5i + 7j, we can rewrite these as a = <5, 7>.
Using this fact, we can rewrite a and b as the following:
a = <5, 7>
b = <-4, 3>
The dot product between two vectors is given by the following formula:
<u1, v1>.<u2, v2> = u1*u2 + v1*v2
Using this equation, we can calculate the dot product of a and b as follows:
a • b = <5, 7> • <-4, 3> = 5 * (-4) + 7 * 3 = -20 + 21 = 1. Therefore, a • b = 1.
You expressed your answer as a vector, but remember that dot products are scalars, which means that they are actual values and not vectors.