Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Re: How can I reduce the frequency of a sine wave tia

1 view
Skip to first unread message

Murray Eisenberg

unread,
Nov 8, 2009, 6:52:04 AM11/8/09
to
Do you want to superpose another frequency to get a single signal, or
just plot another frequency along with the one you started with?

Compare these:

Plot[Sin[10x]+Cos[3x],{x,0,2Pi}]
Plot[{Sin[10x],Sin[3x]},{x,0,2Pi}]

Rick T wrote:
> Greetings All
>
> I have the example below which produces 10 cycles
> a = Sin[10 x]
> Plot[a, {x, 0, 2 Pi}]
>
> What Type of signal would I need to add/multiple/divide to reduce it's
> signal/frequency to 5 cycles? I know I can just change the number 10
> to 5
> but I need to combine it with another signal. what mathematical
> operation/signal do I need to use.
>
> tia sal2
>

--
Murray Eisenberg mur...@math.umass.edu
Mathematics & Statistics Dept.
Lederle Graduate Research Tower phone 413 549-1020 (H)
University of Massachusetts 413 545-2859 (W)
710 North Pleasant Street fax 413 545-1801
Amherst, MA 01003-9305

Bob Hanlon

unread,
Nov 8, 2009, 7:05:29 AM11/8/09
to

Modulate and filter the signal

a = Sin[f1* x];

b = Cos[(f1 + f2)*x];

c = -2*Select[
a*b // TrigToExp // ExpandAll,
FreeQ[#, f1, 4] &] // FullSimplify

sin(f2 x)


Bob Hanlon

---- Rick T <ratu...@gmail.com> wrote:

=============

0 new messages