Jump to content

How to I make arctrig functions grow arbitrrily large while they maintain cyclical properties?

Featured Replies

I'm running into a problem where I want to represent a series of radians as A*arccos(Bx+C)+D, like for instance pi/2, 3*pi/4, pi...18*pi/12.. or pi/2, pi, 3pi/2, 2pi, pi/2, pi, 3pi/2....ect. But, because the domain of arccos is limited and then becomes some imaginary hyperbolic trig function outside of the domain 0<x<pi, I'm having trouble figuring out how to do that. Like normally, you could represent a series of cyclical numbers like 1,-1,1,-1 as cos(pi*x). I want to do the same thing with radians using arccos(x) where it just keeps repeating periodically as x grows arbitrarily large

  • Author

Yeah...that's more or less what I said within the first post except the exact domain of arcos(x) is [0, pi].

Can you do:

 

Y = Your value

DY = number of digits in Y

 

Arccos(Y/10^DY)

 

?

  • Author

I don't know what you mean exactly, but it could lead to the right idea. If you increase by a smaller and smaller number that never increases past pi, then arccos should grow indefinitely large, but it does so logarithmically according to the hyperbolic trig function so it's still not cyclical. the only thing I could think that works is arccos(cos(pi*x))*pi or something like that, but I never see anything like that anywhere.

Edited by MWresearch

Yeah...that's more or less what I said within the first post except the exact domain of arcos(x) is [0, pi].

The domain is [-1,1]. The range is [0,pi].

I don't know what you mean exactly, but it could lead to the right idea. If you increase by a smaller and smaller number that never increases past pi, then arccos should grow indefinitely large, but it does so logarithmically according to the hyperbolic trig function so it's still not cyclical. the only thing I could think that works is arccos(cos(pi*x))*pi or something like that, but I never see anything like that anywhere.

 

It will convert arbitrary values into the range arccos is looking for.

 

123456 / 106 = 0.123456

-123 / 103 = -0.123

 

# of Digits to left of decimal = ⌊log10(|x|)⌋+1

 

arccos(x / 10⌊log10(|x|)⌋+1 )

Edited by Endy0816

Are you wanting to keep your result normal via eliminating the imaginary bit?

 

That's the only other option really.

Edited by Endy0816

  • Author

I don't know, I just want to represent an indefinite series of radians as some function of arccos x. If there's some way to do that with archosh(x) then that's fine.

Archived

This topic is now archived and is closed to further replies.

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.