DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workkloads.

Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

Related

  • OpenCV Integration With Live 360 Video for Robotics
  • Application-Level Tracing: The Good, the Bad, and the Alternative
  • Norm of a One-Dimensional Tensor in Python Libraries
  • Building a Dynamic Chat Application: Setting up ChatGPT in FastAPI and Displaying Conversations in ReactJS

Trending

  • Accelerating AI Inference With TensorRT
  • Why Documentation Matters More Than You Think
  • Performance Optimization Techniques for Snowflake on AWS
  • AI’s Role in Everyday Development
  1. DZone
  2. Culture and Methodologies
  3. Career Development
  4. Cornu's Spiral

Cornu's Spiral

Some of us at DZone develop scientific/engineering/research code. And to people like us, an elegant and simple mathematical function can be a powerful tool. We might not use it today but it's nice to have in the toolbox!

By 
John Cook user avatar
John Cook
·
Mar. 31, 16 · Opinion
Likes (4)
Comment
Save
Tweet
Share
4.1K Views

Join the DZone community and get the full member experience.

Join For Free

cornu’s spiral is the curve parameterized by:

x(t) = c(t) = \int_0^t \cos \left( \frac{\pi}{2} s \right) \, ds \\ y(t) = s(t) = \int_0^t \sin \left( \frac{\pi}{2} s \right) \, ds

where c and s are the fresnel functions, sometimes called the fresnel cosine integral and fresnel sine integral. here’s a plot of the spiral.

cornu's spiral

both fresnel functions approach ½ as t → ∞ and so the curve slowly spirals toward (½, ½) in the first quadrant. and by symmetry, because both functions are odd, the curve spirals toward (-½, -½) in the third quadrant.

here’s the python code used to make the plot:

    from scipy.special import fresnel
    from scipy import linspace
    import matplotlib.pyplot as plt

    t = linspace(-7, 7, 1000)
    y, x = fresnel(t)

    plt.plot(x, y)
    plt.axes().set_aspect("equal")
    plt.show()

the scipy function fresnel returns both fresnel functions at the same time. it returns them in the order ( s , c ) so the code reverses the order of these to match the cornu curve.

one interesting feature of cornu’s spiral is that its curvature increases linearly with time. this is easy to verify: because of the fundamental theorem of calculus, the fresnel functions reduce to sines and cosines when you take derivatives, and you can show that the curvature at time t equals π t .

cornu’s spiral was actually discovered by euler. cornu was an engineer who independently discovered the curve much later. perhaps because cornu used the curve in applications, his name is more commonly associated with the curve. at least i’ve more often seen it named after cornu. this is an example of stigler’s law that things are usually not named after the first person to discover them.

philosophy application Python (language) SciPy Engineer Law (stochastic processes) Theorem Euler (software)

Published at DZone with permission of John Cook, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • OpenCV Integration With Live 360 Video for Robotics
  • Application-Level Tracing: The Good, the Bad, and the Alternative
  • Norm of a One-Dimensional Tensor in Python Libraries
  • Building a Dynamic Chat Application: Setting up ChatGPT in FastAPI and Displaying Conversations in ReactJS

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: