Slashdot Mirror


Best Way To Publish an "Indie" Research Paper?

alexmipego writes "I'm a developer, and a few months ago while working on a common geodesic problem (distance between two GPS points) I started to research a new algorithm that greatly improves the performance over existing algorithms. After relearning a lot of math I'm now fairly close to the final algorithm, after which I'll run extensive benchmarks comparing my algorithm with the most commonly used ones. After spending so much time on this, and if the final results are positive, I feel that simply posting this type of work on a blog might not be the best option, so I'm looking into something more formal, like a research paper. I've no experience on those, have not even read a complete one, so my first question is what resources do you recommend to learn how to write one? And even after I write it, I can't expect to be published by Science or other high-profile publications. So where should I send it to make it known by people in the respective fields and be taken seriously?"

3 of 279 comments (clear)

  1. Re:Wait a sec by langelgjm · · Score: 3, Interesting

    I've never heard of a paper presentation at a conference being considered as previous publication, but I'm not in the same field. Lots and lots of papers that are published start out by being presented at conferences, and then the authors rework them after that. Now if the conference is publishing proceedings, that's a different story.

    But as some other commenters are suggesting, your best bet would likely be to find a professor who works in this area and maybe co-write a paper with them. You can provide the substance, but they can connect it with what's going on in the field, references to appropriate literature, etc. They'll also be up to speed with what the best publishing venue will be. No, it won't be Science, but there are plenty of other well-regarded journals as well as specialty journals that might accept it.

    --
    "Anyone who [rips a CD] is probably engaging in copyright infringement." - David O. Carson
  2. More details from Author by alexmipego · · Score: 4, Interesting

    Thanks all for all the nice comments so far ;) The list is growing faster than I can keep up with but here are some remarks I would like to add:

    I do not wish to patent it and I plan on making sure there will be material enough to be considered prior art in case of patent trolling. I'm also a open source contributor and I'm sure if I needed I could forward them the work so they could protect it (e.g. add it to their defensive patent poll). All in all, I'm not looking for profit, yet a job would be welcome lol

    As for the new algorithm I think was I was maybe a bit too vague on the story. So, to put it simple and short, afaik there are 3 major formulas used nowadays: great circle distance, haversine and vincenty's. In order, they each offer more accuracy than the previous at the expense of more computation power needed for the calculations. While I didn't even try to replace Vincenty's formula yet (but it might be possible) my solution improves on the others because they all require a lot of trigonometry functions (cos, sin, etc..). On the simplest of those, you have to call 6 trig functions, while with my method I only need 1 (so far) to achieve the same end result as the haversine's formula.

    I'm not sure if such formula and the methods needed to make this work are even patentable anyway.

    1. Re:More details from Author by Angst+Badger · · Score: 3, Interesting

      While I didn't even try to replace Vincenty's formula yet (but it might be possible) my solution improves on the others because they all require a lot of trigonometry functions (cos, sin, etc..). On the simplest of those, you have to call 6 trig functions, while with my method I only need 1 (so far) to achieve the same end result as the haversine's formula.

      Careful there. Some time ago, I came up with a series of equations for calculating various properties of star polygons. I thought I was very clever for having done so because, unlike numerous esteemed authors on the subject, I managed to do it without any trigonometry.

      Or so I thought.

      Fortunately, in the process of brushing up on trig to check my results, I (re)discovered that trigonometric functions are just shorthand for relationships (i.e., ratios) between the sides and angles of triangles. My "trig-free" equations didn't dispense with trigonometric functions, they just dispensed with the shorthand.

      On one hand, it's kind of cool to rediscover stuff like this as a confirmation that you are on the right track. On the other hand, it's embarrassing when what you have rediscovered is, in fact, something you should already have known if you had paid a little more attention in high school math. If I were you, I'd look up the definitions of the trigonometric functions -- Wikipedia will do -- and see if you haven't simply duplicated them. If you have, then lesson learned. If not, and you actually have discovered something new, more power to you!

      --
      Proud member of the Weirdo-American community.