Understanding Cross Product Derivatives for Vector Functions

kap361
Messages
2
Reaction score
0
hi all.

my homework question is what is the derivative of:

[(a + t * b) x (a + t * b + t^(2) * c)]

a, b, and c are vectors, and t is a constant. * is multipy, ^(2) is squared, and x is cross product.

i've been working on it for hours and i have no idea what to do.

there's another similar problem which i have the answer to. it asks to find the derivative of:

[(a + t * b) x (c + t * d)]

it has the same specs, with d being another vector.

the answer to this one is:

(a x d) + (b x c) + 2t(b x d)

i just don't see how these connect and can actually be equivalent.

help would be ridiculously appreciated.
 
Physics news on Phys.org
You have a (cross) product there. So you should use the (cross) product rule.
 
First, the product rule, for cross product: (uxv)'= uxv'+ u'xv.

Second, cross product is anti-commutative: uxv= -vxu and, in particular, uxu= 0.
Finally, cross product is distributive: ux(v+ w)= uxv+ uxw (though is it NOT associative).

Look at your second, simpler, problem: [(a + t * b) x (c + t * d)] '
= (a+ tb)' x(c+ td)+ (a+tb)x(c+ td)'= bx(c+td)+ (a+tb)x(d)= bxc+ t(bxd)+ axd+ t(bxd)= axd+ bxc+ 2t(bxd).
 
Last edited by a moderator:
ok thank you so much you two.
 
Thread 'Use greedy vertex coloring algorithm to prove the upper bound of χ'
Hi! I am struggling with the exercise I mentioned under "Homework statement". The exercise is about a specific "greedy vertex coloring algorithm". One definition (which matches what my book uses) can be found here: https://people.cs.uchicago.edu/~laci/HANDOUTS/greedycoloring.pdf Here is also a screenshot of the relevant parts of the linked PDF, i.e. the def. of the algorithm: Sadly I don't have much to show as far as a solution attempt goes, as I am stuck on how to proceed. I thought...
Back
Top