Skip to main content

How to visualise shifting of a time-reversed signal?

Shifting, reversal and scaling are the common operations we perform on an analog (or) digital signal. In this post, we will see how can we visualize shifted version of a time-reversed signal.

To put it simply, here is what we are gonna do:

Given a signal x(t), how to plot x(-t+1)

Note: If you are already good at this, maybe this post is not for you. You can safely stop reading now. But if you still want to proceed, you are always welcome!!

Before discussing how to plot our signal, let's have a small talk about -

Time Shifting:

For a given x(t), we can say that x(t+1) is a time-shifted signal. In general, we talk about the shifting of the waveform relative to the time axis, and we use the terms "left shift" and "right shift" to denote two types of movements possible for the waveform.

However, we have to note that the terms indicate only half the story. There is an underlying assumption for these to work, which is the direction of the time axis (or whatever the quantity we have in the x-axis) i.e., these "left" and "right" notations work only when the axis is running from left to right!

So, if we have to define a broader definition, we can say:

"signal is shifted towards positive t-axis" instead of "signal is shifted towards right", and

"signal is shifted towards negative t-axis" instead of "signal is shifted towards left".

Okay, that's enough intro; let's go and get our waveform.

Plotting x(-t+1):

First, consider an arbitrary signal x(t) such as shown below:


 

If we time-reverse our signal, we get x(-t), and it looks like this:

Now, just make a simple substitution: let's say η = -t.

Then our x(-t) becomes x(η)!

So, it looks like this:


Looks good right? 

NOO..!!

The direction of the axis was not changed! When we say that η = -t, means the positive t-axis becomes the negative η axis, and vice versa...

So, our x(η) should look like this:


Now, now, now, we are almost done.

So, what do we want? x(-t+1)

What is our signal in terms of η? x(η+1)

But what is x(η+1)? A left-shifted signal of x(η) right?

Yeah, absolutely. But what does left shifting actually means? Moving towards the negative direction of the axis, i.e., shifting towards theaxis..!

Ta-da! There we are, and our target signal, x(-t+1) (or) x(η+1), looks like this:

That's how we can think about shifting a reversed signal.

Of course, this seems a bit lengthy procedure, but at least this can help in the initial stages till we develop an intuition for it.

Yup, that's it. You can leave the page now.

Or...

Hey, thank you for reading! Means a lot. Feel free to share your views (or) point out any mistakes in the comments, and help us all get the 'Eternal Thing'!


Comments

Popular posts from this blog

25 and Disappointed: Can’t we choose simple life?

 There’s something strange about the way we live now. It’s not enough to do your job. You have to grow. Climb. Upskill. Network. Earn more. Spend more. Repeat. People areound you - even the ones who seem tired - still say, “Keep pushing.” The ones ahead keep reaching higher. The ones behind are told to catch up. And if you stand still for even a moment, they say you’re wasting time. But no one explains why. Why is a peace a problem? Why is being satisfied with what you have seen as a failure? This idea of “simple life” - it used to be normal. Work. Come home. Cook. Be with the people you love. Rest. Now it’s rare. Or romanticized. Or quietly looked down on. We’re told that success means constant movement. That we need to hustle, or we’ll be left behind.  But behind what, really? We’ve normalized the rat race, without asking who started it. And the truth is - only a few can actuallly win it. Most people burn out trying.  Others fake their way through it, smiling through st...

25 and Disappointed: The tragedy of leaving home

It’s strange, isn’t it? We live in a world with high-speed internet, 5G, instant messages, Zoom calls and flight tickets that can take us across the country in a few hours. The world has never been more connected. And yet… we’re all so far apart. We are becoming disabled in this tech enabled world. People move away from home more than ever. To study. To work. To “build a future.” Yes, it’s needed sometimes. For learning. For exposure.  But often… it seems we are allowing it quietly more than required. Maybe it’s just the system forcing us to. All the jobs are in cities. All the money, infrastructure and “opportunities”. Hence we leave. We leave behind warm meals, evening walks with parents, familiar lanes and families that actually feel like festivals. We leave people who raised us - and see them only on phone calls or during a short visit squeezed between deadlines. For what? For a cubicle in a crowded city, A rented flat that never feels like home, Weekends that vanish in chores,...

Top 5 take aways from "Linux 101 Hacks" - The Bloggers League 2022

  Author: Rama Subrahmanyam Hello, how are you doing..?         We all know that Windows is a super cute-looking OS, but software people will connect to Linux; It offers much flexibility with file management, and plus, it's open-source too..!         So, the book - Linux 101 Hacks, is a nice intro for beginners, by Ramesh Natarajan . Having said that, we look at the top 5 hacks from the book. It is a free e-book, and you can download it here . 1. 'alias' for most used commands:-     There will be commands that are used repeatedly, for which we can have a shortcut using an alias. For example, for cd commands, we can have            alias cd1="cd .."           alias cd2="cd ../.."           alias cd3="cd ../../.."           alias cd4="cd ../../../.."           alias cd5="cd ../../.....