Python Python: Are Terms in this List Monotonic?

Click For Summary
The discussion focuses on determining if a list of numbers in Python is monotonic, meaning it is either non-decreasing or non-increasing. Participants explore various methods to achieve this, including using loops to check differences between adjacent elements and suggestions to utilize Python's built-in functions like `reduce`. There is a debate over the efficiency of different approaches, with a preference for single-pass algorithms over sorting methods due to their lower time complexity. The conversation also touches on handling special cases like zero and duplicates in the list. Ultimately, the goal is to find a concise and effective way to implement a monotonicity check in Python.
WWGD
Science Advisor
Homework Helper
Messages
7,743
Reaction score
12,947
TL;DR
Given a list of Real numbers in Python , how do we tell if its terms are monotonic,i.e., if they are in strictly non-decreasing or strictly non-increasing order. I know how to do either one; either strictly increasing,strictly decreasing or both.
Given a list [ a,b,c,..., z] in Python, write a program to determine if the terms are monotonic or not. I can do either , and combine theminto a long, clunky program, but trying to see if I can find a succint way of doing both. I have heard that using ' Nums' may do it,but it seems too high-level for my taste.

For, say, non-decreasing we can do something like :

Python:
List=L=[ a1, a2,...,an]
for i in in range(length(L)):
if L[i+1]-L[i] >=0:
return(' Yes,list is monotonic non-decreasing')
else:
print('No,not monotonic' non-decreasing)
Similar for non-increasing.
And maybe I can do a kludge to join the code for both.
Someone suggested I look up 'Nums'.I did and it looks a bit high-level ( i.e., black-boxed').
Any idea to cover both cases in a single program?[/i][/code]
 
Last edited by a moderator:
Technology news on Phys.org
Compute a list of the n-1 differences.
Check if the sign of the differences ever changes.
Is a zero real positive or negative?
 
  • Like
Likes WWGD
Baluncore said:
Compute a list of the n-1 differences.
Check if the sign of the differences ever changes.
Integers or reals? Is zero positive or negative?
Thanks: Yes, what I do is I loop from 1 to length of the list and test wether (i+i)st -ith item is larger or equal to zero if list is L, then check if L[i+1]-L >=0. But this works for either monotone decreasing or monotone increasing and I am not sure how to integrate both into a single program/algorithm.
 
You only need detect the first change of sign.
Find the first non-zero difference, then compare that with all following differences. If you multiply two adjacent differences and the result is < zero then the list fails the test.
 
  • Like
Likes Vanadium 50, Wrichik Basu and WWGD
Baluncore said:
You only need detect the first change of sign.
Find the first non-zero difference, then compare that with all following differences. If you multiply two adjacent differences and the result is < zero then the list fails the test.
Cool, so I can then iterate over all products LxL[i+1] and if I detect one negative, I return a no, other
ways I conclude it's monotone. Thanks, nice job.
 
But you must not multiply zeros, you must skip them, since they can allow the sign of the difference to flip.
 
  • Like
Likes WWGD
Baluncore said:
Is a zero real positive or negative?
It could be either. The IEEE 754 specification of floating point numbers has separate representations for -0 and +0. Most programming languages these days adhere to this specification as far as floating point reals are concerned.
 
  • Informative
Likes anorlunda
Loops in python tend to be quite slow. I'd suspect it would be faster (possibly a lot faster) to use list comprehensions and the cmp() and any() or all() functions to get the signs of the differences and a summary of those signs.
 
  • Like
Likes pasmith
How's it going? Does your answer look anything like mine?
Python:
from functools import reduce

# myList = [ ... ]

isIncreasing, isDecreasing, _ = reduce(
    lambda s, el: [s[0] and el >= s[2], s[1] and el <= s[2], el],
    myList,
    [True, True, myList[0]]
)

# Show whether increasing, decreasing, constant (T, T) or none (F, F).
print(isIncreasing, isDecreasing)

# Just show True iff loosely monotonic (including constant).
print(isIncreasing or isDecreasing)
 
Last edited:
  • #10
Just check the first two:
  • If a2<a1 check if the rest is descending.
  • If a2=a1 then not monotonic.
  • If a2>a1 check if the rest is ascending.
 
  • #11
Svein said:
  • If a2=a1 then not monotonic.
No, we are not looking for strict monotonicity.
 
  • #12
pbuk said:
No, we are not looking for strict monotonicity.
WWGD said:
Summary:: Given a list of Real numbers in Python , how do we tell if its terms are monotonic,i.e., if they are in strictly non-decreasing or strictly non-increasing order. I know how to do either one; either strictly increasing,strictly decreasing or both.
Now even I am not strictly non-confused.
 
  • Like
  • Haha
Likes Vanadium 50 and pbuk
  • #13
Baluncore said:
Now even I am not strictly non-confused.
To be fair Mathworld, as well as Wikipedia use similar confusing definitions. I was working on the basis that the use of the >= test rather than > in posts #1 and #3 made it clear that we were not looking for strictness.
 
  • #14
Baluncore said:
But you must not multiply zeros, you must skip them, since they can allow the sign of the difference to flip.
I thought of recursively applying the min to the list: If L[1] is the min, L[2] is the min of the remaining terms, etc.
 
  • #15
Baluncore said:
Now even I am not strictly non-confused.
Ok, my bad, let's do just non decreasing/increasing for both.
 
  • #16
WWGD said:
Ok, my bad, let's do just non decreasing/increasing for both.
That's still confusing: 'strictly increasing' is a lot easier to parse than 'non decreasing', and 'strictly monotonic' is certainly easier than 'non-(decreasing/increasing)'.

Have you got anything working yet - I could see a few problems in your first post?
 
  • #17
pbuk said:
I was working on the basis that the use of the >= test rather than > in posts #1 and #3 made it clear that we were not looking for strictness.
We are working with real numbers, so I assumed that duplicates were as acceptable as a one LSB difference in any floating point representation. The critical thing being that it does not change direction.
 
  • Like
Likes pbuk
  • #18
Deleted: going back to reread the OP!
 
Last edited:
  • #19
WWGD said:
Given a list of Real numbers in Python
There is no such thing as a list of real numbers in Python: we can have a list of floats though, is this what you mean?

WWGD said:
how do we tell if its terms are monotonic
By this I assume you don't mean strictly monotonic...

WWGD said:
,i.e., if they are in strictly non-decreasing or strictly non-increasing order.
... and this confirms that you don't mean strictly monotonic (strictly non-decreasing is the same as non-strictly increasing etc.)

WWGD said:
I know how to do either one; either strictly increasing,strictly decreasing or both.
But now you are testing for strict monotonicity which is not what you want!

WWGD said:
Python:
if L[i+1]-L[i] >=0:
But this test does not give you strictly increasing because equal values pass!

WWGD said:
Ok, my bad, let's do just non decreasing/increasing for both.
And now you are confirming you don't want strictness!

Probably best to leave this horrible confusion and start again if you are still interested. Note however that if this is another interview question the interviewer could be more interested in a discussion about the advantages and disadvantages of solving it with a loop rather than a reduce as I did, or a combination of list comprehensions as somebody else suggested rather than the actual coding of a working solution, which ought to be pretty easy.
 
Last edited:
  • #20
WWGD said:
Summary:: Given a list of Real numbers in Python , how do we tell if its terms are monotonic,i.e., if they are in strictly non-decreasing or strictly non-increasing order. I know how to do either one; either strictly increasing,strictly decreasing or both.

Given a list [ a,b,c,..., z] in Python, write a program to determine if the terms are monotonic or not. I can do either , and combine theminto a long, clunky program, but trying to see if I can find a succint way of doing both. I have heard that using ' Nums' may do it,but it seems too high-level for my taste.

For, say, non-decreasing we can do something like :

Python:
List=L=[ a1, a2,...,an]
for i in in range(length(L)):
if L[i+1]-L[i] >=0:
return(' Yes,list is monotonic non-decreasing')
else:
print('No,not monotonic' non-decreasing)
Similar for non-increasing.
And maybe I can do a kludge to join the code for both.
Someone suggested I look up 'Nums'.I did and it looks a bit high-level ( i.e., black-boxed').
Any idea to cover both cases in a single program?[/i][/code]

Try this. I think its pretty clear and fast.

Python:
def is_monotonic(xlist):
    xlist_sorted_inc = sorted(xlist)
    xlist_sorted_dec = sorted(xlist)[::-1]
    if xlist == xlist_sorted_inc or  xlist == xlist_sorted_dec:
        return 'monotonic'
    return 'not monotonic'
 
Last edited:
  • Like
Likes WWGD
  • #21
Here is a non-python fast algorithm that uses one loop, written in VB pseudocode.
[CODE title="VB"]' test list of floats for monotonicity, duplicates are OK.

Const As Integer n = 5
Dim As Double a( 1 To n ) = { 1, 1, 2, 2, 1 } ' a list

Dim As Boolean mono_flag = True
Dim As Double diff, last_diff = 0
For i As Integer = 2 To n
diff = a( i - 1 ) - a( i )
If diff <> 0 Then ' not a duplicate
If ( diff * last_diff ) < 0 Then ' sign changed
mono_flag = False
Exit For ' may as well quit
End If
last_diff = diff
End If
Next i

' report result
If mono_flag Then
Print " monotonic pass "
Else
Print " fails test"
End If
[/CODE]
 
  • #22
Arman777 said:
Try this. I think its pretty clear and fast.

Python:
def is_monotonic(xlist):
    xlist_sorted_inc = sorted(xlist)
    xlist_sorted_dec = sorted(xlist)[::-1]
    if xlist == xlist_sorted_inc or  xlist == xlist_sorted_dec:
        return 'not monotonic'
    return 'monotonic'
Isn't the logic flipped here? If the list is equal to a sorted copy then it's monotonic.
 
  • Like
Likes Arman777
  • #23
Ibix said:
Isn't the logic flipped here? If the list is equal to a sorted copy then it's monotonic.
Yes, sorry. I kind of mixed the definition of 'monotonic'. I fixed it
 
  • Like
Likes Ibix
  • #24
When you got it working for longer lists think about what should happen if the list has zero or one element. :wink:
 
  • #25
Arman777 said:
Python:
def is_monotonic(xlist):
    xlist_sorted_inc = sorted(xlist)
    xlist_sorted_dec = sorted(xlist)[::-1]
    if xlist == xlist_sorted_inc or  xlist == xlist_sorted_dec:
        return 'monotonic'
    return 'not monotonic'
Questions:
  1. Do you know another way to do sorted(xlist)[::-1]?
  2. If so, why did you choose that way?
  3. You create the descending list immediately after creating the ascending list. Can you think of something else you could do first?
  4. Is 'monotonic' the kind of return value you would normally expect from a function called is_monotonic()?
  5. Can you think of a situation where sorting a list to see if it is monotonic might not be a good idea?
 
  • #26
pbuk said:
Do you know another way to do sorted(xlist)[::-1]?
yes
pbuk said:
If so, why did you choose that way?
theres no reason.
pbuk said:
Is 'monotonic' the kind of return value you would normally expect from a function called is_monotonic()?
You can return True or False as well.
pbuk said:
Can you think of a situation where sorting a list to see if it is monotonic might not be a good idea?
I don't know...
 
  • #27
Arman777 said:
.
I don't know...

Efficiency is often overrated, but what is the asymptotic time it takes to run your algorithm, vs something that just goes through the list twice to check each form of monotonicity?
 
  • #28
Sorting a list is O(n log n). Checking a list once is O(n).
Avoid sorting long lists, twice.
Python:
def is_monotonic( a: float ) -> bool:
    last_diff = 0.0
    for i in range( 1, len( a ) ):
        diff = a[ i-1 ] - a[ i ]
        if diff != 0.0:         # is not a duplicate
            if ( diff * last_diff ) < 0.0:
                return False    # diff changed sign
            last_diff = diff
    return True

a = [ 3, 2, 2, -1, -1 ]         # a list
print( a, is_monotonic( a ) )
 
Last edited:
  • Like
Likes Arman777
  • #29
Office_Shredder said:
Efficiency is often overrated, but what is the asymptotic time it takes to run your algorithm, vs something that just goes through the list twice to check each form of monotonicity?
If I am not mistaken its in the order ##O(n)##.
 
  • #30
Office_Shredder said:
Efficiency is often overrated, but what is the asymptotic time it takes to run your algorithm, vs something that just goes through the list twice to check each form of monotonicity?
You only need to scan the list once if you test for a sign change of the first difference.
If you use sort you must do it twice, once for ascending and once for descending.
But with Python the aim is to write the minimum source code, in a way that can be quickly understood. Sorting twice will win under that measure.

A monotonicity test is not the type of algorithm I would expect to find inside a tight loop, or running 50,000 times each day. If you only run the test once each day, on a 100 element list, then efficiency is irrelevant.
 

Similar threads

Replies
1
Views
2K
Replies
4
Views
2K
Replies
6
Views
3K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 2 ·
Replies
2
Views
997
  • · Replies 28 ·
Replies
28
Views
4K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 10 ·
Replies
10
Views
3K