Weighted averages in groups with common range

  • Thread starter Thread starter td3201
  • Start date Start date
  • Tags Tags
    Groups Range
AI Thread Summary
The discussion focuses on calculating weighted averages for survey categories while maintaining a consistent range across all categories and the overall average. The challenge arises from differing weight distributions leading to varying score ranges, which complicates direct comparisons. A proposed solution involves applying an affine mapping to normalize scores within a defined overall range. The participant also acknowledges that capturing raw data allows for recalculations if ranges change in the future. Ultimately, the method discussed successfully addresses the concern of maintaining score quality despite potential range adjustments.
td3201
Messages
5
Reaction score
0
I am doing a survey of questions grouped into categories. Each question has a weight applied to it. I want to then total and average each category. Lastly, I want to total and average all the categories together. Here's the challenge: I want all of categories and the total average to have the same range somehow.

See attachment (png file) for a pic of the data I mocked up to describe my situation.

The answers are a range of 1-5 (likert scale). So as you can see in the picture, the group ranges are 1-5, 1.45-7.25, and 1.90-9.50 respectively. However, the group is a completely different range 1.45-7.25. This is naturally happening because of the different weights on the questions. My end goal here is to give an average score for each category and the total score at the end similar to a FICO score. So the ranges must be the same for them to have the same effect. How can I do this with these weights in the mix?
 

Attachments

  • range-issue.PNG
    range-issue.PNG
    3.8 KB · Views: 472
Mathematics news on Phys.org
I just had a thought. Would it work if I made all of the weights in the category equal 1 (100%)?
 
Scratch that, not it.
 
Suppose the actual scores are Xa (total in category A), Xb, Xc. You still want the total score to be Xa+Xb+Xc (or dividing by total number of questions if you want the average), right? But you also want to quote average scores by category in a way that's consistent with the overall average.
If the overall range is Y to Z, and the range for category A is Ya to Za, apply an affine mapping to the score Sa on category A: Sa->(Sa-Ya)*(Z-Y)/(Za-Ya) + Y. This maps Ya to Y, Za to Z, and everything in between in proportion.
 
This seems to work pretty well. However, it does not seem to scale if I change the range. Is there a way to make the "grade" the same based on the range?

Range = 1000-200
CategoryA Score = 504.2
Percentage Grade = 59.9%

Range = 850-300
CategoryA Score = 509.14
Percentage Grade = 50.4%

Excel formula
=((AVERAGE(J6:J16)-D17)*($B$1-$B$2)/(E17-D17)+$B$2)
504.20=(2.7273-1.0667)*(1000-200)/(5.4091-1.0667)+200
509.14=(2.7273-1.0667)*(850-300)/(5.4091-1.0667)+300

Entry Weight Score
1 1.2 1.2
2 1.3 2.6
3 1 3
4 1 4
5 1 5
1 1 1
2 1.1 2.2
3 1 3
4 1.2 4.8
1 1 1
2 1.1 2.2
 
I think I talked myself out of my concern. The reason I was concerned is if we ever change the range, it would mess with the quality of the scores. However, we are capturing the raw (non-weighted) data so we can re-calculate as needed. This is a very low possibility but fun to project either way. Your solution worked. This kind of reminds me of a bit field:
http://en.wikipedia.org/wiki/Bit_field

Thanks!
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
Thread 'Video on imaginary numbers and some queries'
Hi, I was watching the following video. I found some points confusing. Could you please help me to understand the gaps? Thanks, in advance! Question 1: Around 4:22, the video says the following. So for those mathematicians, negative numbers didn't exist. You could subtract, that is find the difference between two positive quantities, but you couldn't have a negative answer or negative coefficients. Mathematicians were so averse to negative numbers that there was no single quadratic...
Thread 'Unit Circle Double Angle Derivations'
Here I made a terrible mistake of assuming this to be an equilateral triangle and set 2sinx=1 => x=pi/6. Although this did derive the double angle formulas it also led into a terrible mess trying to find all the combinations of sides. I must have been tired and just assumed 6x=180 and 2sinx=1. By that time, I was so mindset that I nearly scolded a person for even saying 90-x. I wonder if this is a case of biased observation that seeks to dis credit me like Jesus of Nazareth since in reality...

Similar threads

Back
Top