Ask Experts Questions for FREE Help !
Ask
    Sulakshana's Avatar
    Sulakshana Posts: 2, Reputation: 1
    New Member
     
    #1

    Nov 27, 2005, 09:55 PM
    Difference in the Formula calulation
    I am a software engineer. We are creating an efficiency report of employees.
    we have two reports detail and summary of efficiency of employees.

    while calculating detail report we are picking up each jobcard done by an employee . Following is the example
    formula applied is as follows
    -------------------------------------------------------------------------
    Time units *.60 * Punched minutes for the month / Total Punched minutes
    --------------------------------------------------------------------------

    jobcard nr.| TU |Total punched minutes | Punched minutes for the month| = sold minutes
    JC/134638 400*.60 1004 801 = 191
    (400*.60*801/1004)
    JC/135933 150*.60 117 117 = 90
    (150*.6*117/117) ----
    (281)

    while calculating summary report we are picking up sum of jobcards for each employee. So the above said formula is used on the sum of each component of formula. Example is as follows
    400 1004 801
    150 117 117
    ---- ---- ----
    550 1121 918
    (550*.60*918/1121) =(270)

    Can Any one please explain me why this difference is coming of 11 minutes
    Between 281 and 270 in spite of using the same formula?
    CroCivic91's Avatar
    CroCivic91 Posts: 729, Reputation: 23
    Senior Member
     
    #2

    Nov 28, 2005, 05:25 PM
    You are calculating something like this:
    (a_i)*(b_i)*(c_i)/(d_i)
    a_i means it's a number we'll call "a" and give it index "i"

    So, if you have 2 such sets of numbers, you want to add them together. Let's look at the way you do it.

    You say that a_1 * b_1 * c_1 / d_1 + a_2 * b_2 * c_2 / d_2 = (a_1 + a_2) * (b_1 + b_2) * (c_1 + c_2) / (d_1 + d_2)
    That is, however, untrue. Problem is in dividing by d_i.

    Correct formula would be:
    a_1 * b_1 * c_1 / d_1 + a_2 * b_2 * c_2 / d_2 = ( a_1 * b_1 * c_1 * d_2 + a_2 * b_2 * c_2 * d_1 ) / (d_1*d_2)
    Let's try it on your numbers.

    (400*.6*801/1004) + (150*.6*117/117) = 191,47 + 90 = 281,47

    (400*.6*801*117 + 150*.6*117*1004) / (1004*117) = (22492080 + 10572120) / 117468 = 33064200 / 117468 = 281,47
    Sulakshana's Avatar
    Sulakshana Posts: 2, Reputation: 1
    New Member
     
    #3

    Nov 28, 2005, 09:34 PM
    Thanks
    Thanks a lot . I appreciate this. I shall definitely try this on our program. Thanks from our team.

    Quote Originally Posted by CroCivic91
    You are calculating something like this:
    (a_i)*(b_i)*(c_i)/(d_i)
    a_i means it's a number we'll call "a" and give it index "i"

    So, if you have 2 such sets of numbers, you want to add them together. Let's look at the way you do it.

    You say that a_1 * b_1 * c_1 / d_1 + a_2 * b_2 * c_2 / d_2 = (a_1 + a_2) * (b_1 + b_2) * (c_1 + c_2) / (d_1 + d_2)
    That is, however, untrue. Problem is in dividing by d_i.

    Correct formula would be:
    a_1 * b_1 * c_1 / d_1 + a_2 * b_2 * c_2 / d_2 = ( a_1 * b_1 * c_1 * d_2 + a_2 * b_2 * c_2 * d_1 ) / (d_1*d_2)
    Let's try it on your numbers.

    (400*.6*801/1004) + (150*.6*117/117) = 191,47 + 90 = 281,47

    (400*.6*801*117 + 150*.6*117*1004) / (*117) = (22492080 + 10572120) / 117468 = 33064200 / 117468 = 281,47
    CroCivic91's Avatar
    CroCivic91 Posts: 729, Reputation: 23
    Senior Member
     
    #4

    Nov 29, 2005, 02:59 AM
    You're welcome!

    If you do not manage to produce a formula for a sum of "n" such sets of numbers, let me know and I'll write it on the paper, scan it for you, and stick it here.

Not your question? Ask your question View similar questions

 

Question Tools Search this Question
Search this Question:

Advanced Search

Add your answer here.


Check out some similar questions!

Speed formula help [ 6 Answers ]

OK I am taking my first physics class and I am not doing too great in it, but the good thing is this is only the first week of class. My question is about the speed formula. I know that the formula is S=D/T, but I still get the problems wrong even thow I plug in the numbers right. Here is an...

Rearrange this formula to solve for n (no, its not my homework lol) [ 6 Answers ]

p = x*(1 - (1+r)^-n)/r In words: take the negative nth power of (1+r). Subtract from 1, divide by r. This gives the ratio of p to x. I need to be able to solve for n. Can someone help me with creating a formula out of this to solve for n? :confused:

Formula for how much wood needed to make shelves [ 6 Answers ]

I need three 17x22 inches I need two 15x41 1/2 one 20x64 three 13x18 how much wood would I need to make these shelves? is there a formula that I could use for the future? thanks

Excel Formula needed [ 1 Answers ]

I am keeping an inventory in Excel. Let's say I start with 100 units of widgets, I take 20 widgets from the shelf, but return 10 wdgets later because I didn't use them. I need a formula that shows the 100, then I want to show that I took 20, and then have Excel show that I returned 10. Can...


View more questions Search