-
Notifications
You must be signed in to change notification settings - Fork 1
/
results_335.csv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 6.
2681 lines (2681 loc) · 356 KB
/
results_335.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
hash info_freq info_long info_complex info_deal_complex id part confidence answer correct correctValue time
af4e28356db36dad9b54d22db29f935e 1 3 2 2 975 sim 3 a a sin(x + 3.14) + 7 556251
af4e28356db36dad9b54d22db29f935e 1 3 2 2 449 sim 4 b b 15.0 556251
af4e28356db36dad9b54d22db29f935e 1 3 2 2 229 sim 4 d d -1.0 556251
af4e28356db36dad9b54d22db29f935e 1 3 2 2 808 sim 2 c c (x^0.5 + 2)^0.5 556251
af4e28356db36dad9b54d22db29f935e 1 3 2 2 864 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 556251
af4e28356db36dad9b54d22db29f935e 1 3 2 2 965 dec 2 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 556251
af4e28356db36dad9b54d22db29f935e 1 3 2 2 233 dec 3 b b The function is never negative 556251
af4e28356db36dad9b54d22db29f935e 1 3 2 2 811 dec 2 d b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 556251
8afceae5d224126bd2e4d17536ef0d45 3 4 1 2 551 sim 3 b d -50.11 170367
8afceae5d224126bd2e4d17536ef0d45 3 4 1 2 984 sim 4 b b 6*cos(x - 1.57) + 5 170367
8afceae5d224126bd2e4d17536ef0d45 3 4 1 2 282 sim 1 c b 0.11 170367
8afceae5d224126bd2e4d17536ef0d45 3 4 1 2 133 sim 1 c d 2541.76 170367
8afceae5d224126bd2e4d17536ef0d45 3 4 1 2 572 dec 1 c d The function is never negative 170367
8afceae5d224126bd2e4d17536ef0d45 3 4 1 2 411 dec 1 a a The function is defined on the whole interval 170367
8afceae5d224126bd2e4d17536ef0d45 3 4 1 2 698 dec 2 b c The function is never negative 170367
8afceae5d224126bd2e4d17536ef0d45 3 4 1 2 303 dec 2 c c The function is defined on the whole interval 170367
a54204ed3cfc3bc1586b096399b51c06 2 3 2 2 821 sim 4 c c x + 3 561586
a54204ed3cfc3bc1586b096399b51c06 2 3 2 2 336 sim 3 b c 0.07 561586
a54204ed3cfc3bc1586b096399b51c06 2 3 2 2 151 sim 3 a a 3.52 561586
a54204ed3cfc3bc1586b096399b51c06 2 3 2 2 872 sim 4 b b sin(x - 1.57) 561586
a54204ed3cfc3bc1586b096399b51c06 2 3 2 2 262 dec 2 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 561586
a54204ed3cfc3bc1586b096399b51c06 2 3 2 2 494 dec 2 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 561586
a54204ed3cfc3bc1586b096399b51c06 2 3 2 2 810 dec 4 b b The function is defined on the whole interval 561586
a54204ed3cfc3bc1586b096399b51c06 2 3 2 2 775 dec 2 c d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 561586
bee477586ffded644350772d89fff8e7 2 3 2 2 531 sim 3 d a -0.01 419457
bee477586ffded644350772d89fff8e7 2 3 2 2 972 sim 4 a a 60.9 419457
bee477586ffded644350772d89fff8e7 2 3 2 2 741 sim 4 c c 1.0 419457
bee477586ffded644350772d89fff8e7 2 3 2 2 616 sim 4 a a 1.0 419457
bee477586ffded644350772d89fff8e7 2 3 2 2 634 dec 4 b b The function is never negative 419457
bee477586ffded644350772d89fff8e7 2 3 2 2 712 dec 3 c c The function is never negative 419457
bee477586ffded644350772d89fff8e7 2 3 2 2 255 dec 3 c c The function is defined on the whole interval 419457
bee477586ffded644350772d89fff8e7 2 3 2 2 991 dec 4 b d The function is never negative 419457
fbffb27f38cdef792269745a077e0ab0 3 4 2 2 77 sim 4 b b 5.96 672251
fbffb27f38cdef792269745a077e0ab0 3 4 2 2 997 sim 4 c c sin(3.14*x)/cos(3.14*x) 672251
fbffb27f38cdef792269745a077e0ab0 3 4 2 2 253 sim 3 d d 8.76 672251
fbffb27f38cdef792269745a077e0ab0 3 4 2 2 624 sim 4 a a 9.0 672251
fbffb27f38cdef792269745a077e0ab0 3 4 2 2 509 dec 4 c c The function is defined on the whole interval 672251
fbffb27f38cdef792269745a077e0ab0 3 4 2 2 312 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 672251
fbffb27f38cdef792269745a077e0ab0 3 4 2 2 420 dec 4 d d The function is negative at some point 672251
fbffb27f38cdef792269745a077e0ab0 3 4 2 2 865 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 672251
7c3bab277a950117bc7b2a781f0e1e9b 3 4 1 2 814 sim 4 b b 1.71*cos(x)^4 + 4 194440
7c3bab277a950117bc7b2a781f0e1e9b 3 4 1 2 348 sim 3 b d -1.0 194440
7c3bab277a950117bc7b2a781f0e1e9b 3 4 1 2 308 sim 3 a a 1.0 194440
7c3bab277a950117bc7b2a781f0e1e9b 3 4 1 2 264 sim 3 c c 55.0 194440
7c3bab277a950117bc7b2a781f0e1e9b 3 4 1 2 720 dec 2 a a The function is defined on the whole interval 194440
7c3bab277a950117bc7b2a781f0e1e9b 3 4 1 2 4 dec 2 b a The function is defined on the whole interval 194440
7c3bab277a950117bc7b2a781f0e1e9b 3 4 1 2 789 dec 2 a d The function is never zero 194440
7c3bab277a950117bc7b2a781f0e1e9b 3 4 1 2 954 dec 2 b a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 194440
467cb0ea606c62188e4d27b74efd2f5a 3 4 2 2 371 sim 4 a a 116.12 1037125
467cb0ea606c62188e4d27b74efd2f5a 3 4 2 2 499 sim 4 a a 9.99 1037125
467cb0ea606c62188e4d27b74efd2f5a 3 4 2 2 363 sim 4 a a 8.8 1037125
467cb0ea606c62188e4d27b74efd2f5a 3 4 2 2 871 sim 4 a a 4.1 1037125
467cb0ea606c62188e4d27b74efd2f5a 3 4 2 2 258 dec 4 b b The function is never negative 1037125
467cb0ea606c62188e4d27b74efd2f5a 3 4 2 2 64 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1037125
467cb0ea606c62188e4d27b74efd2f5a 3 4 2 2 754 dec 4 d a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 1037125
467cb0ea606c62188e4d27b74efd2f5a 3 4 2 2 863 dec 4 d d The function is defined on the whole interval 1037125
b58ce3c5e20adeb1095e9b34176547ef 3 4 2 3 258 sim 4 d d 6.0 603982
b58ce3c5e20adeb1095e9b34176547ef 3 4 2 3 883 sim 4 c c (x/(-x + 4))^0.5 603982
b58ce3c5e20adeb1095e9b34176547ef 3 4 2 3 335 sim 4 a a 29.21 603982
b58ce3c5e20adeb1095e9b34176547ef 3 4 2 3 280 sim 4 a a 14.0 603982
b58ce3c5e20adeb1095e9b34176547ef 3 4 2 3 748 dec 3 c c The function is defined on the whole interval 603982
b58ce3c5e20adeb1095e9b34176547ef 3 4 2 3 720 dec 3 a a The function is defined on the whole interval 603982
b58ce3c5e20adeb1095e9b34176547ef 3 4 2 3 916 dec 3 c c The function is defined on the whole interval 603982
b58ce3c5e20adeb1095e9b34176547ef 3 4 2 3 330 dec 3 d d The function is never zero 603982
e8372020a6dc5b8462f47c54164bd252 3 4 2 3 337 sim 4 c c 10.84 501748
e8372020a6dc5b8462f47c54164bd252 3 4 2 3 75 sim 4 b b 55.0 501748
e8372020a6dc5b8462f47c54164bd252 3 4 2 3 193 sim 4 a a 137.41 501748
e8372020a6dc5b8462f47c54164bd252 3 4 2 3 429 sim 4 a a 1.0 501748
e8372020a6dc5b8462f47c54164bd252 3 4 2 3 180 dec 4 c c The function is never negative 501748
e8372020a6dc5b8462f47c54164bd252 3 4 2 3 520 dec 3 a b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 501748
e8372020a6dc5b8462f47c54164bd252 3 4 2 3 930 dec 4 c c The function is never negative 501748
e8372020a6dc5b8462f47c54164bd252 3 4 2 3 538 dec 4 b b The function is defined on the whole interval 501748
ca9daa5988b1f9341856176438a55876 2 3 1 2 465 sim 3 b b 2186.99 856843
ca9daa5988b1f9341856176438a55876 2 3 1 2 418 sim 3 d d -15.0 856843
ca9daa5988b1f9341856176438a55876 2 3 1 2 598 sim 3 d d -9524.0 856843
ca9daa5988b1f9341856176438a55876 2 3 1 2 152 sim 3 a a -6.01 856843
ca9daa5988b1f9341856176438a55876 2 3 1 2 937 dec 3 a a The function is defined on the whole interval 856843
ca9daa5988b1f9341856176438a55876 2 3 1 2 359 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 856843
ca9daa5988b1f9341856176438a55876 2 3 1 2 164 dec 3 d d The function is zero at some point 856843
ca9daa5988b1f9341856176438a55876 2 3 1 2 416 dec 3 a a The function is never negative 856843
952e67c281917fb61377a6526b9ae392 2 4 2 2 326 sim 3 d d 2 + 6/sin(x + 3.14) 696745
952e67c281917fb61377a6526b9ae392 2 4 2 2 701 sim 3 c a 1.0 696745
952e67c281917fb61377a6526b9ae392 2 4 2 2 560 sim 2 c b 1.0 696745
952e67c281917fb61377a6526b9ae392 2 4 2 2 384 sim 3 d d 0.93 696745
952e67c281917fb61377a6526b9ae392 2 4 2 2 95 dec 2 d d The function is defined on the whole interval 696745
952e67c281917fb61377a6526b9ae392 2 4 2 2 923 dec 2 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 696745
952e67c281917fb61377a6526b9ae392 2 4 2 2 378 dec 3 d a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 696745
952e67c281917fb61377a6526b9ae392 2 4 2 2 349 dec 3 b b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 696745
6663cc44bdd239701446108ba240d598 3 4 2 2 632 sim 2 c c 140.31 586086
6663cc44bdd239701446108ba240d598 3 4 2 2 974 sim 3 a b cos(x + 1.57) + 1/(8*x + 2) 586086
6663cc44bdd239701446108ba240d598 3 4 2 2 278 sim 3 b b -0.48 586086
6663cc44bdd239701446108ba240d598 3 4 2 2 843 sim 3 d c 7 + 4/x 586086
6663cc44bdd239701446108ba240d598 3 4 2 2 830 dec 2 c c The function is never zero 586086
6663cc44bdd239701446108ba240d598 3 4 2 2 747 dec 1 a a The function is negative at some point 586086
6663cc44bdd239701446108ba240d598 3 4 2 2 493 dec 1 b a The function is defined on the whole interval 586086
6663cc44bdd239701446108ba240d598 3 4 2 2 190 dec 3 d a The function is defined on the whole interval 586086
abb9581864ec05103b61ef391137be7d 3 4 2 2 633 sim 3 c c 1.0 668487
abb9581864ec05103b61ef391137be7d 3 4 2 2 928 sim 2 b b -8/sin(x - 3.14) 668487
abb9581864ec05103b61ef391137be7d 3 4 2 2 723 sim 3 a a 0.77 668487
abb9581864ec05103b61ef391137be7d 3 4 2 2 101 sim 3 d d 0.19 668487
abb9581864ec05103b61ef391137be7d 3 4 2 2 791 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 668487
abb9581864ec05103b61ef391137be7d 3 4 2 2 363 dec 4 d d The function is never negative 668487
abb9581864ec05103b61ef391137be7d 3 4 2 2 472 dec 2 d b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 668487
abb9581864ec05103b61ef391137be7d 3 4 2 2 512 dec 2 d b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 668487
16cb4ce0924feeb472423f53a0e076e2 3 4 1 3 218 sim 3 a a 12.4 509588
16cb4ce0924feeb472423f53a0e076e2 3 4 1 3 146 sim 3 c c -23.68 509588
16cb4ce0924feeb472423f53a0e076e2 3 4 1 3 381 sim 3 b c -297.25 509588
16cb4ce0924feeb472423f53a0e076e2 3 4 1 3 773 sim 2 b b cos(1.57*x)*cos(x + 3.14) 509588
16cb4ce0924feeb472423f53a0e076e2 3 4 1 3 661 dec 3 b b The function is defined on the whole interval 509588
16cb4ce0924feeb472423f53a0e076e2 3 4 1 3 480 dec 3 a a The function is never negative 509588
16cb4ce0924feeb472423f53a0e076e2 3 4 1 3 932 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 509588
16cb4ce0924feeb472423f53a0e076e2 3 4 1 3 228 dec 3 d d The function is defined on the whole interval 509588
cfb594a0ca2eb79f79e081c2b270d591 2 1 2 2 791 sim 3 c d -cos(x + 3.14) + 8 404761
cfb594a0ca2eb79f79e081c2b270d591 2 1 2 2 133 sim 3 d d 2541.76 404761
cfb594a0ca2eb79f79e081c2b270d591 2 1 2 2 901 sim 2 b c 3*(-sin(x - 1.57))^0.5 404761
cfb594a0ca2eb79f79e081c2b270d591 2 1 2 2 770 sim 2 c c sin(x + 3.14) + cos(3.14*x)^3 404761
cfb594a0ca2eb79f79e081c2b270d591 2 1 2 2 840 dec 3 c d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 404761
cfb594a0ca2eb79f79e081c2b270d591 2 1 2 2 707 dec 3 a c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 404761
cfb594a0ca2eb79f79e081c2b270d591 2 1 2 2 634 dec 3 b b The function is never negative 404761
cfb594a0ca2eb79f79e081c2b270d591 2 1 2 2 473 dec 3 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 404761
4332f5f14eee1edb46697ecf39f50a87 3 2 1 2 173 sim 3 a a 13.61 422731
4332f5f14eee1edb46697ecf39f50a87 3 2 1 2 724 sim 2 d d 1.0 422731
4332f5f14eee1edb46697ecf39f50a87 3 2 1 2 913 sim 4 d d sin(x - 3.14) 422731
4332f5f14eee1edb46697ecf39f50a87 3 2 1 2 185 sim 4 d d 13.56 422731
4332f5f14eee1edb46697ecf39f50a87 3 2 1 2 449 dec 3 d d The function is defined on the whole interval 422731
4332f5f14eee1edb46697ecf39f50a87 3 2 1 2 234 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 422731
4332f5f14eee1edb46697ecf39f50a87 3 2 1 2 608 dec 3 c a The function is zero at some point 422731
4332f5f14eee1edb46697ecf39f50a87 3 2 1 2 595 dec 4 a a The function is defined on the whole interval 422731
fb114d0649bfe1c76e09eca3d204aa74 3 4 2 3 307 sim 4 c c 5*x + 4 748115
fb114d0649bfe1c76e09eca3d204aa74 3 4 2 3 835 sim 3 d d cos(x - 3.14)^9 748115
fb114d0649bfe1c76e09eca3d204aa74 3 4 2 3 222 sim 3 a a -0.05 748115
fb114d0649bfe1c76e09eca3d204aa74 3 4 2 3 508 sim 3 c c 36.0 748115
fb114d0649bfe1c76e09eca3d204aa74 3 4 2 3 96 dec 3 a a The function is never negative 748115
fb114d0649bfe1c76e09eca3d204aa74 3 4 2 3 262 dec 3 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 748115
fb114d0649bfe1c76e09eca3d204aa74 3 4 2 3 13 dec 3 d d The function is defined on the whole interval 748115
fb114d0649bfe1c76e09eca3d204aa74 3 4 2 3 49 dec 3 b b The function is defined on the whole interval 748115
b9d73ab06056a77885edfd241ba9d652 2 2 1 3 242 sim 3 a a 1.71 556229
b9d73ab06056a77885edfd241ba9d652 2 2 1 3 259 sim 4 c c 22.84 556229
b9d73ab06056a77885edfd241ba9d652 2 2 1 3 721 sim 4 a a 1.0 556229
b9d73ab06056a77885edfd241ba9d652 2 2 1 3 915 sim 4 c c -sin(3.14*x) 556229
b9d73ab06056a77885edfd241ba9d652 2 2 1 3 18 dec 3 b d The function is defined on the whole interval 556229
b9d73ab06056a77885edfd241ba9d652 2 2 1 3 654 dec 3 d b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 556229
b9d73ab06056a77885edfd241ba9d652 2 2 1 3 181 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 556229
b9d73ab06056a77885edfd241ba9d652 2 2 1 3 227 dec 3 b b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 556229
772b889520b5516a75aab87329f6b342 3 4 3 2 845 sim 4 a a sin(3.14*x) + sin(x - 1.57) + 9 449746
772b889520b5516a75aab87329f6b342 3 4 3 2 783 sim 4 d d sin(1.57*x) 449746
772b889520b5516a75aab87329f6b342 3 4 3 2 697 sim 4 c c 3.3 449746
772b889520b5516a75aab87329f6b342 3 4 3 2 955 sim 4 b b -cos(x - 1.57) + 2 449746
772b889520b5516a75aab87329f6b342 3 4 3 2 661 dec 4 b b The function is defined on the whole interval 449746
772b889520b5516a75aab87329f6b342 3 4 3 2 767 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 449746
772b889520b5516a75aab87329f6b342 3 4 3 2 881 dec 4 c c The function is defined on the whole interval 449746
772b889520b5516a75aab87329f6b342 3 4 3 2 741 dec 2 d d The function is defined on the whole interval 449746
3e694b89f3aec388d400e2f24743fd39 3 1 2 3 680 sim 1 a b -1.0 330491
3e694b89f3aec388d400e2f24743fd39 3 1 2 3 385 sim 2 b b 4.95 330491
3e694b89f3aec388d400e2f24743fd39 3 1 2 3 251 sim 1 a a -27.0 330491
3e694b89f3aec388d400e2f24743fd39 3 1 2 3 990 sim 3 b b cos(3.14*x) + 7 330491
3e694b89f3aec388d400e2f24743fd39 3 1 2 3 987 dec 2 d a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 330491
3e694b89f3aec388d400e2f24743fd39 3 1 2 3 509 dec 2 c c The function is defined on the whole interval 330491
3e694b89f3aec388d400e2f24743fd39 3 1 2 3 221 dec 2 d c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 330491
3e694b89f3aec388d400e2f24743fd39 3 1 2 3 129 dec 1 b c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 330491
1f1cbaf2327acad3dea777f73d4b7700 3 3 2 3 34 sim 4 b b 1310.01 645436
1f1cbaf2327acad3dea777f73d4b7700 3 3 2 3 460 sim 4 d d 3.0 645436
1f1cbaf2327acad3dea777f73d4b7700 3 3 2 3 589 sim 4 c c 7.0 645436
1f1cbaf2327acad3dea777f73d4b7700 3 3 2 3 541 sim 4 c c 15.03 645436
1f1cbaf2327acad3dea777f73d4b7700 3 3 2 3 30 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 645436
1f1cbaf2327acad3dea777f73d4b7700 3 3 2 3 496 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 645436
1f1cbaf2327acad3dea777f73d4b7700 3 3 2 3 864 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 645436
1f1cbaf2327acad3dea777f73d4b7700 3 3 2 3 580 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 645436
cf1774f57c195c54b0688832a07ae9df 3 4 2 3 831 sim 4 a a cos(x + 1.57) + 4 349596
cf1774f57c195c54b0688832a07ae9df 3 4 2 3 981 sim 4 b b 0^(sin(x + 1.57) + 6) + cos(x - 1.57) 349596
cf1774f57c195c54b0688832a07ae9df 3 4 2 3 359 sim 4 c c 9.03 349596
cf1774f57c195c54b0688832a07ae9df 3 4 2 3 392 sim 2 c d -1.0 349596
cf1774f57c195c54b0688832a07ae9df 3 4 2 3 474 dec 4 a a The function is defined on the whole interval 349596
cf1774f57c195c54b0688832a07ae9df 3 4 2 3 605 dec 4 b a The function is zero at some point 349596
cf1774f57c195c54b0688832a07ae9df 3 4 2 3 963 dec 4 c c The function is zero at some point 349596
cf1774f57c195c54b0688832a07ae9df 3 4 2 3 809 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 349596
c8b0616606cfb709e03f87e6fee4f4ea 3 4 3 3 873 sim 4 a a -x^3 493691
c8b0616606cfb709e03f87e6fee4f4ea 3 4 3 3 449 sim 3 b b 15.0 493691
c8b0616606cfb709e03f87e6fee4f4ea 3 4 3 3 349 sim 4 c d 9.0 493691
c8b0616606cfb709e03f87e6fee4f4ea 3 4 3 3 947 sim 3 a a (x + 4)^0.5 493691
c8b0616606cfb709e03f87e6fee4f4ea 3 4 3 3 45 dec 2 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 493691
c8b0616606cfb709e03f87e6fee4f4ea 3 4 3 3 795 dec 2 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 493691
c8b0616606cfb709e03f87e6fee4f4ea 3 4 3 3 281 dec 3 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 493691
c8b0616606cfb709e03f87e6fee4f4ea 3 4 3 3 996 dec 4 c c The function is negative at some point 493691
fec71d1dab2e506acca38a37a559221e 1 1 1 1 88 sim 3 a a 61.86 2212919
fec71d1dab2e506acca38a37a559221e 1 1 1 1 659 sim 2 a a -13.44 2212919
fec71d1dab2e506acca38a37a559221e 1 1 1 1 418 sim 3 d d -15.0 2212919
fec71d1dab2e506acca38a37a559221e 1 1 1 1 195 sim 2 a b 1258.49 2212919
fec71d1dab2e506acca38a37a559221e 1 1 1 1 790 dec 1 c c The function is defined on the whole interval 2212919
fec71d1dab2e506acca38a37a559221e 1 1 1 1 558 dec 1 c a The function is defined on the whole interval 2212919
fec71d1dab2e506acca38a37a559221e 1 1 1 1 449 dec 1 a d The function is defined on the whole interval 2212919
fec71d1dab2e506acca38a37a559221e 1 1 1 1 779 dec 1 b a The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 2212919
7db502a0a8e3a593ee2953c69f90bdfc 3 4 2 3 324 sim 3 a a 0.02 659601
7db502a0a8e3a593ee2953c69f90bdfc 3 4 2 3 242 sim 3 a a 1.71 659601
7db502a0a8e3a593ee2953c69f90bdfc 3 4 2 3 487 sim 3 b b -2178.09 659601
7db502a0a8e3a593ee2953c69f90bdfc 3 4 2 3 284 sim 3 c c 8*3^(x^0.5) 659601
7db502a0a8e3a593ee2953c69f90bdfc 3 4 2 3 127 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 659601
7db502a0a8e3a593ee2953c69f90bdfc 3 4 2 3 94 dec 3 a a The function is defined on the whole interval 659601
7db502a0a8e3a593ee2953c69f90bdfc 3 4 2 3 49 dec 3 b b The function is defined on the whole interval 659601
7db502a0a8e3a593ee2953c69f90bdfc 3 4 2 3 5 dec 3 a a The function is never zero 659601
a92d45bfbb0c0fd5f6c726923133ff35 3 1 3 3 637 sim 4 a a 0.4 933917
a92d45bfbb0c0fd5f6c726923133ff35 3 1 3 3 863 sim 3 c b -0.09 933917
a92d45bfbb0c0fd5f6c726923133ff35 3 1 3 3 715 sim 3 a c -7.0 933917
a92d45bfbb0c0fd5f6c726923133ff35 3 1 3 3 578 sim 4 b b -1.0 933917
a92d45bfbb0c0fd5f6c726923133ff35 3 1 3 3 531 dec 4 b b The function is defined on the whole interval 933917
a92d45bfbb0c0fd5f6c726923133ff35 3 1 3 3 835 dec 4 c c The function is negative at some point 933917
a92d45bfbb0c0fd5f6c726923133ff35 3 1 3 3 654 dec 4 b b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 933917
a92d45bfbb0c0fd5f6c726923133ff35 3 1 3 3 28 dec 2 a a The function is defined on the whole interval 933917
9e6ab6e4281318a48b609b86e068e802 3 3 3 3 997 sim 3 c c sin(3.14*x)/cos(3.14*x) 436018
9e6ab6e4281318a48b609b86e068e802 3 3 3 3 99 sim 4 d d 40.0 436018
9e6ab6e4281318a48b609b86e068e802 3 3 3 3 968 sim 4 a a -3/sin(x - 1.57) 436018
9e6ab6e4281318a48b609b86e068e802 3 3 3 3 599 sim 4 b b 1.0 436018
9e6ab6e4281318a48b609b86e068e802 3 3 3 3 73 dec 3 d d The function is never zero 436018
9e6ab6e4281318a48b609b86e068e802 3 3 3 3 793 dec 4 b b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 436018
9e6ab6e4281318a48b609b86e068e802 3 3 3 3 86 dec 4 d d The function is never zero 436018
9e6ab6e4281318a48b609b86e068e802 3 3 3 3 617 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 436018
6c4f7695254b29b98321fd936abf1081 2 2 1 2 130 sim 3 b b 1352.66 492523
6c4f7695254b29b98321fd936abf1081 2 2 1 2 507 sim 3 d d 4.8 492523
6c4f7695254b29b98321fd936abf1081 2 2 1 2 235 sim 2 b b 2.24 492523
6c4f7695254b29b98321fd936abf1081 2 2 1 2 303 sim 2 a a 2.72 492523
6c4f7695254b29b98321fd936abf1081 2 2 1 2 335 dec 2 c c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 492523
6c4f7695254b29b98321fd936abf1081 2 2 1 2 390 dec 2 a b The function is defined on the whole interval 492523
6c4f7695254b29b98321fd936abf1081 2 2 1 2 951 dec 2 a a The function is never negative 492523
6c4f7695254b29b98321fd936abf1081 2 2 1 2 160 dec 1 a a The function is defined on the whole interval 492523
e03111330680c2ba21dbfb3c72b417e2 3 4 3 3 728 sim 4 b b 165.0 878525
e03111330680c2ba21dbfb3c72b417e2 3 4 3 3 909 sim 3 d d sin(3.14*x) + 7 878525
e03111330680c2ba21dbfb3c72b417e2 3 4 3 3 865 sim 3 b b sin(3.14*x)^9 878525
e03111330680c2ba21dbfb3c72b417e2 3 4 3 3 403 sim 4 d d 881.6 878525
e03111330680c2ba21dbfb3c72b417e2 3 4 3 3 896 dec 4 c c The function is defined on the whole interval 878525
e03111330680c2ba21dbfb3c72b417e2 3 4 3 3 593 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 878525
e03111330680c2ba21dbfb3c72b417e2 3 4 3 3 94 dec 4 a a The function is defined on the whole interval 878525
e03111330680c2ba21dbfb3c72b417e2 3 4 3 3 636 dec 4 c c The function is negative at some point 878525
251c17733e3e8d8dfd8d585d43768a27 1 4 1 2 394 sim 4 b b 49.0 3804969
251c17733e3e8d8dfd8d585d43768a27 1 4 1 2 599 sim 3 b b 1.0 3804969
251c17733e3e8d8dfd8d585d43768a27 1 4 1 2 44 sim 2 c a -40.08 3804969
251c17733e3e8d8dfd8d585d43768a27 1 4 1 2 86 sim 4 b d 6556.0 3804969
251c17733e3e8d8dfd8d585d43768a27 1 4 1 2 644 dec 2 a d The function is never zero 3804969
251c17733e3e8d8dfd8d585d43768a27 1 4 1 2 788 dec 2 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 3804969
251c17733e3e8d8dfd8d585d43768a27 1 4 1 2 779 dec 3 a a The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 3804969
251c17733e3e8d8dfd8d585d43768a27 1 4 1 2 534 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 3804969
4160aace109379e81e754172a38bef30 3 4 3 3 683 sim 4 b b 8.99 941662
4160aace109379e81e754172a38bef30 3 4 3 3 712 sim 4 b c 9.0 941662
4160aace109379e81e754172a38bef30 3 4 3 3 904 sim 4 c c cos(x - 1.57) + cos(x + 3.14) 941662
4160aace109379e81e754172a38bef30 3 4 3 3 160 sim 4 d d 5.01 941662
4160aace109379e81e754172a38bef30 3 4 3 3 222 dec 4 b b The function is never zero 941662
4160aace109379e81e754172a38bef30 3 4 3 3 903 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 941662
4160aace109379e81e754172a38bef30 3 4 3 3 719 dec 4 d d The function is never zero 941662
4160aace109379e81e754172a38bef30 3 4 3 3 505 dec 4 a a The function is never zero 941662
773ed0aebb8a3e339af52979f24ac819 3 4 3 3 968 sim 4 a a -3/sin(x - 1.57) 933980
773ed0aebb8a3e339af52979f24ac819 3 4 3 3 849 sim 4 b b -7*sin(x - 1.57)*sin(x + 1.57) 933980
773ed0aebb8a3e339af52979f24ac819 3 4 3 3 147 sim 4 d d 16.6 933980
773ed0aebb8a3e339af52979f24ac819 3 4 3 3 335 sim 4 a a 29.21 933980
773ed0aebb8a3e339af52979f24ac819 3 4 3 3 389 dec 4 c c The function is never negative 933980
773ed0aebb8a3e339af52979f24ac819 3 4 3 3 249 dec 4 b b The function is never negative 933980
773ed0aebb8a3e339af52979f24ac819 3 4 3 3 931 dec 4 d d The function is never zero 933980
773ed0aebb8a3e339af52979f24ac819 3 4 3 3 174 dec 4 d d The function is never negative 933980
737d0ffe8ef1ecaebdc9a95da17cb14c 3 4 3 2 607 sim 4 b b 18.28 575225
737d0ffe8ef1ecaebdc9a95da17cb14c 3 4 3 2 527 sim 3 d d -95.39 575225
737d0ffe8ef1ecaebdc9a95da17cb14c 3 4 3 2 165 sim 3 c d 0.28 575225
737d0ffe8ef1ecaebdc9a95da17cb14c 3 4 3 2 64 sim 3 a a 2.83 575225
737d0ffe8ef1ecaebdc9a95da17cb14c 3 4 3 2 852 dec 3 d d The function is zero at some point 575225
737d0ffe8ef1ecaebdc9a95da17cb14c 3 4 3 2 831 dec 4 d d The function is never negative 575225
737d0ffe8ef1ecaebdc9a95da17cb14c 3 4 3 2 414 dec 3 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 575225
737d0ffe8ef1ecaebdc9a95da17cb14c 3 4 3 2 897 dec 4 b b The function is never negative 575225
3d93714f8f0f2acefb069998b4146cab 3 2 3 2 548 sim 3 a a 11.21 497603
3d93714f8f0f2acefb069998b4146cab 3 2 3 2 18 sim 3 c c -2.44 497603
3d93714f8f0f2acefb069998b4146cab 3 2 3 2 754 sim 3 c c 1.0 497603
3d93714f8f0f2acefb069998b4146cab 3 2 3 2 784 sim 4 a a 2*cos(x - 1.57)*cos(x + 3.14) 497603
3d93714f8f0f2acefb069998b4146cab 3 2 3 2 199 dec 2 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 497603
3d93714f8f0f2acefb069998b4146cab 3 2 3 2 548 dec 3 d d The function is never zero 497603
3d93714f8f0f2acefb069998b4146cab 3 2 3 2 744 dec 2 c b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 497603
3d93714f8f0f2acefb069998b4146cab 3 2 3 2 10 dec 2 c c The function is zero at some point 497603
90f874cb829218ebd246bfc303449e6f 3 4 3 3 807 sim 4 c c 9*cos(3.14*x) 194119
90f874cb829218ebd246bfc303449e6f 3 4 3 3 927 sim 4 b b 9*cos(x + 1.57) 194119
90f874cb829218ebd246bfc303449e6f 3 4 3 3 390 sim 4 a a 5.12 194119
90f874cb829218ebd246bfc303449e6f 3 4 3 3 630 sim 4 a a 11.0 194119
90f874cb829218ebd246bfc303449e6f 3 4 3 3 498 dec 4 b a The function is never negative 194119
90f874cb829218ebd246bfc303449e6f 3 4 3 3 628 dec 4 b b The function is never zero 194119
90f874cb829218ebd246bfc303449e6f 3 4 3 3 44 dec 3 d b The function is defined on the whole interval 194119
90f874cb829218ebd246bfc303449e6f 3 4 3 3 972 dec 4 a a The function is never negative 194119
3e443f490f1e64a08033cbff070b629f 3 4 3 3 82 sim 4 c c -3.86 573160
3e443f490f1e64a08033cbff070b629f 3 4 3 3 909 sim 4 d d sin(3.14*x) + 7 573160
3e443f490f1e64a08033cbff070b629f 3 4 3 3 837 sim 3 b b cos(x - 3.14)^0.5 573160
3e443f490f1e64a08033cbff070b629f 3 4 3 3 800 sim 4 b b 0.55 573160
3e443f490f1e64a08033cbff070b629f 3 4 3 3 384 dec 4 d d The function is never zero 573160
3e443f490f1e64a08033cbff070b629f 3 4 3 3 326 dec 4 c c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 573160
3e443f490f1e64a08033cbff070b629f 3 4 3 3 1 dec 4 d d The function is defined on the whole interval 573160
3e443f490f1e64a08033cbff070b629f 3 4 3 3 189 dec 4 c c The function is zero at some point 573160
df4eb3c9a7c10f5eca1a16d71e222969 3 3 2 3 880 sim 3 c c 5*(1/(x + 3))^0.5 1319735
df4eb3c9a7c10f5eca1a16d71e222969 3 3 2 3 521 sim 4 a a -8.0 1319735
df4eb3c9a7c10f5eca1a16d71e222969 3 3 2 3 80 sim 3 b b -4.95 1319735
df4eb3c9a7c10f5eca1a16d71e222969 3 3 2 3 788 sim 3 b b 5^sin(x + 3.14) 1319735
df4eb3c9a7c10f5eca1a16d71e222969 3 3 2 3 898 dec 4 a a The function is never negative 1319735
df4eb3c9a7c10f5eca1a16d71e222969 3 3 2 3 878 dec 2 b d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 1319735
df4eb3c9a7c10f5eca1a16d71e222969 3 3 2 3 781 dec 3 a a The function is never zero 1319735
df4eb3c9a7c10f5eca1a16d71e222969 3 3 2 3 296 dec 4 a a The function is never negative 1319735
40ce8f7c8399fa77c73b65d1611d09a1 3 1 2 3 861 sim 4 a a -cos(x - 3.14) + 3 1029268
40ce8f7c8399fa77c73b65d1611d09a1 3 1 2 3 510 sim 4 a a 1.48 1029268
40ce8f7c8399fa77c73b65d1611d09a1 3 1 2 3 48 sim 4 d d sin(3.14*x)^0.5/cos(x + 3.14) 1029268
40ce8f7c8399fa77c73b65d1611d09a1 3 1 2 3 829 sim 4 d d cos(x - 3.14)/cos(x + 1.57) 1029268
40ce8f7c8399fa77c73b65d1611d09a1 3 1 2 3 884 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1029268
40ce8f7c8399fa77c73b65d1611d09a1 3 1 2 3 864 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1029268
40ce8f7c8399fa77c73b65d1611d09a1 3 1 2 3 338 dec 2 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1029268
40ce8f7c8399fa77c73b65d1611d09a1 3 1 2 3 217 dec 4 d d The function is never zero 1029268
d1cd821f74f1570a0aff0ef118836618 3 4 3 2 545 sim 3 d a 4.27 687906
d1cd821f74f1570a0aff0ef118836618 3 4 3 2 703 sim 3 a a 9.41 687906
d1cd821f74f1570a0aff0ef118836618 3 4 3 2 831 sim 4 a a cos(x + 1.57) + 4 687906
d1cd821f74f1570a0aff0ef118836618 3 4 3 2 195 sim 1 d b 1258.49 687906
d1cd821f74f1570a0aff0ef118836618 3 4 3 2 216 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 687906
d1cd821f74f1570a0aff0ef118836618 3 4 3 2 972 dec 4 a a The function is never negative 687906
d1cd821f74f1570a0aff0ef118836618 3 4 3 2 615 dec 4 c c The function is zero at some point 687906
d1cd821f74f1570a0aff0ef118836618 3 4 3 2 903 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 687906
07fa0983e812c9299acdb45397ef729d 3 4 3 3 636 sim 3 d c -1.0 467163
07fa0983e812c9299acdb45397ef729d 3 4 3 3 790 sim 2 b b sin(3.14*x) + 9 + 3^(-cos(x - 1.57)) 467163
07fa0983e812c9299acdb45397ef729d 3 4 3 3 333 sim 3 a a 5.5 467163
07fa0983e812c9299acdb45397ef729d 3 4 3 3 286 sim 3 d d 21.0 467163
07fa0983e812c9299acdb45397ef729d 3 4 3 3 150 dec 2 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 467163
07fa0983e812c9299acdb45397ef729d 3 4 3 3 270 dec 1 b d The function is defined on the whole interval 467163
07fa0983e812c9299acdb45397ef729d 3 4 3 3 475 dec 3 d d The function is defined on the whole interval 467163
07fa0983e812c9299acdb45397ef729d 3 4 3 3 7 dec 1 a b The function is defined on the whole interval 467163
c25389c11249da63185f99bbfa7f7571 2 1 2 2 927 sim 1 b b 9*cos(x + 1.57) 160705
c25389c11249da63185f99bbfa7f7571 2 1 2 2 902 sim 3 a a 4*x + sin(3.14*x) + 6 160705
c25389c11249da63185f99bbfa7f7571 2 1 2 2 713 sim 1 a c 3.87 160705
c25389c11249da63185f99bbfa7f7571 2 1 2 2 311 sim 1 c a 1.0 160705
c25389c11249da63185f99bbfa7f7571 2 1 2 2 366 dec 1 b d The function is defined on the whole interval 160705
c25389c11249da63185f99bbfa7f7571 2 1 2 2 40 dec 1 b d The function is defined on the whole interval 160705
c25389c11249da63185f99bbfa7f7571 2 1 2 2 537 dec 1 d c The function is never negative 160705
c25389c11249da63185f99bbfa7f7571 2 1 2 2 176 dec 1 a b The function is never zero 160705
e398f3a2783605c98c4247a982bc3e13 1 4 1 2 886 sim 3 b b -sin(x + 3.14) + 6 1102873
e398f3a2783605c98c4247a982bc3e13 1 4 1 2 559 sim 4 b b 13.0 1102873
e398f3a2783605c98c4247a982bc3e13 1 4 1 2 143 sim 4 b b 313.94 1102873
e398f3a2783605c98c4247a982bc3e13 1 4 1 2 661 sim 4 b c 1.0 1102873
e398f3a2783605c98c4247a982bc3e13 1 4 1 2 470 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1102873
e398f3a2783605c98c4247a982bc3e13 1 4 1 2 181 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1102873
e398f3a2783605c98c4247a982bc3e13 1 4 1 2 88 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1102873
e398f3a2783605c98c4247a982bc3e13 1 4 1 2 940 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1102873
037500dc15c972fa696405ba1179a5e6 3 4 3 2 509 sim 4 c c 74.0 758685
037500dc15c972fa696405ba1179a5e6 3 4 3 2 609 sim 4 a a 1.0 758685
037500dc15c972fa696405ba1179a5e6 3 4 3 2 389 sim 4 a a 2.23 758685
037500dc15c972fa696405ba1179a5e6 3 4 3 2 750 sim 4 c c 1.0 758685
037500dc15c972fa696405ba1179a5e6 3 4 3 2 950 dec 2 a d The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 758685
037500dc15c972fa696405ba1179a5e6 3 4 3 2 472 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 758685
037500dc15c972fa696405ba1179a5e6 3 4 3 2 678 dec 4 d d The function is negative at some point 758685
037500dc15c972fa696405ba1179a5e6 3 4 3 2 522 dec 4 b b The function is never negative 758685
f79740032b0903c917561610f508a35b 3 2 2 2 917 sim 4 b b x + 8 169768
f79740032b0903c917561610f508a35b 3 2 2 2 928 sim 1 d b -8/sin(x - 3.14) 169768
f79740032b0903c917561610f508a35b 3 2 2 2 992 sim 2 c a 8*cos(x - 1.57) 169768
f79740032b0903c917561610f508a35b 3 2 2 2 619 sim 1 d a 34.0 169768
f79740032b0903c917561610f508a35b 3 2 2 2 388 dec 1 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 169768
f79740032b0903c917561610f508a35b 3 2 2 2 368 dec 1 a d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 169768
f79740032b0903c917561610f508a35b 3 2 2 2 875 dec 1 a a The function is never zero 169768
f79740032b0903c917561610f508a35b 3 2 2 2 126 dec 1 a c The function is never negative 169768
4bf30bfa28acde05a2ffa03de2d7abbb 2 4 2 3 561 sim 4 a a 1.0 627874
4bf30bfa28acde05a2ffa03de2d7abbb 2 4 2 3 246 sim 3 b c 146.28 627874
4bf30bfa28acde05a2ffa03de2d7abbb 2 4 2 3 809 sim 4 c c 4*x + cos(x + 1.57) 627874
4bf30bfa28acde05a2ffa03de2d7abbb 2 4 2 3 982 sim 4 b a cos(x - 3.14) + 7 627874
4bf30bfa28acde05a2ffa03de2d7abbb 2 4 2 3 750 dec 4 a d The function is never zero 627874
4bf30bfa28acde05a2ffa03de2d7abbb 2 4 2 3 457 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 627874
4bf30bfa28acde05a2ffa03de2d7abbb 2 4 2 3 540 dec 4 d d The function is never zero 627874
4bf30bfa28acde05a2ffa03de2d7abbb 2 4 2 3 258 dec 4 a b The function is never negative 627874
fb335c687cae6b416278a3aaa978c0ba 3 4 2 2 440 sim 4 c c 2.22 578204
fb335c687cae6b416278a3aaa978c0ba 3 4 2 2 27 sim 4 b d -1521.22 578204
fb335c687cae6b416278a3aaa978c0ba 3 4 2 2 381 sim 3 d c -297.25 578204
fb335c687cae6b416278a3aaa978c0ba 3 4 2 2 810 sim 4 c c sin(1.57*x) + 9 578204
fb335c687cae6b416278a3aaa978c0ba 3 4 2 2 158 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 578204
fb335c687cae6b416278a3aaa978c0ba 3 4 2 2 170 dec 4 c c The function is never negative 578204
fb335c687cae6b416278a3aaa978c0ba 3 4 2 2 758 dec 3 a a The function is never negative 578204
fb335c687cae6b416278a3aaa978c0ba 3 4 2 2 7 dec 3 c b The function is defined on the whole interval 578204
3f32903f2c0a7fc8aae96b8745a01c2f 3 4 3 3 744 sim 2 d b -5.0 144310
3f32903f2c0a7fc8aae96b8745a01c2f 3 4 3 3 519 sim 4 c c 4.0 144310
3f32903f2c0a7fc8aae96b8745a01c2f 3 4 3 3 224 sim 1 c d -6917.65 144310
3f32903f2c0a7fc8aae96b8745a01c2f 3 4 3 3 719 sim 4 d d x + 4 144310
3f32903f2c0a7fc8aae96b8745a01c2f 3 4 3 3 475 dec 4 d d The function is defined on the whole interval 144310
3f32903f2c0a7fc8aae96b8745a01c2f 3 4 3 3 580 dec 2 c a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 144310
3f32903f2c0a7fc8aae96b8745a01c2f 3 4 3 3 376 dec 1 c c The function is never zero 144310
3f32903f2c0a7fc8aae96b8745a01c2f 3 4 3 3 275 dec 2 d c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 144310
ec98204b0391239da9d250f6d2f4f769 3 4 2 3 462 sim 3 c a -5.28 515291
ec98204b0391239da9d250f6d2f4f769 3 4 2 3 495 sim 4 c c 5.22 515291
ec98204b0391239da9d250f6d2f4f769 3 4 2 3 259 sim 4 d c 22.84 515291
ec98204b0391239da9d250f6d2f4f769 3 4 2 3 895 sim 4 a a 5*x + 6 515291
ec98204b0391239da9d250f6d2f4f769 3 4 2 3 618 dec 4 a a The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 515291
ec98204b0391239da9d250f6d2f4f769 3 4 2 3 8 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 515291
ec98204b0391239da9d250f6d2f4f769 3 4 2 3 700 dec 4 c c The function is never negative 515291
ec98204b0391239da9d250f6d2f4f769 3 4 2 3 206 dec 4 a d The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 515291
99876494157fa8f55b5100f8682c4b7b 3 4 2 3 530 sim 2 d c -0.9 299787
99876494157fa8f55b5100f8682c4b7b 3 4 2 3 314 sim 3 d d 10.26 299787
99876494157fa8f55b5100f8682c4b7b 3 4 2 3 740 sim 2 c c 4.69 299787
99876494157fa8f55b5100f8682c4b7b 3 4 2 3 485 sim 4 a a -3.0 299787
99876494157fa8f55b5100f8682c4b7b 3 4 2 3 532 dec 2 c b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 299787
99876494157fa8f55b5100f8682c4b7b 3 4 2 3 900 dec 4 d d The function is never negative 299787
99876494157fa8f55b5100f8682c4b7b 3 4 2 3 784 dec 1 b b The function is zero at some point 299787
99876494157fa8f55b5100f8682c4b7b 3 4 2 3 259 dec 2 b b The function is never zero 299787
cf5bf565bd598faaf5fad70334761832 3 4 3 3 35 sim 4 c c 0.06 686090
cf5bf565bd598faaf5fad70334761832 3 4 3 3 428 sim 4 d d 1.0 686090
cf5bf565bd598faaf5fad70334761832 3 4 3 3 47 sim 4 a d 3.58 686090
cf5bf565bd598faaf5fad70334761832 3 4 3 3 881 sim 3 a a sin(3.14*x)*sin(x + 3.14) 686090
cf5bf565bd598faaf5fad70334761832 3 4 3 3 81 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 686090
cf5bf565bd598faaf5fad70334761832 3 4 3 3 747 dec 4 a a The function is negative at some point 686090
cf5bf565bd598faaf5fad70334761832 3 4 3 3 862 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 686090
cf5bf565bd598faaf5fad70334761832 3 4 3 3 277 dec 4 a a The function is defined on the whole interval 686090
97fbd290e582e0e1a83af3c6300242cc 1 4 1 2 903 sim 4 c c 2*3^(x^0.5) + 7 956088
97fbd290e582e0e1a83af3c6300242cc 1 4 1 2 950 sim 3 b b cos(x + 1.57)/sin(x + 3.14) 956088
97fbd290e582e0e1a83af3c6300242cc 1 4 1 2 665 sim 3 d d 18.43 956088
97fbd290e582e0e1a83af3c6300242cc 1 4 1 2 713 sim 4 c c 3.87 956088
97fbd290e582e0e1a83af3c6300242cc 1 4 1 2 321 dec 3 d d The function is never zero 956088
97fbd290e582e0e1a83af3c6300242cc 1 4 1 2 448 dec 3 b b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 956088
97fbd290e582e0e1a83af3c6300242cc 1 4 1 2 81 dec 2 c a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 956088
97fbd290e582e0e1a83af3c6300242cc 1 4 1 2 647 dec 2 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 956088
e98ec8f5ab067b01b09b2da7f8226162 2 4 2 3 521 sim 4 a a -8.0 678357
e98ec8f5ab067b01b09b2da7f8226162 2 4 2 3 101 sim 4 d d 0.19 678357
e98ec8f5ab067b01b09b2da7f8226162 2 4 2 3 358 sim 4 a a 13.0 678357
e98ec8f5ab067b01b09b2da7f8226162 2 4 2 3 35 sim 2 c c 0.06 678357
e98ec8f5ab067b01b09b2da7f8226162 2 4 2 3 472 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 678357
e98ec8f5ab067b01b09b2da7f8226162 2 4 2 3 409 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 678357
e98ec8f5ab067b01b09b2da7f8226162 2 4 2 3 343 dec 4 a a The function is negative at some point 678357
e98ec8f5ab067b01b09b2da7f8226162 2 4 2 3 798 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 678357
f54b7990e36875f139e34356d35f4735 3 1 1 3 245 sim 4 d d -3762.3 605179
f54b7990e36875f139e34356d35f4735 3 1 1 3 746 sim 4 a a 5.93 605179
f54b7990e36875f139e34356d35f4735 3 1 1 3 913 sim 4 d d sin(x - 3.14) 605179
f54b7990e36875f139e34356d35f4735 3 1 1 3 730 sim 4 c c 15.0 605179
f54b7990e36875f139e34356d35f4735 3 1 1 3 384 dec 4 d d The function is never zero 605179
f54b7990e36875f139e34356d35f4735 3 1 1 3 692 dec 1 d d The function is negative at some point 605179
f54b7990e36875f139e34356d35f4735 3 1 1 3 890 dec 4 a a The function is defined on the whole interval 605179
f54b7990e36875f139e34356d35f4735 3 1 1 3 83 dec 4 c c The function is negative at some point 605179
25767acdf3ef0c1bf0d764f6c73a3cc0 3 4 2 3 156 sim 1 a a 0.02 795905
25767acdf3ef0c1bf0d764f6c73a3cc0 3 4 2 3 311 sim 4 d a 1.0 795905
25767acdf3ef0c1bf0d764f6c73a3cc0 3 4 2 3 315 sim 4 a a 1.0 795905
25767acdf3ef0c1bf0d764f6c73a3cc0 3 4 2 3 495 sim 4 c c 5.22 795905
25767acdf3ef0c1bf0d764f6c73a3cc0 3 4 2 3 858 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 795905
25767acdf3ef0c1bf0d764f6c73a3cc0 3 4 2 3 512 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 795905
25767acdf3ef0c1bf0d764f6c73a3cc0 3 4 2 3 469 dec 4 b b The function is defined on the whole interval 795905
25767acdf3ef0c1bf0d764f6c73a3cc0 3 4 2 3 244 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 795905
730e0913e80b0759e2b013a2c9a7fcda 3 4 3 3 222 sim 4 d a -0.05 369516
730e0913e80b0759e2b013a2c9a7fcda 3 4 3 3 383 sim 3 d d 2.01 369516
730e0913e80b0759e2b013a2c9a7fcda 3 4 3 3 878 sim 4 b b cos(x + 3.14)^0.5 + 6 369516
730e0913e80b0759e2b013a2c9a7fcda 3 4 3 3 862 sim 2 a d sin(3.14*x)^0.5 369516
730e0913e80b0759e2b013a2c9a7fcda 3 4 3 3 355 dec 4 d d The function is negative at some point 369516
730e0913e80b0759e2b013a2c9a7fcda 3 4 3 3 765 dec 3 c c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 369516
730e0913e80b0759e2b013a2c9a7fcda 3 4 3 3 921 dec 3 a c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 369516
730e0913e80b0759e2b013a2c9a7fcda 3 4 3 3 578 dec 1 c b The function is defined on the whole interval 369516
68f5b8a8f4c8669695c4d88eedd60ce0 1 4 2 2 981 sim 4 b b 0^(sin(x + 1.57) + 6) + cos(x - 1.57) 416095
68f5b8a8f4c8669695c4d88eedd60ce0 1 4 2 2 1000 sim 2 d d (-sin(x - 1.57))^0.5 416095
68f5b8a8f4c8669695c4d88eedd60ce0 1 4 2 2 613 sim 3 b a -39.14 416095
68f5b8a8f4c8669695c4d88eedd60ce0 1 4 2 2 91 sim 4 c c 70.33 416095
68f5b8a8f4c8669695c4d88eedd60ce0 1 4 2 2 137 dec 2 a b The function is zero at some point 416095
68f5b8a8f4c8669695c4d88eedd60ce0 1 4 2 2 598 dec 4 a a The function is defined on the whole interval 416095
68f5b8a8f4c8669695c4d88eedd60ce0 1 4 2 2 413 dec 3 b b The function is defined on the whole interval 416095
68f5b8a8f4c8669695c4d88eedd60ce0 1 4 2 2 75 dec 4 b b The function is never zero 416095
3a94ff708cdd8ec8965b8630a5774ac1 3 4 3 3 779 sim 3 c c 5.65 378897
3a94ff708cdd8ec8965b8630a5774ac1 3 4 3 3 537 sim 4 c c 1.0 378897
3a94ff708cdd8ec8965b8630a5774ac1 3 4 3 3 172 sim 3 c c -131.55 378897
3a94ff708cdd8ec8965b8630a5774ac1 3 4 3 3 268 sim 4 d d 14.0 378897
3a94ff708cdd8ec8965b8630a5774ac1 3 4 3 3 219 dec 4 b b The function is negative at some point 378897
3a94ff708cdd8ec8965b8630a5774ac1 3 4 3 3 695 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 378897
3a94ff708cdd8ec8965b8630a5774ac1 3 4 3 3 676 dec 4 c c The function is zero at some point 378897
3a94ff708cdd8ec8965b8630a5774ac1 3 4 3 3 469 dec 4 b b The function is defined on the whole interval 378897
dc667e0e1052a08f6029c40b4bfe656c 2 3 2 3 304 sim 3 a a -64.0 729744
dc667e0e1052a08f6029c40b4bfe656c 2 3 2 3 858 sim 3 a a 4*x - cos(x - 1.57) - cos(x + 1.57) + 8 729744
dc667e0e1052a08f6029c40b4bfe656c 2 3 2 3 665 sim 4 d d 18.43 729744
dc667e0e1052a08f6029c40b4bfe656c 2 3 2 3 644 sim 2 c b 4.75 729744
dc667e0e1052a08f6029c40b4bfe656c 2 3 2 3 488 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 729744
dc667e0e1052a08f6029c40b4bfe656c 2 3 2 3 642 dec 2 a b The function is defined on the whole interval 729744
dc667e0e1052a08f6029c40b4bfe656c 2 3 2 3 345 dec 3 a a The function is never zero 729744
dc667e0e1052a08f6029c40b4bfe656c 2 3 2 3 123 dec 3 b b The function is defined on the whole interval 729744
1a9c9a7b6e42dadc332d527a5de8fe09 2 4 1 3 890 sim 4 b b 8.0 721509
1a9c9a7b6e42dadc332d527a5de8fe09 2 4 1 3 758 sim 4 c c 36.0 721509
1a9c9a7b6e42dadc332d527a5de8fe09 2 4 1 3 301 sim 4 b b 5*x^0.5 + 1/sin(x + 1.57) 721509
1a9c9a7b6e42dadc332d527a5de8fe09 2 4 1 3 319 sim 4 d d 5.56 721509
1a9c9a7b6e42dadc332d527a5de8fe09 2 4 1 3 719 dec 4 d d The function is never zero 721509
1a9c9a7b6e42dadc332d527a5de8fe09 2 4 1 3 409 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 721509
1a9c9a7b6e42dadc332d527a5de8fe09 2 4 1 3 703 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 721509
1a9c9a7b6e42dadc332d527a5de8fe09 2 4 1 3 819 dec 4 b b The function is defined on the whole interval 721509
1206a83013f5b6adc4055b1a5ce3f3a8 3 4 3 3 382 sim 4 b b sin(x + 3.14) + 1 727650
1206a83013f5b6adc4055b1a5ce3f3a8 3 4 3 3 796 sim 4 a a cos(x - 3.14) + 6/(2*x + 1) 727650
1206a83013f5b6adc4055b1a5ce3f3a8 3 4 3 3 569 sim 3 a a -0.67 727650
1206a83013f5b6adc4055b1a5ce3f3a8 3 4 3 3 773 sim 4 b b cos(1.57*x)*cos(x + 3.14) 727650
1206a83013f5b6adc4055b1a5ce3f3a8 3 4 3 3 136 dec 3 a a The function is never zero 727650
1206a83013f5b6adc4055b1a5ce3f3a8 3 4 3 3 905 dec 4 b b The function is never negative 727650
1206a83013f5b6adc4055b1a5ce3f3a8 3 4 3 3 558 dec 4 c a The function is defined on the whole interval 727650
1206a83013f5b6adc4055b1a5ce3f3a8 3 4 3 3 962 dec 4 b a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 727650
f227434aac664530e2e8e8e265581181 2 4 1 2 828 sim 3 a a (-x + 9/x)^0.5 1044795
f227434aac664530e2e8e8e265581181 2 4 1 2 826 sim 3 d d (-x + 3)^0.5 1044795
f227434aac664530e2e8e8e265581181 2 4 1 2 896 sim 2 c c -sin(x - 3.14)^7 1044795
f227434aac664530e2e8e8e265581181 2 4 1 2 351 sim 3 d d 3.49 1044795
f227434aac664530e2e8e8e265581181 2 4 1 2 344 dec 2 d c The function is never negative 1044795
f227434aac664530e2e8e8e265581181 2 4 1 2 73 dec 1 c d The function is never zero 1044795
f227434aac664530e2e8e8e265581181 2 4 1 2 161 dec 2 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1044795
f227434aac664530e2e8e8e265581181 2 4 1 2 28 dec 2 b a The function is defined on the whole interval 1044795
ac30fae1540d7a1bb0a7c5f1c487828a 1 4 2 2 974 sim 4 b b cos(x + 1.57) + 1/(8*x + 2) 349499
ac30fae1540d7a1bb0a7c5f1c487828a 1 4 2 2 360 sim 1 c b -0.11 349499
ac30fae1540d7a1bb0a7c5f1c487828a 1 4 2 2 432 sim 1 c c 8.0 349499
ac30fae1540d7a1bb0a7c5f1c487828a 1 4 2 2 631 sim 2 c d 1258.77 349499
ac30fae1540d7a1bb0a7c5f1c487828a 1 4 2 2 322 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 349499
ac30fae1540d7a1bb0a7c5f1c487828a 1 4 2 2 353 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 349499
ac30fae1540d7a1bb0a7c5f1c487828a 1 4 2 2 676 dec 4 c c The function is zero at some point 349499
ac30fae1540d7a1bb0a7c5f1c487828a 1 4 2 2 172 dec 4 d d The function is defined on the whole interval 349499
bcf31ce5e60c47474fb49b842081686f 3 4 3 3 362 sim 4 a a 600.0 723309
bcf31ce5e60c47474fb49b842081686f 3 4 3 3 944 sim 4 d d (5*cos(3.14*x) + 2)^0.5 723309
bcf31ce5e60c47474fb49b842081686f 3 4 3 3 980 sim 4 c c 8*(-sin(x - 1.57))^0.5 723309
bcf31ce5e60c47474fb49b842081686f 3 4 3 3 639 sim 4 b b 97.21 723309
bcf31ce5e60c47474fb49b842081686f 3 4 3 3 157 dec 4 b b The function is defined on the whole interval 723309
bcf31ce5e60c47474fb49b842081686f 3 4 3 3 658 dec 4 d d The function is defined on the whole interval 723309
bcf31ce5e60c47474fb49b842081686f 3 4 3 3 392 dec 4 d d The function is defined on the whole interval 723309
bcf31ce5e60c47474fb49b842081686f 3 4 3 3 553 dec 4 d d The function is defined on the whole interval 723309
c9cac91ed2fa2ace69d28d8d3d45ac1b 2 4 1 3 99 sim 3 d d 40.0 638516
c9cac91ed2fa2ace69d28d8d3d45ac1b 2 4 1 3 150 sim 2 c c -8190.0 638516
c9cac91ed2fa2ace69d28d8d3d45ac1b 2 4 1 3 891 sim 3 c b sin(x - 3.14)^0.5 638516
c9cac91ed2fa2ace69d28d8d3d45ac1b 2 4 1 3 642 sim 2 a a -251.14 638516
c9cac91ed2fa2ace69d28d8d3d45ac1b 2 4 1 3 349 dec 3 d b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 638516
c9cac91ed2fa2ace69d28d8d3d45ac1b 2 4 1 3 82 dec 3 d d The function is never zero 638516
c9cac91ed2fa2ace69d28d8d3d45ac1b 2 4 1 3 385 dec 3 a a The function is never negative 638516
c9cac91ed2fa2ace69d28d8d3d45ac1b 2 4 1 3 243 dec 3 c c The function is never zero 638516
b6d366157a2f172f1d11c754818bbfdd 3 4 2 2 897 sim 4 a a (cos(1.57*x) + 5)^0.5 1258382
b6d366157a2f172f1d11c754818bbfdd 3 4 2 2 694 sim 4 a a -4.14 1258382
b6d366157a2f172f1d11c754818bbfdd 3 4 2 2 990 sim 4 b b cos(3.14*x) + 7 1258382
b6d366157a2f172f1d11c754818bbfdd 3 4 2 2 403 sim 4 d d 881.6 1258382
b6d366157a2f172f1d11c754818bbfdd 3 4 2 2 172 dec 4 d d The function is defined on the whole interval 1258382
b6d366157a2f172f1d11c754818bbfdd 3 4 2 2 524 dec 3 a a The function is zero at some point 1258382
b6d366157a2f172f1d11c754818bbfdd 3 4 2 2 456 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1258382
b6d366157a2f172f1d11c754818bbfdd 3 4 2 2 787 dec 3 d d The function is negative at some point 1258382
132d79ae744e334d0f7cbc03504ff974 3 3 2 3 221 sim 4 b b -3.98 410956
132d79ae744e334d0f7cbc03504ff974 3 3 2 3 909 sim 4 d d sin(3.14*x) + 7 410956
132d79ae744e334d0f7cbc03504ff974 3 3 2 3 393 sim 4 d d 1.99 410956
132d79ae744e334d0f7cbc03504ff974 3 3 2 3 858 sim 3 a a 4*x - cos(x - 1.57) - cos(x + 1.57) + 8 410956
132d79ae744e334d0f7cbc03504ff974 3 3 2 3 503 dec 4 b b The function is defined on the whole interval 410956
132d79ae744e334d0f7cbc03504ff974 3 3 2 3 812 dec 3 d b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 410956
132d79ae744e334d0f7cbc03504ff974 3 3 2 3 666 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 410956
132d79ae744e334d0f7cbc03504ff974 3 3 2 3 13 dec 4 d d The function is defined on the whole interval 410956
efe460f995435a2684e0ad5c4cc9589c 3 4 2 2 817 sim 4 d d 5/sin(x + 3.14) 369605
efe460f995435a2684e0ad5c4cc9589c 3 4 2 2 312 sim 3 a b -0.11 369605
efe460f995435a2684e0ad5c4cc9589c 3 4 2 2 467 sim 4 b b 2.45 369605
efe460f995435a2684e0ad5c4cc9589c 3 4 2 2 488 sim 4 b b 26.22 369605
efe460f995435a2684e0ad5c4cc9589c 3 4 2 2 356 dec 2 c b The function is zero at some point 369605
efe460f995435a2684e0ad5c4cc9589c 3 4 2 2 494 dec 4 c b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 369605
efe460f995435a2684e0ad5c4cc9589c 3 4 2 2 408 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 369605
efe460f995435a2684e0ad5c4cc9589c 3 4 2 2 576 dec 4 b b The function is never zero 369605
e9eff3c959794e7f8f0fb82fbd606564 3 4 2 2 358 sim 4 a a 13.0 10874982
e9eff3c959794e7f8f0fb82fbd606564 3 4 2 2 52 sim 3 c a 38.08 10874982
e9eff3c959794e7f8f0fb82fbd606564 3 4 2 2 466 sim 4 a a 26.0 10874982
e9eff3c959794e7f8f0fb82fbd606564 3 4 2 2 944 sim 3 d d (5*cos(3.14*x) + 2)^0.5 10874982
e9eff3c959794e7f8f0fb82fbd606564 3 4 2 2 714 dec 3 b b The function is never zero 10874982
e9eff3c959794e7f8f0fb82fbd606564 3 4 2 2 17 dec 4 a a The function is never negative 10874982
e9eff3c959794e7f8f0fb82fbd606564 3 4 2 2 154 dec 4 c c The function is defined on the whole interval 10874982
e9eff3c959794e7f8f0fb82fbd606564 3 4 2 2 881 dec 4 c c The function is defined on the whole interval 10874982
0904a5dded7d55f754215457463b6906 3 3 1 2 917 sim 4 b b x + 8 650715
0904a5dded7d55f754215457463b6906 3 3 1 2 328 sim 4 a a 3.0 650715
0904a5dded7d55f754215457463b6906 3 3 1 2 914 sim 3 c c (sin(3.14*x) + 3)^0.5 650715
0904a5dded7d55f754215457463b6906 3 3 1 2 678 sim 3 d d -2.95 650715
0904a5dded7d55f754215457463b6906 3 3 1 2 690 dec 3 c c The function is negative at some point 650715
0904a5dded7d55f754215457463b6906 3 3 1 2 568 dec 2 a c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 650715
0904a5dded7d55f754215457463b6906 3 3 1 2 926 dec 3 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 650715
0904a5dded7d55f754215457463b6906 3 3 1 2 315 dec 3 a a The function is never zero 650715
a8e4eada480d9056da90a7b6517b8ea6 3 4 3 3 8 sim 4 b a 4.05 747449
a8e4eada480d9056da90a7b6517b8ea6 3 4 3 3 782 sim 4 c c 8*cos(x + 3.14) 747449
a8e4eada480d9056da90a7b6517b8ea6 3 4 3 3 913 sim 4 d d sin(x - 3.14) 747449
a8e4eada480d9056da90a7b6517b8ea6 3 4 3 3 488 sim 4 b b 26.22 747449
a8e4eada480d9056da90a7b6517b8ea6 3 4 3 3 271 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 747449
a8e4eada480d9056da90a7b6517b8ea6 3 4 3 3 685 dec 4 c c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 747449
a8e4eada480d9056da90a7b6517b8ea6 3 4 3 3 518 dec 3 b b The function is defined on the whole interval 747449
a8e4eada480d9056da90a7b6517b8ea6 3 4 3 3 34 dec 4 d d The function is defined on the whole interval 747449
8253608215385758370f184456244589 2 4 2 2 983 sim 4 c c x^0.5*sin(x + 3.14) 726786
8253608215385758370f184456244589 2 4 2 2 905 sim 4 d d 7*cos(1.57*x) + 6 726786
8253608215385758370f184456244589 2 4 2 2 275 sim 3 d a -890.91 726786
8253608215385758370f184456244589 2 4 2 2 73 sim 2 b c 30.27 726786
8253608215385758370f184456244589 2 4 2 2 588 dec 4 a a The function is never negative 726786
8253608215385758370f184456244589 2 4 2 2 901 dec 3 a c The function is never negative 726786
8253608215385758370f184456244589 2 4 2 2 237 dec 4 d b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 726786
8253608215385758370f184456244589 2 4 2 2 167 dec 3 b b The function is zero at some point 726786
fae5bb1a0c48de7b592fdce380050774 3 2 2 3 650 sim 4 b b 1.0 490897
fae5bb1a0c48de7b592fdce380050774 3 2 2 3 911 sim 4 a a cos(3.14*x) + 1 490897
fae5bb1a0c48de7b592fdce380050774 3 2 2 3 219 sim 4 a a -2.65 490897
fae5bb1a0c48de7b592fdce380050774 3 2 2 3 274 sim 4 c c 94.1 490897
fae5bb1a0c48de7b592fdce380050774 3 2 2 3 718 dec 3 a c The function is defined on the whole interval 490897
fae5bb1a0c48de7b592fdce380050774 3 2 2 3 878 dec 3 b d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 490897
fae5bb1a0c48de7b592fdce380050774 3 2 2 3 398 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 490897
fae5bb1a0c48de7b592fdce380050774 3 2 2 3 313 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 490897
fa1e480d30dd1f144f4d06a5b1d7a585 3 4 2 3 981 sim 3 b b 0^(sin(x + 1.57) + 6) + cos(x - 1.57) 460172
fa1e480d30dd1f144f4d06a5b1d7a585 3 4 2 3 427 sim 3 a a 5.03 460172
fa1e480d30dd1f144f4d06a5b1d7a585 3 4 2 3 755 sim 4 c c 1.0 460172
fa1e480d30dd1f144f4d06a5b1d7a585 3 4 2 3 798 sim 4 d d 4*(-x)^0.5*cos(x - 1.57) 460172
fa1e480d30dd1f144f4d06a5b1d7a585 3 4 2 3 579 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 460172
fa1e480d30dd1f144f4d06a5b1d7a585 3 4 2 3 232 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 460172
fa1e480d30dd1f144f4d06a5b1d7a585 3 4 2 3 520 dec 3 c b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 460172
fa1e480d30dd1f144f4d06a5b1d7a585 3 4 2 3 17 dec 4 a a The function is never negative 460172
8c9756c194d996bbc981115a62355376 2 3 2 2 121 sim 3 d d 2.03 470318
8c9756c194d996bbc981115a62355376 2 3 2 2 598 sim 3 b d -9524.0 470318
8c9756c194d996bbc981115a62355376 2 3 2 2 419 sim 3 b c 1.18 470318
8c9756c194d996bbc981115a62355376 2 3 2 2 571 sim 1 a a 585.0 470318
8c9756c194d996bbc981115a62355376 2 3 2 2 749 dec 3 d a The function is never zero 470318
8c9756c194d996bbc981115a62355376 2 3 2 2 946 dec 3 d a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 470318
8c9756c194d996bbc981115a62355376 2 3 2 2 558 dec 3 b a The function is defined on the whole interval 470318
8c9756c194d996bbc981115a62355376 2 3 2 2 117 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 470318
46b3098c7a26552e67f2c8f183d97b96 1 4 2 2 725 sim 2 a b 2.0 519410
46b3098c7a26552e67f2c8f183d97b96 1 4 2 2 973 sim 3 b b x - sin(3.14*x) + 4 519410
46b3098c7a26552e67f2c8f183d97b96 1 4 2 2 980 sim 4 a c 8*(-sin(x - 1.57))^0.5 519410
46b3098c7a26552e67f2c8f183d97b96 1 4 2 2 912 sim 2 c c cos(1.57*x)/sin(3.14*x) 519410
46b3098c7a26552e67f2c8f183d97b96 1 4 2 2 528 dec 4 d d The function is defined on the whole interval 519410
46b3098c7a26552e67f2c8f183d97b96 1 4 2 2 415 dec 4 c c The function is never zero 519410
46b3098c7a26552e67f2c8f183d97b96 1 4 2 2 473 dec 4 a c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 519410
46b3098c7a26552e67f2c8f183d97b96 1 4 2 2 469 dec 4 b b The function is defined on the whole interval 519410
07098ecdeabfe2929a426470cc2f9328 3 4 3 3 626 sim 4 d d 6.88 463624
07098ecdeabfe2929a426470cc2f9328 3 4 3 3 380 sim 4 a a 25.01 463624
07098ecdeabfe2929a426470cc2f9328 3 4 3 3 461 sim 4 b d -4.43 463624
07098ecdeabfe2929a426470cc2f9328 3 4 3 3 324 sim 3 a a 0.02 463624
07098ecdeabfe2929a426470cc2f9328 3 4 3 3 285 dec 4 a a The function is never negative 463624
07098ecdeabfe2929a426470cc2f9328 3 4 3 3 716 dec 4 a a The function is negative at some point 463624
07098ecdeabfe2929a426470cc2f9328 3 4 3 3 618 dec 4 a a The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 463624
07098ecdeabfe2929a426470cc2f9328 3 4 3 3 975 dec 4 d d The function is never negative 463624
22cf45a556a50c7f5b9656f5c21ea121 3 4 3 2 485 sim 4 a a -3.0 719650
22cf45a556a50c7f5b9656f5c21ea121 3 4 3 2 850 sim 3 d c (-x + cos(x - 1.57) + 5)^0.5 719650
22cf45a556a50c7f5b9656f5c21ea121 3 4 3 2 696 sim 2 b b 1.13 719650
22cf45a556a50c7f5b9656f5c21ea121 3 4 3 2 429 sim 4 a a 1.0 719650
22cf45a556a50c7f5b9656f5c21ea121 3 4 3 2 496 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 719650
22cf45a556a50c7f5b9656f5c21ea121 3 4 3 2 849 dec 4 a a The function is defined on the whole interval 719650
22cf45a556a50c7f5b9656f5c21ea121 3 4 3 2 445 dec 4 b b The function is defined on the whole interval 719650
22cf45a556a50c7f5b9656f5c21ea121 3 4 3 2 809 dec 3 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 719650
3a9144c0ac9db613cefb7f7a7076a014 3 4 3 3 387 sim 3 a a -512.33 1500959
3a9144c0ac9db613cefb7f7a7076a014 3 4 3 3 34 sim 3 b b 1310.01 1500959
3a9144c0ac9db613cefb7f7a7076a014 3 4 3 3 562 sim 3 d d 1.73 1500959
3a9144c0ac9db613cefb7f7a7076a014 3 4 3 3 735 sim 3 a a 2.47 1500959
3a9144c0ac9db613cefb7f7a7076a014 3 4 3 3 473 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1500959
3a9144c0ac9db613cefb7f7a7076a014 3 4 3 3 194 dec 3 a a The function is defined on the whole interval 1500959
3a9144c0ac9db613cefb7f7a7076a014 3 4 3 3 26 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1500959
3a9144c0ac9db613cefb7f7a7076a014 3 4 3 3 830 dec 4 c c The function is never zero 1500959
363af567ccd8a1574191c747bfa14f75 2 4 2 2 550 sim 1 a c 1.07 381556
363af567ccd8a1574191c747bfa14f75 2 4 2 2 591 sim 4 d a 5.69 381556
363af567ccd8a1574191c747bfa14f75 2 4 2 2 351 sim 2 b d 3.49 381556
363af567ccd8a1574191c747bfa14f75 2 4 2 2 903 sim 2 a c 2*3^(x^0.5) + 7 381556
363af567ccd8a1574191c747bfa14f75 2 4 2 2 689 dec 2 b a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 381556
363af567ccd8a1574191c747bfa14f75 2 4 2 2 738 dec 3 c b The function is never negative 381556
363af567ccd8a1574191c747bfa14f75 2 4 2 2 420 dec 1 b d The function is negative at some point 381556
363af567ccd8a1574191c747bfa14f75 2 4 2 2 443 dec 2 b a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 381556
2279cd939507e322afa4c34889829827 3 1 1 2 287 sim 3 c d 268.0 280434
2279cd939507e322afa4c34889829827 3 1 1 2 258 sim 4 d d 6.0 280434
2279cd939507e322afa4c34889829827 3 1 1 2 243 sim 2 b a 2.87 280434
2279cd939507e322afa4c34889829827 3 1 1 2 254 sim 2 d c 5^(-sin(3.14*x)) 280434
2279cd939507e322afa4c34889829827 3 1 1 2 640 dec 4 c c The function is never zero 280434
2279cd939507e322afa4c34889829827 3 1 1 2 871 dec 3 c c The function is negative at some point 280434
2279cd939507e322afa4c34889829827 3 1 1 2 235 dec 4 b a The function is never zero 280434
2279cd939507e322afa4c34889829827 3 1 1 2 978 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 280434
ff8c13f295439b1e1ce2ae0441b1d8d1 2 4 3 2 186 sim 4 d d 8*x^0.5 319285
ff8c13f295439b1e1ce2ae0441b1d8d1 2 4 3 2 164 sim 4 b b 6.29 319285
ff8c13f295439b1e1ce2ae0441b1d8d1 2 4 3 2 556 sim 2 d b -1.81 319285
ff8c13f295439b1e1ce2ae0441b1d8d1 2 4 3 2 728 sim 4 b b 165.0 319285
ff8c13f295439b1e1ce2ae0441b1d8d1 2 4 3 2 811 dec 2 c b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 319285
ff8c13f295439b1e1ce2ae0441b1d8d1 2 4 3 2 620 dec 1 b d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 319285
ff8c13f295439b1e1ce2ae0441b1d8d1 2 4 3 2 778 dec 1 b a The function is negative at some point 319285
ff8c13f295439b1e1ce2ae0441b1d8d1 2 4 3 2 841 dec 1 b c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 319285
38423803c6f3d4cb7d6fa2833f47ae83 3 4 3 3 734 sim 4 c c -4.0 919894
38423803c6f3d4cb7d6fa2833f47ae83 3 4 3 3 711 sim 3 a a 6.0 919894
38423803c6f3d4cb7d6fa2833f47ae83 3 4 3 3 599 sim 4 b b 1.0 919894
38423803c6f3d4cb7d6fa2833f47ae83 3 4 3 3 312 sim 3 b b -0.11 919894
38423803c6f3d4cb7d6fa2833f47ae83 3 4 3 3 80 dec 2 a c The function is negative at some point 919894
38423803c6f3d4cb7d6fa2833f47ae83 3 4 3 3 204 dec 2 a a The function is negative at some point 919894
38423803c6f3d4cb7d6fa2833f47ae83 3 4 3 3 540 dec 2 d d The function is never zero 919894
38423803c6f3d4cb7d6fa2833f47ae83 3 4 3 3 150 dec 2 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 919894
6e759ce6b6134eaa693e11d4945fafc3 3 4 3 3 86 sim 4 d d 6556.0 411112
6e759ce6b6134eaa693e11d4945fafc3 3 4 3 3 101 sim 4 d d 0.19 411112
6e759ce6b6134eaa693e11d4945fafc3 3 4 3 3 657 sim 4 a a -1.0 411112
6e759ce6b6134eaa693e11d4945fafc3 3 4 3 3 98 sim 4 c c 12.96 411112
6e759ce6b6134eaa693e11d4945fafc3 3 4 3 3 663 dec 4 b b The function is defined on the whole interval 411112
6e759ce6b6134eaa693e11d4945fafc3 3 4 3 3 520 dec 4 b b The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 411112
6e759ce6b6134eaa693e11d4945fafc3 3 4 3 3 820 dec 4 c c The function is never negative 411112
6e759ce6b6134eaa693e11d4945fafc3 3 4 3 3 628 dec 4 b b The function is never zero 411112
62dac03e85a6d23a1a5c16378fe1fdd9 3 4 3 3 219 sim 3 a a -2.65 498930
62dac03e85a6d23a1a5c16378fe1fdd9 3 4 3 3 685 sim 4 b b 12.0 498930
62dac03e85a6d23a1a5c16378fe1fdd9 3 4 3 3 310 sim 3 d d 5.74 498930
62dac03e85a6d23a1a5c16378fe1fdd9 3 4 3 3 997 sim 3 a c sin(3.14*x)/cos(3.14*x) 498930
62dac03e85a6d23a1a5c16378fe1fdd9 3 4 3 3 883 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 498930
62dac03e85a6d23a1a5c16378fe1fdd9 3 4 3 3 51 dec 4 b b The function is never negative 498930
62dac03e85a6d23a1a5c16378fe1fdd9 3 4 3 3 487 dec 3 d d The function is never zero 498930
62dac03e85a6d23a1a5c16378fe1fdd9 3 4 3 3 188 dec 2 d a The function is defined on the whole interval 498930
eb0e054971ccb5b8a0556dc8b05a2edc 3 4 2 3 346 sim 4 d d -261.0 351274
eb0e054971ccb5b8a0556dc8b05a2edc 3 4 2 3 786 sim 4 c c -x + 9 351274
eb0e054971ccb5b8a0556dc8b05a2edc 3 4 2 3 111 sim 4 b b 41.0 351274
eb0e054971ccb5b8a0556dc8b05a2edc 3 4 2 3 192 sim 4 a a 7.5 351274
eb0e054971ccb5b8a0556dc8b05a2edc 3 4 2 3 872 dec 4 b b The function is defined on the whole interval 351274
eb0e054971ccb5b8a0556dc8b05a2edc 3 4 2 3 158 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 351274
eb0e054971ccb5b8a0556dc8b05a2edc 3 4 2 3 459 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 351274
eb0e054971ccb5b8a0556dc8b05a2edc 3 4 2 3 470 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 351274
06ffbfd34c26af4e676e5fee9208e903 3 4 3 3 908 sim 3 a a -sin(x - 1.57)*cos(3.14*x) 827323
06ffbfd34c26af4e676e5fee9208e903 3 4 3 3 656 sim 4 a a 3.6 827323
06ffbfd34c26af4e676e5fee9208e903 3 4 3 3 616 sim 4 a a 1.0 827323
06ffbfd34c26af4e676e5fee9208e903 3 4 3 3 874 sim 4 c c x 827323
06ffbfd34c26af4e676e5fee9208e903 3 4 3 3 571 dec 4 c c The function is never negative 827323
06ffbfd34c26af4e676e5fee9208e903 3 4 3 3 429 dec 4 d d The function is defined on the whole interval 827323
06ffbfd34c26af4e676e5fee9208e903 3 4 3 3 691 dec 4 b b The function is defined on the whole interval 827323
06ffbfd34c26af4e676e5fee9208e903 3 4 3 3 462 dec 3 c d The function is negative at some point 827323
b1b79cab3b2f266e384f81ae8df8673f 2 4 2 2 909 sim 4 d d sin(3.14*x) + 7 834157
b1b79cab3b2f266e384f81ae8df8673f 2 4 2 2 220 sim 2 d d -1338.06 834157
b1b79cab3b2f266e384f81ae8df8673f 2 4 2 2 870 sim 4 b b sin(x + 1.57) 834157
b1b79cab3b2f266e384f81ae8df8673f 2 4 2 2 736 sim 4 c c -2.25 834157
b1b79cab3b2f266e384f81ae8df8673f 2 4 2 2 515 dec 4 a a The function is defined on the whole interval 834157
b1b79cab3b2f266e384f81ae8df8673f 2 4 2 2 740 dec 4 c c The function is never zero 834157
b1b79cab3b2f266e384f81ae8df8673f 2 4 2 2 49 dec 4 a b The function is defined on the whole interval 834157
b1b79cab3b2f266e384f81ae8df8673f 2 4 2 2 751 dec 4 b b The function is defined on the whole interval 834157
8fa18242cc09ad9329abbef03282f205 3 4 2 3 553 sim 4 b b 370.98 661751
8fa18242cc09ad9329abbef03282f205 3 4 2 3 139 sim 4 d d 15.0 661751
8fa18242cc09ad9329abbef03282f205 3 4 2 3 524 sim 4 c c 2.0 661751
8fa18242cc09ad9329abbef03282f205 3 4 2 3 446 sim 4 b b 179.68 661751
8fa18242cc09ad9329abbef03282f205 3 4 2 3 529 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 661751
8fa18242cc09ad9329abbef03282f205 3 4 2 3 969 dec 4 c a The function is negative at some point 661751
8fa18242cc09ad9329abbef03282f205 3 4 2 3 169 dec 4 b b The function is never zero 661751
8fa18242cc09ad9329abbef03282f205 3 4 2 3 805 dec 4 b b The function is never zero 661751
0c981f635fa577d96a965a0ef03105fe 3 4 2 2 728 sim 4 b b 165.0 745890
0c981f635fa577d96a965a0ef03105fe 3 4 2 2 760 sim 3 b b 50.17 745890
0c981f635fa577d96a965a0ef03105fe 3 4 2 2 362 sim 4 a a 600.0 745890
0c981f635fa577d96a965a0ef03105fe 3 4 2 2 6 sim 4 c c 16.0 745890
0c981f635fa577d96a965a0ef03105fe 3 4 2 2 432 dec 3 b d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 745890
0c981f635fa577d96a965a0ef03105fe 3 4 2 2 217 dec 4 d d The function is never zero 745890
0c981f635fa577d96a965a0ef03105fe 3 4 2 2 898 dec 4 a a The function is never negative 745890
0c981f635fa577d96a965a0ef03105fe 3 4 2 2 558 dec 2 a a The function is defined on the whole interval 745890
e2b164ecdd46eb34922e23e00c265545 3 4 2 3 614 sim 3 a a 3.12 801440
e2b164ecdd46eb34922e23e00c265545 3 4 2 3 760 sim 3 b b 50.17 801440
e2b164ecdd46eb34922e23e00c265545 3 4 2 3 182 sim 4 d d -0.78 801440
e2b164ecdd46eb34922e23e00c265545 3 4 2 3 332 sim 4 c c 1.0 801440
e2b164ecdd46eb34922e23e00c265545 3 4 2 3 128 dec 3 a a The function is never zero 801440
e2b164ecdd46eb34922e23e00c265545 3 4 2 3 726 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 801440
e2b164ecdd46eb34922e23e00c265545 3 4 2 3 127 dec 4 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 801440
e2b164ecdd46eb34922e23e00c265545 3 4 2 3 149 dec 4 a a The function is never negative 801440
b86376f9e8b41d9b31af6d714a45c06f 3 4 3 3 219 sim 3 a a -2.65 725219
b86376f9e8b41d9b31af6d714a45c06f 3 4 3 3 288 sim 3 d d 6.5 725219
b86376f9e8b41d9b31af6d714a45c06f 3 4 3 3 472 sim 3 a a 8.0 725219
b86376f9e8b41d9b31af6d714a45c06f 3 4 3 3 745 sim 3 b b 0.02 725219
b86376f9e8b41d9b31af6d714a45c06f 3 4 3 3 160 dec 3 a a The function is defined on the whole interval 725219
b86376f9e8b41d9b31af6d714a45c06f 3 4 3 3 979 dec 3 b c The function is zero at some point 725219
b86376f9e8b41d9b31af6d714a45c06f 3 4 3 3 915 dec 3 b b The function is zero at some point 725219
b86376f9e8b41d9b31af6d714a45c06f 3 4 3 3 944 dec 3 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 725219
7496270e603a26a03570654e3da381b7 3 4 2 2 932 sim 3 b b -sin(x + 3.14) + cos(x + 3.14) + 6 1049304
7496270e603a26a03570654e3da381b7 3 4 2 2 40 sim 2 a a 0.05 1049304
7496270e603a26a03570654e3da381b7 3 4 2 2 793 sim 3 a a 5*(x + 8)^2 + 5/(x + 1) 1049304
7496270e603a26a03570654e3da381b7 3 4 2 2 510 sim 3 a a 1.48 1049304
7496270e603a26a03570654e3da381b7 3 4 2 2 630 dec 2 c c The function is defined on the whole interval 1049304
7496270e603a26a03570654e3da381b7 3 4 2 2 10 dec 3 a c The function is zero at some point 1049304
7496270e603a26a03570654e3da381b7 3 4 2 2 515 dec 3 a a The function is defined on the whole interval 1049304
7496270e603a26a03570654e3da381b7 3 4 2 2 154 dec 3 c c The function is defined on the whole interval 1049304
7f2062d0ed15f8ae6b0e035d8a8e270c 3 4 2 3 244 sim 4 b b 1209.21 3581327
7f2062d0ed15f8ae6b0e035d8a8e270c 3 4 2 3 273 sim 2 b a 97.57 3581327
7f2062d0ed15f8ae6b0e035d8a8e270c 3 4 2 3 746 sim 3 a a 5.93 3581327
7f2062d0ed15f8ae6b0e035d8a8e270c 3 4 2 3 926 sim 4 c c cos(x + 3.14)^5 3581327
7f2062d0ed15f8ae6b0e035d8a8e270c 3 4 2 3 968 dec 4 b c The function is never negative 3581327
7f2062d0ed15f8ae6b0e035d8a8e270c 3 4 2 3 43 dec 4 b b The function is never negative 3581327
7f2062d0ed15f8ae6b0e035d8a8e270c 3 4 2 3 184 dec 4 b b The function is defined on the whole interval 3581327
7f2062d0ed15f8ae6b0e035d8a8e270c 3 4 2 3 207 dec 4 d d The function is never zero 3581327
9c9ce5c9cbe3c10985e9221973ddd38e 3 4 2 3 210 sim 4 b b 2.65 484260
9c9ce5c9cbe3c10985e9221973ddd38e 3 4 2 3 807 sim 4 c c 9*cos(3.14*x) 484260
9c9ce5c9cbe3c10985e9221973ddd38e 3 4 2 3 870 sim 4 b b sin(x + 1.57) 484260
9c9ce5c9cbe3c10985e9221973ddd38e 3 4 2 3 995 sim 3 a a 5*cos(1.57*x)^0.5 484260
9c9ce5c9cbe3c10985e9221973ddd38e 3 4 2 3 779 dec 4 a a The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 484260
9c9ce5c9cbe3c10985e9221973ddd38e 3 4 2 3 319 dec 3 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 484260
9c9ce5c9cbe3c10985e9221973ddd38e 3 4 2 3 481 dec 3 a a The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 484260
9c9ce5c9cbe3c10985e9221973ddd38e 3 4 2 3 303 dec 4 c c The function is defined on the whole interval 484260
55805e6b1ee411dd89696b720fd5c19d 3 3 2 2 253 sim 4 d d 8.76 546455
55805e6b1ee411dd89696b720fd5c19d 3 3 2 2 460 sim 4 d d 3.0 546455
55805e6b1ee411dd89696b720fd5c19d 3 3 2 2 383 sim 3 d d 2.01 546455
55805e6b1ee411dd89696b720fd5c19d 3 3 2 2 211 sim 3 b b -0.88 546455
55805e6b1ee411dd89696b720fd5c19d 3 3 2 2 352 dec 2 b b The function is defined on the whole interval 546455
55805e6b1ee411dd89696b720fd5c19d 3 3 2 2 655 dec 2 b c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 546455
55805e6b1ee411dd89696b720fd5c19d 3 3 2 2 730 dec 2 d d The function is never zero 546455
55805e6b1ee411dd89696b720fd5c19d 3 3 2 2 76 dec 1 d c The function is defined on the whole interval 546455
2827b1d0396ac4c754264439c2042a34 2 3 2 3 30 sim 4 c c 2.5 925870
2827b1d0396ac4c754264439c2042a34 2 3 2 3 766 sim 4 c c 3*2^(-x^0.5 + 2) 925870
2827b1d0396ac4c754264439c2042a34 2 3 2 3 4 sim 4 c c 27.0 925870
2827b1d0396ac4c754264439c2042a34 2 3 2 3 845 sim 4 a a sin(3.14*x) + sin(x - 1.57) + 9 925870
2827b1d0396ac4c754264439c2042a34 2 3 2 3 779 dec 4 a a The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 925870
2827b1d0396ac4c754264439c2042a34 2 3 2 3 545 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 925870
2827b1d0396ac4c754264439c2042a34 2 3 2 3 652 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 925870
2827b1d0396ac4c754264439c2042a34 2 3 2 3 782 dec 4 d d The function is negative at some point 925870
8f8c18d9df77fb304b35fa8c2a33f690 2 4 2 2 176 sim 3 b a 1.66 436666
8f8c18d9df77fb304b35fa8c2a33f690 2 4 2 2 791 sim 3 d d -cos(x + 3.14) + 8 436666
8f8c18d9df77fb304b35fa8c2a33f690 2 4 2 2 340 sim 3 a a -1.0 436666
8f8c18d9df77fb304b35fa8c2a33f690 2 4 2 2 704 sim 2 d b -209.3 436666
8f8c18d9df77fb304b35fa8c2a33f690 2 4 2 2 441 dec 3 c c The function is negative at some point 436666
8f8c18d9df77fb304b35fa8c2a33f690 2 4 2 2 303 dec 3 c c The function is defined on the whole interval 436666
8f8c18d9df77fb304b35fa8c2a33f690 2 4 2 2 906 dec 3 d d The function is never zero 436666
8f8c18d9df77fb304b35fa8c2a33f690 2 4 2 2 769 dec 3 a c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 436666
2e224d1834230240f14c0996df4382bc 3 3 2 3 551 sim 3 b d -50.11 684458
2e224d1834230240f14c0996df4382bc 3 3 2 3 608 sim 2 c b -0.4 684458
2e224d1834230240f14c0996df4382bc 3 3 2 3 629 sim 4 b b 14.0 684458
2e224d1834230240f14c0996df4382bc 3 3 2 3 276 sim 4 a a 6.21 684458
2e224d1834230240f14c0996df4382bc 3 3 2 3 103 dec 4 b a The function is zero at some point 684458
2e224d1834230240f14c0996df4382bc 3 3 2 3 215 dec 4 d d The function is never negative 684458
2e224d1834230240f14c0996df4382bc 3 3 2 3 943 dec 4 d d The function is never negative 684458
2e224d1834230240f14c0996df4382bc 3 3 2 3 385 dec 4 c a The function is never negative 684458
e07419e39a78faa447efb54f4004af49 3 4 3 3 673 sim 3 b b 7.0 1183743
e07419e39a78faa447efb54f4004af49 3 4 3 3 895 sim 2 a a 5*x + 6 1183743
e07419e39a78faa447efb54f4004af49 3 4 3 3 910 sim 4 a a sin(3.14*x) + 8 1183743
e07419e39a78faa447efb54f4004af49 3 4 3 3 74 sim 3 b b 32.45 1183743
e07419e39a78faa447efb54f4004af49 3 4 3 3 517 dec 4 d d The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 1183743
e07419e39a78faa447efb54f4004af49 3 4 3 3 383 dec 4 a a The function is never negative 1183743
e07419e39a78faa447efb54f4004af49 3 4 3 3 380 dec 4 a a The function is defined on the whole interval 1183743
e07419e39a78faa447efb54f4004af49 3 4 3 3 241 dec 4 b b The function is negative at some point 1183743
182fb3d4a758fa453e692bc25fcd6f49 3 4 2 3 846 sim 4 a a (-sin(3.14*x) + 2)^0.5 651283
182fb3d4a758fa453e692bc25fcd6f49 3 4 2 3 353 sim 3 c c 81.06 651283
182fb3d4a758fa453e692bc25fcd6f49 3 4 2 3 327 sim 4 d d 1.0 651283
182fb3d4a758fa453e692bc25fcd6f49 3 4 2 3 375 sim 4 d d 90.0 651283
182fb3d4a758fa453e692bc25fcd6f49 3 4 2 3 754 dec 4 d a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 651283
182fb3d4a758fa453e692bc25fcd6f49 3 4 2 3 790 dec 4 c c The function is defined on the whole interval 651283
182fb3d4a758fa453e692bc25fcd6f49 3 4 2 3 832 dec 4 c c The function is never zero 651283
182fb3d4a758fa453e692bc25fcd6f49 3 4 2 3 727 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 651283
25da468be1068d9192c1e4ca57963693 3 3 2 2 281 sim 3 d d 1.0 1014421
25da468be1068d9192c1e4ca57963693 3 3 2 2 41 sim 2 d d 2443.96 1014421
25da468be1068d9192c1e4ca57963693 3 3 2 2 740 sim 2 a c 4.69 1014421
25da468be1068d9192c1e4ca57963693 3 3 2 2 487 sim 3 b b -2178.09 1014421
25da468be1068d9192c1e4ca57963693 3 3 2 2 192 dec 2 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1014421
25da468be1068d9192c1e4ca57963693 3 3 2 2 378 dec 2 d a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 1014421
25da468be1068d9192c1e4ca57963693 3 3 2 2 778 dec 2 a a The function is negative at some point 1014421
25da468be1068d9192c1e4ca57963693 3 3 2 2 453 dec 2 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1014421
49e78a5cb93bd5b2c52d03cdf5f44d43 3 4 2 2 148 sim 3 a a 2153.0 423453
49e78a5cb93bd5b2c52d03cdf5f44d43 3 4 2 2 745 sim 3 b b 0.02 423453
49e78a5cb93bd5b2c52d03cdf5f44d43 3 4 2 2 241 sim 3 a a -43.08 423453
49e78a5cb93bd5b2c52d03cdf5f44d43 3 4 2 2 227 sim 3 b a 34.39 423453
49e78a5cb93bd5b2c52d03cdf5f44d43 3 4 2 2 58 dec 3 d d The function is never zero 423453
49e78a5cb93bd5b2c52d03cdf5f44d43 3 4 2 2 704 dec 4 d b The function is never zero 423453
49e78a5cb93bd5b2c52d03cdf5f44d43 3 4 2 2 191 dec 4 c a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 423453
49e78a5cb93bd5b2c52d03cdf5f44d43 3 4 2 2 964 dec 2 c c The function is zero at some point 423453
2d04782d2021624628b77407254c4b94 2 3 3 2 439 sim 3 a a 0.16 306526
2d04782d2021624628b77407254c4b94 2 3 3 2 563 sim 3 b a 1866.39 306526
2d04782d2021624628b77407254c4b94 2 3 3 2 565 sim 4 c c 9.74 306526
2d04782d2021624628b77407254c4b94 2 3 3 2 576 sim 4 c c 27.0 306526
2d04782d2021624628b77407254c4b94 2 3 3 2 910 dec 4 c c The function is defined on the whole interval 306526
2d04782d2021624628b77407254c4b94 2 3 3 2 291 dec 4 d d The function is never negative 306526
2d04782d2021624628b77407254c4b94 2 3 3 2 972 dec 4 a a The function is never negative 306526
2d04782d2021624628b77407254c4b94 2 3 3 2 679 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 306526
22e3220ef76cb5a0f8ea6584a4bf9e6c 3 4 3 2 527 sim 3 c d -95.39 1993130
22e3220ef76cb5a0f8ea6584a4bf9e6c 3 4 3 2 478 sim 2 b c 2.83 1993130
22e3220ef76cb5a0f8ea6584a4bf9e6c 3 4 3 2 588 sim 4 c c 8.0 1993130
22e3220ef76cb5a0f8ea6584a4bf9e6c 3 4 3 2 10 sim 4 c c 259.93 1993130
22e3220ef76cb5a0f8ea6584a4bf9e6c 3 4 3 2 194 dec 4 a a The function is defined on the whole interval 1993130
22e3220ef76cb5a0f8ea6584a4bf9e6c 3 4 3 2 133 dec 4 d c The function is zero at some point 1993130
22e3220ef76cb5a0f8ea6584a4bf9e6c 3 4 3 2 616 dec 3 c c The function is never zero 1993130
22e3220ef76cb5a0f8ea6584a4bf9e6c 3 4 3 2 408 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1993130
1633e2340f9688e94e51da3b6c6ca3fa 3 3 2 2 967 sim 3 c a (x + 6)^2*cos(x - 1.57) + cos(3.14*x) 815370
1633e2340f9688e94e51da3b6c6ca3fa 3 3 2 2 460 sim 4 d d 3.0 815370
1633e2340f9688e94e51da3b6c6ca3fa 3 3 2 2 215 sim 3 c c 2.16 815370
1633e2340f9688e94e51da3b6c6ca3fa 3 3 2 2 429 sim 4 a a 1.0 815370
1633e2340f9688e94e51da3b6c6ca3fa 3 3 2 2 495 dec 2 a c The function is never zero 815370
1633e2340f9688e94e51da3b6c6ca3fa 3 3 2 2 934 dec 3 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 815370
1633e2340f9688e94e51da3b6c6ca3fa 3 3 2 2 932 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 815370
1633e2340f9688e94e51da3b6c6ca3fa 3 3 2 2 492 dec 2 d a The function is never zero 815370
c63adfa4ab9ec742ccf2a5a5ecf6324d 3 4 2 3 880 sim 4 c c 5*(1/(x + 3))^0.5 965259
c63adfa4ab9ec742ccf2a5a5ecf6324d 3 4 2 3 57 sim 4 c c 1.0 965259
c63adfa4ab9ec742ccf2a5a5ecf6324d 3 4 2 3 152 sim 3 a a -6.01 965259
c63adfa4ab9ec742ccf2a5a5ecf6324d 3 4 2 3 254 sim 4 c c 5^(-sin(3.14*x)) 965259
c63adfa4ab9ec742ccf2a5a5ecf6324d 3 4 2 3 471 dec 4 b b The function is defined on the whole interval 965259
c63adfa4ab9ec742ccf2a5a5ecf6324d 3 4 2 3 577 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 965259
c63adfa4ab9ec742ccf2a5a5ecf6324d 3 4 2 3 273 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 965259
c63adfa4ab9ec742ccf2a5a5ecf6324d 3 4 2 3 284 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 965259
3d61d13f4cee2942604e5d3d41d54c1a 3 4 2 3 925 sim 4 d d -sin(1.57*x) 1022967
3d61d13f4cee2942604e5d3d41d54c1a 3 4 2 3 108 sim 4 c c 2.04 1022967
3d61d13f4cee2942604e5d3d41d54c1a 3 4 2 3 546 sim 4 d d 4.3 1022967
3d61d13f4cee2942604e5d3d41d54c1a 3 4 2 3 673 sim 4 c b 7.0 1022967
3d61d13f4cee2942604e5d3d41d54c1a 3 4 2 3 999 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1022967
3d61d13f4cee2942604e5d3d41d54c1a 3 4 2 3 33 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1022967
3d61d13f4cee2942604e5d3d41d54c1a 3 4 2 3 944 dec 4 d b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 1022967
3d61d13f4cee2942604e5d3d41d54c1a 3 4 2 3 613 dec 4 b b The function is never zero 1022967
c102ccd78266738a8046de30aa2538cd 3 4 3 3 804 sim 4 a a cos(3.14*x) + 2 488905
c102ccd78266738a8046de30aa2538cd 3 4 3 3 45 sim 4 b d -533.13 488905
c102ccd78266738a8046de30aa2538cd 3 4 3 3 9 sim 4 a a x + cos(x - 3.14) + 9 488905
c102ccd78266738a8046de30aa2538cd 3 4 3 3 771 sim 4 d d 4*sin(x + 1.57) 488905
c102ccd78266738a8046de30aa2538cd 3 4 3 3 484 dec 4 b b The function is never zero 488905
c102ccd78266738a8046de30aa2538cd 3 4 3 3 99 dec 4 d d The function is never zero 488905
c102ccd78266738a8046de30aa2538cd 3 4 3 3 77 dec 4 a a The function is never negative 488905
c102ccd78266738a8046de30aa2538cd 3 4 3 3 657 dec 4 d d The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 488905
c11598d74eb0fbb8199127830d3d4bab 3 3 1 2 68 sim 3 a a 4.0 641620
c11598d74eb0fbb8199127830d3d4bab 3 3 1 2 415 sim 3 d d 2417.06 641620
c11598d74eb0fbb8199127830d3d4bab 3 3 1 2 979 sim 3 b b -sin(1.57*x)*sin(x + 3.14) 641620
c11598d74eb0fbb8199127830d3d4bab 3 3 1 2 127 sim 3 a a 197.12 641620
c11598d74eb0fbb8199127830d3d4bab 3 3 1 2 175 dec 2 d d The function is defined on the whole interval 641620
c11598d74eb0fbb8199127830d3d4bab 3 3 1 2 684 dec 3 a a The function is negative at some point 641620
c11598d74eb0fbb8199127830d3d4bab 3 3 1 2 229 dec 2 b a The function is defined on the whole interval 641620
c11598d74eb0fbb8199127830d3d4bab 3 3 1 2 548 dec 3 d d The function is never zero 641620
d089da81adfb7e8bf96cef095cc21ae4 3 3 2 2 152 sim 3 a a -6.01 999036
d089da81adfb7e8bf96cef095cc21ae4 3 3 2 2 865 sim 3 b b sin(3.14*x)^9 999036
d089da81adfb7e8bf96cef095cc21ae4 3 3 2 2 639 sim 3 d b 97.21 999036
d089da81adfb7e8bf96cef095cc21ae4 3 3 2 2 189 sim 3 d d -0.87 999036
d089da81adfb7e8bf96cef095cc21ae4 3 3 2 2 253 dec 2 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 999036
d089da81adfb7e8bf96cef095cc21ae4 3 3 2 2 153 dec 3 a a The function is never zero 999036
d089da81adfb7e8bf96cef095cc21ae4 3 3 2 2 377 dec 3 c d The function is never negative 999036
d089da81adfb7e8bf96cef095cc21ae4 3 3 2 2 461 dec 2 a d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 999036
4466cb174cf22a2d8101c07b151f2edb 3 4 3 3 466 sim 4 a a 26.0 494328
4466cb174cf22a2d8101c07b151f2edb 3 4 3 3 147 sim 4 d d 16.6 494328
4466cb174cf22a2d8101c07b151f2edb 3 4 3 3 277 sim 4 a a 0.25 494328
4466cb174cf22a2d8101c07b151f2edb 3 4 3 3 643 sim 4 a a -3.74 494328
4466cb174cf22a2d8101c07b151f2edb 3 4 3 3 596 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 494328
4466cb174cf22a2d8101c07b151f2edb 3 4 3 3 939 dec 4 c c The function is never zero 494328
4466cb174cf22a2d8101c07b151f2edb 3 4 3 3 486 dec 4 d d The function is never negative 494328
4466cb174cf22a2d8101c07b151f2edb 3 4 3 3 254 dec 4 a a The function is defined on the whole interval 494328
473ce4979db610193abd68f27c2f04cd 3 4 3 3 524 sim 3 c c 2.0 964771
473ce4979db610193abd68f27c2f04cd 3 4 3 3 233 sim 3 b b 31.0 964771
473ce4979db610193abd68f27c2f04cd 3 4 3 3 284 sim 4 c c 8*3^(x^0.5) 964771
473ce4979db610193abd68f27c2f04cd 3 4 3 3 801 sim 4 d d -sin(x - 3.14)*cos(x + 1.57) 964771
473ce4979db610193abd68f27c2f04cd 3 4 3 3 636 dec 3 c c The function is negative at some point 964771
473ce4979db610193abd68f27c2f04cd 3 4 3 3 859 dec 3 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 964771
473ce4979db610193abd68f27c2f04cd 3 4 3 3 255 dec 4 c c The function is defined on the whole interval 964771
473ce4979db610193abd68f27c2f04cd 3 4 3 3 214 dec 4 a b The function is negative at some point 964771
d3ddae3557ff484ba27a1d7193f74af5 1 1 1 2 944 sim 3 d d (5*cos(3.14*x) + 2)^0.5 758821
d3ddae3557ff484ba27a1d7193f74af5 1 1 1 2 267 sim 2 b a -x + 8/x 758821
d3ddae3557ff484ba27a1d7193f74af5 1 1 1 2 94 sim 4 b b 3.64 758821
d3ddae3557ff484ba27a1d7193f74af5 1 1 1 2 124 sim 4 d d 10.57 758821
d3ddae3557ff484ba27a1d7193f74af5 1 1 1 2 321 dec 4 d d The function is never zero 758821
d3ddae3557ff484ba27a1d7193f74af5 1 1 1 2 597 dec 3 b a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 758821
d3ddae3557ff484ba27a1d7193f74af5 1 1 1 2 286 dec 3 a a The function is defined on the whole interval 758821
d3ddae3557ff484ba27a1d7193f74af5 1 1 1 2 829 dec 3 c c The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 758821
6938d957f100b61043622ef23cbb549c 2 4 2 2 320 sim 4 c c -1.71 710344
6938d957f100b61043622ef23cbb549c 2 4 2 2 145 sim 3 a b -9664.03 710344
6938d957f100b61043622ef23cbb549c 2 4 2 2 280 sim 4 a a 14.0 710344
6938d957f100b61043622ef23cbb549c 2 4 2 2 853 sim 4 d d 4*sin(1.57*x) 710344
6938d957f100b61043622ef23cbb549c 2 4 2 2 827 dec 3 c d The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 710344
6938d957f100b61043622ef23cbb549c 2 4 2 2 62 dec 4 b c The function is never zero 710344
6938d957f100b61043622ef23cbb549c 2 4 2 2 907 dec 4 d d The function is never negative 710344
6938d957f100b61043622ef23cbb549c 2 4 2 2 609 dec 4 d d The function is never negative 710344
8dde7d4f097448d3b1a2802dd510128a 3 4 3 3 205 sim 4 b b 25.0 360256
8dde7d4f097448d3b1a2802dd510128a 3 4 3 3 955 sim 3 b b -cos(x - 1.57) + 2 360256
8dde7d4f097448d3b1a2802dd510128a 3 4 3 3 169 sim 3 b b 91.78 360256
8dde7d4f097448d3b1a2802dd510128a 3 4 3 3 963 sim 3 c c -8*sin(x - 3.14) 360256
8dde7d4f097448d3b1a2802dd510128a 3 4 3 3 202 dec 3 b d The function is never negative 360256
8dde7d4f097448d3b1a2802dd510128a 3 4 3 3 923 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 360256
8dde7d4f097448d3b1a2802dd510128a 3 4 3 3 379 dec 3 c b The function is never zero 360256
8dde7d4f097448d3b1a2802dd510128a 3 4 3 3 491 dec 3 a b The function is never zero 360256
cb3654f7eda53a3096112b1ed9c153fb 3 4 3 3 889 sim 4 c d cos(x - 3.14)^8 799533
cb3654f7eda53a3096112b1ed9c153fb 3 4 3 3 698 sim 2 a d 5987.51 799533
cb3654f7eda53a3096112b1ed9c153fb 3 4 3 3 54 sim 3 a a 8.5 799533
cb3654f7eda53a3096112b1ed9c153fb 3 4 3 3 873 sim 4 a a -x^3 799533
cb3654f7eda53a3096112b1ed9c153fb 3 4 3 3 388 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 799533
cb3654f7eda53a3096112b1ed9c153fb 3 4 3 3 409 dec 4 c c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 799533
cb3654f7eda53a3096112b1ed9c153fb 3 4 3 3 100 dec 4 b b The function is never zero 799533
cb3654f7eda53a3096112b1ed9c153fb 3 4 3 3 204 dec 4 a a The function is negative at some point 799533
10ca728ce2e42f6b59864815dc945403 3 4 2 2 840 sim 2 d d 4*(5*x + 2)^0.5 582598
10ca728ce2e42f6b59864815dc945403 3 4 2 2 877 sim 2 a a sin(x - 3.14) + 3 582598
10ca728ce2e42f6b59864815dc945403 3 4 2 2 397 sim 1 b a 2.0 582598
10ca728ce2e42f6b59864815dc945403 3 4 2 2 783 sim 2 b d sin(1.57*x) 582598
10ca728ce2e42f6b59864815dc945403 3 4 2 2 304 dec 3 a c The function is never zero 582598
10ca728ce2e42f6b59864815dc945403 3 4 2 2 864 dec 2 a d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 582598
10ca728ce2e42f6b59864815dc945403 3 4 2 2 749 dec 2 d a The function is never zero 582598
10ca728ce2e42f6b59864815dc945403 3 4 2 2 234 dec 1 c d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 582598
c3ba5b4e56bd56eae583b915c4169bae 3 3 3 3 66 sim 3 b b 1.28 574055
c3ba5b4e56bd56eae583b915c4169bae 3 3 3 3 640 sim 4 d d 4105.0 574055
c3ba5b4e56bd56eae583b915c4169bae 3 3 3 3 40 sim 4 b a 0.05 574055
c3ba5b4e56bd56eae583b915c4169bae 3 3 3 3 334 sim 3 d d 15.31 574055
c3ba5b4e56bd56eae583b915c4169bae 3 3 3 3 676 dec 3 c c The function is zero at some point 574055
c3ba5b4e56bd56eae583b915c4169bae 3 3 3 3 344 dec 3 c c The function is never negative 574055
c3ba5b4e56bd56eae583b915c4169bae 3 3 3 3 605 dec 3 a a The function is zero at some point 574055
c3ba5b4e56bd56eae583b915c4169bae 3 3 3 3 59 dec 4 a a The function is never negative 574055
13b1eee4d8d1090d8c2771fa0c8884f3 3 4 2 2 335 sim 4 a a 29.21 1309911
13b1eee4d8d1090d8c2771fa0c8884f3 3 4 2 2 793 sim 4 a a 5*(x + 8)^2 + 5/(x + 1) 1309911
13b1eee4d8d1090d8c2771fa0c8884f3 3 4 2 2 720 sim 3 d d 27.02 1309911
13b1eee4d8d1090d8c2771fa0c8884f3 3 4 2 2 994 sim 3 b b -5*sin(x - 3.14) 1309911
13b1eee4d8d1090d8c2771fa0c8884f3 3 4 2 2 112 dec 3 a b The function is never negative 1309911
13b1eee4d8d1090d8c2771fa0c8884f3 3 4 2 2 571 dec 4 c c The function is never negative 1309911
13b1eee4d8d1090d8c2771fa0c8884f3 3 4 2 2 754 dec 3 d a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 1309911
13b1eee4d8d1090d8c2771fa0c8884f3 3 4 2 2 574 dec 3 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1309911
c5ace2a94dc70d940eab3d0194873e4f 2 1 1 3 87 sim 3 a b -19.01 463353
c5ace2a94dc70d940eab3d0194873e4f 2 1 1 3 560 sim 4 b b 1.0 463353
c5ace2a94dc70d940eab3d0194873e4f 2 1 1 3 856 sim 2 a a 5^cos(x + 3.14) 463353
c5ace2a94dc70d940eab3d0194873e4f 2 1 1 3 851 sim 4 d c 4*(x^(-2))^0.5 463353
c5ace2a94dc70d940eab3d0194873e4f 2 1 1 3 84 dec 3 a a The function is never zero 463353
c5ace2a94dc70d940eab3d0194873e4f 2 1 1 3 777 dec 2 a c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 463353
c5ace2a94dc70d940eab3d0194873e4f 2 1 1 3 518 dec 1 b b The function is defined on the whole interval 463353
c5ace2a94dc70d940eab3d0194873e4f 2 1 1 3 980 dec 1 c b The function is never zero 463353
d2184efb3743993d76efdba20e1827ab 3 4 3 3 761 sim 3 d d 16.0 806320
d2184efb3743993d76efdba20e1827ab 3 4 3 3 34 sim 2 b b 1310.01 806320
d2184efb3743993d76efdba20e1827ab 3 4 3 3 668 sim 4 d d 5.05 806320
d2184efb3743993d76efdba20e1827ab 3 4 3 3 706 sim 3 a a 1.0 806320
d2184efb3743993d76efdba20e1827ab 3 4 3 3 606 dec 2 d d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 806320
d2184efb3743993d76efdba20e1827ab 3 4 3 3 596 dec 2 a c The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 806320
d2184efb3743993d76efdba20e1827ab 3 4 3 3 658 dec 3 d d The function is defined on the whole interval 806320
d2184efb3743993d76efdba20e1827ab 3 4 3 3 770 dec 2 a d The function is zero at some point 806320
06599e39b856d0c9c490a80762addf36 3 4 3 3 924 sim 4 d d (-x^0.5 + 7)^0.5 + cos(x - 1.57) 1864714
06599e39b856d0c9c490a80762addf36 3 4 3 3 344 sim 2 d a 5827.89 1864714
06599e39b856d0c9c490a80762addf36 3 4 3 3 73 sim 2 c c 30.27 1864714
06599e39b856d0c9c490a80762addf36 3 4 3 3 576 sim 4 c c 27.0 1864714
06599e39b856d0c9c490a80762addf36 3 4 3 3 824 dec 3 d d The function is defined on the whole interval 1864714
06599e39b856d0c9c490a80762addf36 3 4 3 3 621 dec 3 a a The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 1864714
06599e39b856d0c9c490a80762addf36 3 4 3 3 796 dec 3 d d The function is not <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> and not always defined 1864714
06599e39b856d0c9c490a80762addf36 3 4 3 3 273 dec 2 a b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 1864714
7fbea248d1e3b26204ee4666ae4746c9 3 4 2 2 539 sim 3 a a 3139.0 432862
7fbea248d1e3b26204ee4666ae4746c9 3 4 2 2 83 sim 3 d d -248.0 432862
7fbea248d1e3b26204ee4666ae4746c9 3 4 2 2 256 sim 4 c b 0.02 432862
7fbea248d1e3b26204ee4666ae4746c9 3 4 2 2 85 sim 4 b c -0.04 432862
7fbea248d1e3b26204ee4666ae4746c9 3 4 2 2 260 dec 3 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 432862
7fbea248d1e3b26204ee4666ae4746c9 3 4 2 2 627 dec 3 c c The function is never negative 432862
7fbea248d1e3b26204ee4666ae4746c9 3 4 2 2 331 dec 3 d d The function is never zero 432862
7fbea248d1e3b26204ee4666ae4746c9 3 4 2 2 795 dec 4 a a The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 432862
4ce0c55dde3607a9cdc64f175ff98b90 2 4 1 2 979 sim 2 b b -sin(1.57*x)*sin(x + 3.14) 478738
4ce0c55dde3607a9cdc64f175ff98b90 2 4 1 2 790 sim 2 d b sin(3.14*x) + 9 + 3^(-cos(x - 1.57)) 478738
4ce0c55dde3607a9cdc64f175ff98b90 2 4 1 2 270 sim 3 a a -0.12 478738
4ce0c55dde3607a9cdc64f175ff98b90 2 4 1 2 132 sim 4 b b 6.28 478738
4ce0c55dde3607a9cdc64f175ff98b90 2 4 1 2 633 dec 4 b b The function is never negative 478738
4ce0c55dde3607a9cdc64f175ff98b90 2 4 1 2 617 dec 3 a d The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 478738
4ce0c55dde3607a9cdc64f175ff98b90 2 4 1 2 859 dec 4 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> 478738
4ce0c55dde3607a9cdc64f175ff98b90 2 4 1 2 274 dec 2 d d The function is defined on the whole interval 478738
29f4ef1c23f0a6de1cfd95c30e567bb3 3 4 3 2 978 sim 4 c c 9*cos(1.57*x) 623133
29f4ef1c23f0a6de1cfd95c30e567bb3 3 4 3 2 597 sim 3 d a -561.2 623133
29f4ef1c23f0a6de1cfd95c30e567bb3 3 4 3 2 65 sim 4 c c (x^0.5 + sin(x + 1.57))^0.5 623133
29f4ef1c23f0a6de1cfd95c30e567bb3 3 4 3 2 962 sim 4 b b 2*cos(x + 3.14) 623133
29f4ef1c23f0a6de1cfd95c30e567bb3 3 4 3 2 321 dec 4 d d The function is never zero 623133
29f4ef1c23f0a6de1cfd95c30e567bb3 3 4 3 2 815 dec 4 a a The function is defined on the whole interval 623133
29f4ef1c23f0a6de1cfd95c30e567bb3 3 4 3 2 744 dec 3 b b The function is <span class="_tooltip">bounded<span class="_tooltiptext">In mathematics, a function f defined on some set X with real or complex values is called bounded if the set of its values is bounded. In other words, there exists a real number M such that |f(x)|≤M for all x in X.</span></span> but not always defined 623133