Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6780695
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T16:32:10+00:00 2026-05-26T16:32:10+00:00

A system has to support 100 users and the price for support is 3

  • 0

A system has to support 100 users and the price for support is 3

A system has to support 10 000 users and the price for support is 1

I have to devise an algorithm to give me the price in between so it will gradually rise with the number of users.

I tried to multiply the number of users by 0.0002 to get the discount value and I got

300 users * 0.0002 = 0.06 discount, so price for support = 2.94
total income = 300 * 2.94 = 882

5000 users * 0.0002 = 1 discount, so price for support = 2
total income = 5000 * 2 = 10 000

8000 users * 0.0002 = 1.6 discount, so price for support = 1.4
total income = 8000 * 1.4 = 11 200

10 000 users * 0.0002 = 2 discount, so price for support = 1
total income = 8000 * 1.4 = 10 000

So you see after a given point I am actually having more users but receiving less payment.

I am not a mathematician and I now this is not really a programming question, but I don’t know where else to ask this. I will appreciate if someone can help me with any information. Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T16:32:10+00:00Added an answer on May 26, 2026 at 4:32 pm

    price = n * (5 - log10(n)) will work for 100 < n < 10000.

    Just make sure you’re using base-10 log and not natural (base-e) log. If your language doesn’t have base-10 log normally, you can calculate it like this:
    function log10(x) { return log(x)/log(10); }.

    For 100 users, that’s 100 * (5 - log10(100)), which gives 100 * (5 - 2), which is 300.

    For 1000 users, that’s 1000 * (5 - log10(1000)), which gives 1000 * (5 - 3), which is 2000.

    For 10000 users, that’s 10000 * (5 - log10(10000)), which gives 10000 * (5 - 4), which is 10000.

    Let’s pick some more random figures.
    2500 users: 2500 * (5 - log10(2500)) gives us 2500 * (5 - 3.39794), which is 4005.
    6500 users: 6500 * (5 - log10(6500)) gives us 6500 * (5 - 3.81291), which is 7716.
    8000 users: 8000 * (5 - log10(8000)) gives us 8000 * (5 - 3.90309), which is 8775.

    Should work out about right for what you’re modelling.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

My Leopard system has dtrace built in. I also have Java 6 installed, using
Our in-house built CMS system has the ability to have descriptive url ( Descriptive
I recently have taken the support and programming of a web system written in
I have found that firefox has excellent support for showing unicode text correctly. But
We have to make our system highly scalable and it has been developed for
Now that biginteger (System.Numerics.BigInteger) support has been added in C# 4.0, it would be
My system has a service (Serv.exe) which starts as LocalSystem and should be running
The bugzilla (perl-based) system has a feature to login automatically by using a http
In my system has the function to sending email notification to warn another department
How do I detect if the system has a default recording device installed? I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.