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 8010555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T18:46:15+00:00 2026-06-04T18:46:15+00:00

I am looking for a resource that can explain common math operations found in

  • 0

I am looking for a resource that can explain common math operations found in white papers in terms that that coders with minimal math background can understand in terms of coding idioms — for loops etc.

I frequently see the same kinds of symbols in different equations and that the often result in easily comprehensible algorithms. An overview of what the symbols mean would go a long way to making academic paper more comprehensible.

  • 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-06-04T18:46:18+00:00Added an answer on June 4, 2026 at 6:46 pm

    the only ones i can think of that are not obvious (arithmetic, trig functions etc) and have a direct equivalent in code are sum, Σ, and product Π.

    so something like Σ a[i] is:

     sum = 0;
     for (i = 0; i < len(a); ++i) sum += a[i];
    

    and some related details: a subscript (small number below the line) is often the same as an array index (so the i in Σ a[i] might be written small, below and to the right of the a). similarly the range of the i value (here 0 to the length of a) may be given as two small numbers just to the right of the Σ (start value, 0, at the bottom, finish value, n, at the top).

    and the equivalent product is Π a[i]:

    product = 1;
    for (i = 0; i < len(a); ++i) product *= a[i];
    

    update in the comments xan suggests covering matrices too. those get complicated, but at the simplest you might see something like:

    a[i] = M[i][j] b[j]
    

    (where it’s much more likely that the i and j are subscripts, as described above). and that has implied loops:

    for (i = 0; i < len(a); ++i) {
        a[i] = 0;
        for (j = 0; j < len(b); ++j) a[i] += M[i][j] * b[j]
    }
    

    worse, often that will be written simply as a = M b and you’re expected to fill everything in yourself….

    update 2 the first equation in the paper you reference below is w(s[i],0) = alpha[d] * Size(s[i]). as far as i can see, that’s nothing more than:

    double Size(struct s) { ... }
    
    double w(struct s, int x) {
        if (x == 0) return alpha[d] * Size(s);
        ...
    }
    

    and other terms are similarly fancy-looking but not actually complicated function calls and multiplications. note that |...| is abs(...) and the “dot” is multiplication (i think).

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

Sidebar

Related Questions

I'm looking for any beyond basic resources that can help me to be proficient
Is there any book/resource that one can refer to, to be able to write
Looking for resources that can help getting 'into' the Linux code. Could not get
Is anyone able to point me to a resource that can tell me how
I am looking for a Repository pattern implementation example/resource that follows domain driven design
If you are looking for /Resource/Id and that resource does not exist, I had
I'm currently looking into the RegisterClientScriptInclude method so I can be sure that I
How can I have a resource that is a composite so that a GET
Just looking on resources that break down how frames per second work. I know
I'm looking for resources that provide an actual lesson plan or path to encourage

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.