Results 1 to 4 of 4

Thread: [RESOLVED] MATHS PRO help pls

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Mar 2008
    Posts
    136

    Resolved [RESOLVED] MATHS PRO help pls

    A Maths Question :
    example:
    120 - 5% - 7% = 106.02

    total discount = 11.5%

    but my question is how to get the total discount?

  2. #2
    PowerPoster
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,070

    Re: MATHS PRO help pls

    120 - 5% isn't actually a proper equation. 5% of what? Of course you mean 5% of 120, but really it's ambigious.

    120 - 5% should really be written as 120 - 0.05*120 = 120(1 - 0.05)
    This amount is of course the amount you still have to pay, after discount.

    The total discount then is of course just the original amount (120) minus the amount you still have to pay.
    So, the discount is 120 - 120(1 - 0.05) = 120 - 120 + 0.05*120 = 0.05*120 = 5% of 120.

    That was quite obvious from the 'equation' 120-5% of course. But now:

    I am assuming that by 120-5%-7% you actually mean 5% discount of 120, and then 7% discount of that. You see now why your notation is ambigious? It could just as well mean 5% off 120, and then 7% off 120, which would just be 12% off 120.

    So, 120 - 5% - 7% should be written as 120(1 - 0.05)(1 - 0.07) = 120(1 - 0.05 - 0.07 + 0.05*0.07) = 120(1 - 0.1165).
    So, you still have to pay 120(1 - 0.1165). The discount is again the original amount minus that, so the discount is 120 - 120(1 - 0.1165) = 120 - 120 + 0.1165*120, or 11.65% of 120.

    Can you follow?

  3. #3
    Addicted Member
    Join Date
    Oct 2006
    Location
    In the midst of corn, cotton, and beans
    Posts
    185

    Re: MATHS PRO help pls

    to get the sale price after % discount
    Code:
    120 - (0.05 * 120) - (0.07 * (120 - (0.05 * 120)=
    120 - (6)          - (0.07 * (120 - (6)         =
    120 - (6)          - (0.07 * (114)              =
    120 - (6)          - (7.98)                     =
            114        -  7.98                      =
            Ans = 106.02
    to get total % off
    Code:
    ((120 - 106.02) * 100) / 120 =
    (     13.98 )   * 100) / 120 = 
                    1398   / 120 =
            Ans = 11.65 %
    If you prefer variables then
    Code:
    O = orig. price
    A = first discount (in percentage)
    B = second discount (in percentage)
    
    O - (A * O) - (B * (O - (A * O))) = Y
    ((O - Y) * 100) / O   = Z
    
    Y = the amount to be paid
    Z = the total percent discount
    Last edited by re_turner_jr; Jul 28th, 2009 at 01:46 PM. Reason: left out closing brackets

  4. #4

    Thread Starter
    Addicted Member
    Join Date
    Mar 2008
    Posts
    136

    Re: MATHS PRO help pls

    wow....
    thanks a lot.... I fully understand now. very nice and short explaination

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width