二つの同じ長さのベクトルが与えられたとき、二つのベクトルの要素ごとの積の平均を求めましょう。
例:
二つのベクトル [1 2 3] と [10 15 20] が与えられたとき、 それぞれの要素ごとの積の平均を取ると、 解は 33.3333 となります。 途中の計算は (1*10 + 2*15 + 3*20)/3 のようになります。
That's not the correct definition of the concept of "weighted average". Instead, it's rather the average product of two data vectors x and w.
I agree with yurenchu. If you want to choose Problems to translate, then first read all comments made about the original Problem statement to see if there are any important critiques to heed. If so, then either address the critiques and create an improved version of the Problem, or else choose a different original Problem.
Changed the translation
Very good :-)