-
Notifications
You must be signed in to change notification settings - Fork 79
/
train_caption.txt
8835 lines (8835 loc) · 470 KB
/
train_caption.txt
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
formulaire004-equation047 f ( x ) = \sum _ { n = - \infty } ^ { \infty } a _ { n } = x ^ { \alpha _ { n } }
formulaire026-equation071 f ( x _ { 1 } ) \leq f ( x _ { 2 } )
formulaire030-equation000 1 5 4 + 1 3 \leq 1 6 7
MfrDB2656 \frac { 2 } { 4 }
200924-1331-237 i + F > j + x
2009213-139-61 k ^ { 3 } + 1 4 k ^ { 2 } - 1 3 2 k + 1 7 8 9
KME2G3_25_sub_22 x _ { x } ^ { x } + y _ { y } ^ { y } + z _ { z } ^ { z } - x - y - z
MfrDB2212 \sqrt { a } = 2 ^ { - n } \sqrt { 4 ^ { n } a }
formulaire019-equation006 x y ^ { 2 } + e y = a x ^ { 3 } + b x ^ { 2 } + c x + d
formulaire006-equation000 4 4 \pm ( 8 - 1 4 2 - 4 8 ) \times ( 1 9 5 / 1 0 9 )
formulaire032-equation021 n = 1 5 0 0
formulaire011-equation018 x = \sqrt { r ^ { 2 } + a ^ { 2 } } \sin \theta \cos \phi
formulaire020-equation056 \frac { 1 } { 1 - x } = \sum _ { i = 0 } ^ { n } x ^ { i } + \frac { x ^ { n + 1 } } { 1 - x }
formulaire008-equation011 \frac { x ^ { 2 } + y ^ { 2 } } { a ^ { 2 } } - \frac { z ^ { 2 } } { c ^ { 2 } } - 1 = 0
2009213-137-145 8
MfrDB2387 ( a ) ^ { - 1 } - 1
MfrDB0225 1 + 1 = 2
2009213-139-16 y
formulaire015-equation027 u ( \theta _ { 0 } , p ) = 0
formulaire021-equation032 a _ { i , j } = a _ { i - 1 , j + 1 }
formulaire028-equation044 d ^ { 3 } u
2009212-952-29 j
200924-1331-158 t
formulaire017-equation016 y = \frac { - 1 - 4 x } { 2 }
200923-1254-52 6 . 4
MfrDB2094 ( y - 3 ) ( y + 3 ) + y ( y + 3 ) = 0
2009212-952-30 \frac { - b + \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
KME2G3_27_sub_81 \pi \int _ { c } ^ { d } \{ g ( y ) \} ^ { 2 } d y
formulaire025-equation051 e ^ { ( k ) }
MfrDB0055 \frac { 1 } { 2 } + \frac { 2 } { 3 } + \frac { 3 } { 4 } + \frac { 4 } { 5 } + \frac { 5 } { 6 }
formulaire030-equation033 \int d x
formulaire014-equation037 \frac { 1 } { 1 + x } = 1 - x + x ^ { 2 } - x ^ { 3 } + \ldots + ( - 1 ) ^ { n } x ^ { n } + o ( x ^ { n } )
formulaire010-equation074 ( p _ { 1 } , q _ { 1 } ) \leq ( p _ { 2 } , q _ { 2 } )
2009212-1031-39 i ( [ 0 ] )
MfrDB1405 \frac { 1 } { 2 } x = 1 0
2009212-1031-50 \frac { [ t ] } { \sum P }
200924-1331-22 8 . 3
200923-131-309 f
MfrDB1934 \frac { ( | a | - | b | ) ^ { 2 } } { | a - b | }
2009213-139-150 z ^ { \cdots - h }
formulaire023-equation074 x = 1 0 + 0 , 7
formulaire003-equation038 x ^ { 5 } + d x ^ { 2 } + e x + f
MfrDB1994 \sum _ { m = 0 } ^ { M } \sum _ { n = 0 } ^ { N } a _ { m , n }
formulaire020-equation036 2 ^ { 6 0 }
2009213-139-135 S
200924-1312-150 \cdots - [ F ]
formulaire007-equation023 8 y _ { i + 1 }
200924-1331-220 t
formulaire004-equation026 3 n - 5
200924-1331-253 \sum G + j
200922-1017-18 a ^ { x } + b ^ { x } + \frac { c } { 2 }
200923-1254-202 y i
formulaire003-equation030 1 8 6 \pm 6 + 9 8 + 1 7 6 + 9 2
MfrDB0987 X = 1 + 4
2009213-137-61 k ^ { 3 } + 1 4 k ^ { 2 } - 1 3 2 k + 1 7 8 9
MfrDB2300 \sqrt [ 3 ] { \frac { z ^ { 3 } + 2 } { \sqrt { z } + 1 } }
formulaire013-equation051 k \leq 4
2009213-139-95 \gamma ^ { \sqrt { v } }
formulaire028-equation073 f = d ^ { 5 } a _ { 4 } + 5 b d ^ { 4 } a _ { 5 } = - 3 2
2009213-139-116 M + [ H ]
formulaire018-equation018 z - 2
2009210-947-40 7 2
200922-1017-102 z
200924-1331-21 d
formulaire033-equation067 2 m g l
200923-1553-271 \sqrt { Y }
200926-1550-150 \sqrt { p _ { z } }
MfrDB1099 3 + 1 = 4
2009213-139-101 k - a = h - f
formulaire036-equation057 a , b , c
2009212-1031-63 9
formulaire002-equation033 f ( x _ { \theta } )
formulaire019-equation023 ( \frac { 1 } { 2 } a ) + \sqrt { ( \frac { 1 } { 4 } a a ) + ( b b ) }
2009213-137-211 u _ { \theta }
KME1G3_4_sub_22 \lim _ { x \rightarrow \infty } \int _ { 0 } ^ { x } e ^ { - y ^ { 2 } } d y = \frac { \sqrt { \pi } } { 2 }
200923-131-30 \frac { - b + \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
formulaire006-equation025 1 8 9 \pm 1 5 9 \times ( 5 0 \times 9 9 )
200923-1556-88 [ y ]
formulaire003-equation044 h = l + m + n
200926-1617-228 3 3 . 5
formulaire015-equation028 X ^ { 3 } - X ^ { 2 } - 2 X + 1 = 0
MfrDB1777 V = a \cdot b \cdot c
200923-131-202 F l _ { X }
200923-131-29 8
formulaire002-equation043 y = \frac { 1 } { Y }
MfrDB3048 \lim _ { x \rightarrow c } f ( x ) = f ( c )
200922-1017-24 \int e ^ { - z ^ { 2 } } d z = e r f ( z )
200923-1553-262 x ^ { \frac { T } { g _ { E E } } }
formulaire021-equation050 ( ( 1 2 6 \times 1 3 0 ) \times 1 6 2 ) \div ( 1 6 8 - 1 6 1 - 3 2 ) \neq - 1 1 5 4 2
2009213-139-105 j - o - 6 = 5 . 4
200923-131-233 N
200926-1550-30 \frac { - b + \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
2009210-947-82 N Y _ { I }
2009212-1031-37 \frac { R } { ( p ) }
formulaire022-equation062 u ( x - x _ { 0 } ) + v ( y - y _ { 0 } ) = 0
formulaire025-equation050 ( ( 8 \div 1 3 0 ) \div ( 1 9 0 \times 1 2 ) ) \times ( ( 8 6 + 1 4 7 ) - ( 8 4 \div 0 ) ) \neq 2 1 4 7 4 8 3 6 4 7
formulaire033-equation039 p - 1 , p
formulaire008-equation005 2 0 + ( 9 6 \div 9 2 ) = 2 1 . 0 4
200922-947-83 \int ^ { H } _ { \sigma - n } 4 d g _ { j }
MfrDB2883 \int \limits _ { 0 } ^ { + \infty } x ^ { n } e ^ { - x } d x = n !
200923-1253-255 - o
200926-1617-78 \frac { x _ { 1 } } { \frac { x _ { 2 } } { \frac { x _ { 3 } } { x _ { 4 } } } }
formulaire029-equation055 3 6 \times 1 3 7 = 4 9 3 2
129_Nina 1 + 2 + \cdots + n = \frac { n ( n + 1 ) } { 2 }
formulaire030-equation004 f ( y ) - f ( x ) = \int _ { x } ^ { y } g ( t ) d t
65_daniel x = r \cos \theta
200923-1254-326 T ^ { c + L } ( m )
MfrDB2429 s = s _ { 0 } t + \frac { 1 } { 2 } a t ^ { 2 }
200926-1617-72 \sqrt { 1 + \sqrt { 1 + \sqrt { 1 + \sqrt { x } } } }
MfrDB1899 ( y - 3 ) ( y + 3 ) + y ( y + 3 ) = 0
MfrDB1629 \sqrt [ 8 ] { \frac { x - 5 } { 3 - y } }
MfrDB1301 \sin \frac { \pi } { 4 } = \cos \frac { \pi } { 4 } = \frac { \sqrt { 2 } } { 2 }
200926-1550-38 \frac { 4 } { 3 } \pi r ^ { 3 }
formulaire025-equation024 1 - \cos ^ { 2 } x = ( 1 - \cos x ) ( 1 + \cos x )
2009210-947-72 \sqrt { 1 + \sqrt { 1 + \sqrt { 1 + \sqrt { x } } } }
MfrDB1657 y = x ^ { z }
formulaire027-equation039 n Y _ { 2 } ^ { ( n ) }
MfrDB2291 \frac { 5 x - 7 } { 3 } \leq 2 x + 5
2009220-1327-66 \frac { \sqrt { 1 + \cos ^ { 2 } ( \theta ) } } { 2 } = \cos ( 2 \theta )
96_alfonso y = a S ( t ) = a \int _ { 0 } ^ { t } \sin ( \frac { 1 } { 2 } \pi s ^ { 2 } ) d s
200922-949-166 - \pi
formulaire018-equation064 1 + \log _ { 3 } ( 2 )
2009213-137-10 m ^ { b }
2009212-1031-55 7 . 7 R
MfrDB1088 a ^ { 2 } + b ^ { 2 } = c ^ { 2 }
formulaire023-equation052 d ( p + 1 , 0 ) = 0
formulaire038-equation009 f ( s t ) = f ( t s )
118_fujita P ( x ) = \sum _ { i = 0 } ^ { n } a _ { j } x ^ { j }
2009210-947-137 \tan h
MfrDB2204 a x + b < c
formulaire021-equation054 x ( t ) = x ( t - 1 )
formulaire017-equation013 y _ { 1 } ( x )
200923-1253-24 \int e ^ { - z ^ { 2 } } d z = e r f ( z )
formulaire025-equation044 ( e _ { 1 } , \ldots , e _ { n } )
formulaire030-equation026 b _ { 1 3 }
200923-1254-274 \sum n
200925-1126-184 h
200922-947-190 \int \theta + F d n
KME2G3_5_sub_35 \log _ { 2 } \frac { 1 } { 2 } + \log _ { 4 } \frac { 2 } { 4 }
MfrDB3085 \frac { 5 } { x + 1 } + \frac { 5 } { x ^ { 2 } + x }
MfrDB0079 \lim _ { x \rightarrow a } \frac { f ( x ) } { g ( x ) } = \lim _ { x \rightarrow a } \frac { f ^ { ' } ( x ) } { g ^ { ' } ( x ) }
200926-131-32 a x ^ { 4 } + b x + c = 0
200926-1617-163 \alpha
MfrDB1531 \sqrt { x ^ { 2 } } = | x |
94_Frank \frac { a } { \sin A } = \frac { b } { \sin B } = \frac { c } { \sin C }
formulaire035-equation006 ( ( - 1 ) ^ { n } n )
formulaire028-equation004 g _ { i } ( x , y , z ) = 0
MfrDB1289 \lim _ { n \rightarrow \infty } x _ { n } = L
formulaire028-equation051 a = \frac { y } { x }
formulaire022-equation045 1 8 3 \times 9 9 \geq 1 8 1 1 6
105_lucelia \frac { b ^ { 2 } c ^ { 2 } - 4 b ^ { 3 } d - 4 a c ^ { 3 } + 1 8 a b c d - 2 7 a ^ { 2 } d ^ { 2 } } { a ^ { 4 } }
formulaire017-equation043 a b + n c = 1
200922-1017-65 c _ { t }
MfrDB2832 \frac { ( | a | - | b | ) ^ { 2 } } { | a - b | }
200923-1556-7 \sum _ { m } f ( m + 3 )
formulaire004-equation048 c ( 0 ) = 1
96_bruno y = a S ( t ) = a \int _ { 0 } ^ { t } \sin ( \frac { 1 } { 2 } \pi s ^ { 2 } ) d s
200924-1331-286 B + j ^ { A }
2009212-952-115 H
200923-131-276 ( - \int y _ { e } d a ) ^ { i }
formulaire034-equation035 1 1 7 \pm 8 5 \div 1 0 9
200923-1254-242 6
200923-1251-135 \sum E
formulaire037-equation038 2 \times e
200923-1553-281 ( \sqrt { i } )
200922-947-220 0 . 1
126_user0 | x - \frac { p _ { n } } { q _ { n } } | \leq \frac { 1 } { q _ { n } q _ { n + 1 } } < \frac { 1 } { q _ { n } ^ { 2 } }
200923-1254-198 \cdots - z - \Delta
KME2G3_6_sub_30 \sum _ { i = 2 n + 3 m } ^ { 1 0 } i x
2009213-137-83 \cdots + q _ { L }
formulaire006-equation036 \cos ( 2 x ) = \cos ^ { 2 } ( x ) - \sin ^ { 2 } ( x )
MfrDB1231 \frac { 2 ^ { 5 } } { 3 + 1 }
2009213-139-85 \sqrt { \frac { 2 z ^ { 3 } } { \sqrt { \frac { 3 z ^ { 2 } } { \sqrt { 4 z } } } } }
200924-1312-4 V _ { V }
MfrDB1534 \sqrt { x } = 1 0 ^ { ( \log x ) / 2 }
KME2G3_18_sub_95 \sqrt { 1 + \sqrt { 2 + \sqrt { 3 + \sqrt { 4 } } } }
200922-947-135 ( r C )
MfrDB1820 V = a \cdot b \cdot c
formulaire025-equation013 \cos ^ { 2 } \phi + \sin ^ { 2 } \phi = 1
2009213-139-79 \frac { \frac { \frac { x _ { 4 } } { x _ { 3 } } } { x _ { 2 } } } { x _ { 1 } }
formulaire021-equation031 f ^ { ( n ) }
2009213-139-56 2 \alpha + 3 \sqrt { \beta }
2009212-1031-0 - u
200922-947-107 \sqrt { j }
200924-1331-30 \frac { - b + \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
2009212-1031-87 \frac { q } { n }
2009212-1031-14 X
200924-1312-241 X ^ { Y }
MfrDB2856 ( \frac { 1 } { m ^ { 2 } } - \frac { 3 m } { n } + \frac { 2 } { m n } )
KME2G3_11_sub_81 \pi \int _ { c } ^ { d } \{ g ( y ) \} ^ { 2 } d y
2009213-139-138 [ \frac { h } { E } ]
96_rosario y = a S ( t ) = a \int _ { 0 } ^ { t } \sin ( \frac { 1 } { 2 } \pi s ^ { 2 } ) d s
KME1G3_11_sub_21 A = \sqrt { a + \frac { 1 } { \sqrt { a + \frac { 1 } { \sqrt { a } } } } } + \sqrt { b }
2009213-139-13 \sqrt { 1 + \sqrt { 1 + z ^ { 2 } } }
formulaire007-equation048 y _ { 1 } + y _ { 3 } = \sqrt { z _ { 2 } }
200926-1550-73 a ^ { b ^ { c ^ { d } } }
130_jorge \frac { 1 } { 4 } + ( \frac { 1 } { 4 } ) ^ { 2 } + ( \frac { 1 } { 4 } ) ^ { 3 } + \cdots = \frac { 1 } { 3 }
formulaire024-equation027 t _ { 0 } = \frac { x _ { 0 } } { c }
200922-949-207 [ \frac { B } { 7 } ] ^ { N + 6 }
MfrDB0024 ( x ^ { 2 } - 3 ) ^ { 4 } - 7 \cdot ( 8 ^ { 2 } - 3 ) ^ { 2 }
formulaire018-equation001 y _ { k } = f ( x _ { k + 1 } ) - f ( x _ { k } )
200923-1253-197 o ( \sum \gamma )
MfrDB0464 1 + 1
formulaire032-equation020 8 8 + 1 2 2 = 2 1 0
formulaire021-equation023 n _ { 1 } = 3
200923-1251-201 7 9
200923-1553-289 p p
formulaire003-equation069 0 = ( 0 , 0 , \ldots , 0 )
200922-1017-1 \int _ { 0 } ^ { \infty } \frac { z } { \sqrt { z ^ { 3 } + 1 4 } } d z
MfrDB2286 \frac { \sqrt { 9 9 x ^ { 7 } } } { 1 1 x ^ { 3 } }
200923-1556-60 \frac { \beta + \gamma } { \theta }
2009212-1031-61 n v
formulaire001-equation068 Y = g ( X ) = \frac { 1 } { X }
2009210-947-223 u + u - V
200923-1553-13 \sqrt { 1 + \sqrt { 1 + z ^ { 2 } } }
formulaire008-equation068 n _ { x } ^ { 2 } + n _ { y } ^ { 2 } + n _ { z } ^ { 2 } = 1
MfrDB2346 \sin x = \sin ( x + 2 \pi k )
formulaire015-equation065 ( 1 2 0 - 6 9 ) - ( ( 1 7 1 + 6 0 ) \times ( 2 4 / 9 7 ) ) \neq 0
200923-1251-167 F H
formulaire007-equation017 0 , 0 9 + i 0 , 1 2
200923-1556-165 - \theta - w ^ { N }
formulaire032-equation063 x = \frac { z - 3 } { - z - 3 } = \frac { 3 - z } { 3 + z }
200923-1251-224 f _ { z } ^ { q } ( j )
formulaire024-equation061 z _ { 1 } = 1 + \sqrt { 2 }
200923-1556-3 \sum s ^ { Y }
MfrDB1200 Y = A X ^ { 2 }
formulaire035-equation051 2 ^ { ( n - 1 ) }
200923-1553-51 ( 9 )
formulaire036-equation031 a ^ { 2 k }
formulaire028-equation071 f ( x ) = \sqrt { x }
200922-947-3 \log v
formulaire017-equation037 u _ { p _ { i } , q _ { i } }
200926-131-183 0
200926-131-165 \sqrt { H } + g + c
MfrDB1132 h = \frac { 1 } { 2 } g t ^ { 2 }
formulaire018-equation039 p = a ( 1 - e ^ { 2 } )
200922-1017-8 \int \frac { \sin ( x ) + 1 } { \sqrt { \cos ^ { 3 } ( x ) + \tan ( x ) } } d x
MfrDB1724 E _ { k } = \frac { 1 } { 2 } m _ { 1 } v _ { 1 } ^ { 2 } + \frac { 1 } { 2 } m _ { 2 } v _ { 2 } ^ { 2 }
MfrDB1516 \sum _ { m = 0 } ^ { M } \sum _ { n = 0 } ^ { N } a _ { m , n }
KME2G3_12_sub_22 x _ { x } ^ { x } + y _ { y } ^ { y } + z _ { z } ^ { z } - x - y - z
200922-947-19 x ^ { 2 } + y ^ { 2 } = z ^ { 2 }
200922-949-222 q c e
2009213-139-245 \sum _ { \gamma > I } [ 2 ]
2009213-139-80 e ^ { \int x ^ { 2 } d x }
2009220-1327-42 \frac { 1 } { 3 } \pi r ^ { 2 } h
200925-1126-42 \frac { 1 } { 3 } \pi r ^ { 2 } h
formulaire020-equation061 1 0 ^ { - 2 2 }
2009213-137-62 ( \sin ( x ) ^ { 2 } + 3 \cos ( x ) ^ { 2 } ) ^ { 4 }
2009212-1031-128 \frac { b } { \sum N }
81_caue A _ { 2 k } = \frac { 2 R A _ { k } } { 2 R + \sqrt { 4 R ^ { 2 } + A ^ { 2 } _ { k } } }
MfrDB2678 | a + i b | = \sqrt { x ^ { 2 } + y ^ { 2 } }
200926-1550-157 1 . 6
formulaire016-equation012 u _ { n } = \frac { 1 } { n }
KME2G3_29_sub_35 \log _ { 2 } \frac { 1 } { 2 } + \log _ { 4 } \frac { 2 } { 4 }
formulaire015-equation031 e ^ { - z } = \cos ( z ) - \sin ( z )
formulaire014-equation028 x = 3
200924-1312-82 t ( ( \phi ) )
formulaire036-equation017 a = \frac { v ^ { 2 } } { r }
200923-1254-57 g - ( \theta )
200922-949-96 - \alpha
200923-1553-222 9
MfrDB1797 2 ^ { x ^ { 3 } } + 3 ^ { y ^ { x - 2 } } - 2 ^ { y + x ^ { 2 y } }
KME2G3_15_sub_74 \int _ { \log 3 } ^ { 0 } \frac { 1 } { e ^ { t } + 1 } d t
formulaire005-equation061 z = 0
200923-1556-181 [ \sum T ]
2009212-1031-132 \sum _ { \Delta \geq \sum H } \cdots + \int \frac { H } { b } d T
200923-1253-273 r _ { n } ^ { V }
200923-1254-87 ( L M )
MfrDB1266 \int \limits _ { 0 } ^ { \infty } \frac { \sin ^ { 2 } x } { x ^ { 2 } } d x = \frac { \pi } { 2 }
200923-1553-0 \sin ^ { 2 } ( x ) + \cos ^ { 2 } ( x ) = 1
200926-1550-123 F
2009213-139-199 \sqrt { g - R }
200925-1126-49 \cos ( 0 ) = 1
2009220-1327-121 4
200926-1617-164 \sqrt { V } ^ { m - P }
formulaire038-equation012 a _ { p } = p - n _ { p }
formulaire031-equation053 g ( x + 4 ) = g ( x )
KME2G3_24_sub_35 \log _ { 2 } \frac { 1 } { 2 } + \log _ { 4 } \frac { 2 } { 4 }
75_leo c ^ { 2 } = a ^ { 2 } + b ^ { 2 } - 2 a b \cos C
MfrDB0148 \sqrt { 8 }
200923-1553-293 ( \cdots + f )
KME2G3_11_sub_26 x _ { 1 } \times x _ { 2 } \times x _ { 3 } \times x _ { 4 } = X
MfrDB0604 \frac { 1 + 2 } { 3 }
101_Nina S = ( \sum _ { i = 1 } ^ { n } \theta _ { i } - ( n - 2 ) \pi ) r ^ { 2 }
124_edwin \sum _ { i = 1 } ^ { k } \frac { x ^ { a _ { i } } } { 1 - x ^ { b _ { i } } } = \frac { 1 } { 1 - x }
formulaire020-equation066 x ^ { 2 } + 3 x
200924-1312-229 k _ { I _ { X } }
200924-1331-268 R
formulaire023-equation068 ( y _ { 2 } - y _ { 1 } ) X - ( x _ { 2 } - x _ { 1 } ) Y = x _ { 1 } y _ { 2 } - x _ { 2 } y _ { 1 }
91_david \sin \theta = \frac { y } { \sqrt { x ^ { 2 } + y ^ { 2 } } }
formulaire039-equation007 2 p x _ { 1 }
formulaire034-equation073 x ^ { 1 9 } - x ^ { 1 8 } - x ^ { 1 7 } + x ^ { 2 } - 1
formulaire016-equation036 y = x + 3
110_edwin \frac { 1 } { \frac { 1 } { 2 } ( \frac { 1 } { a } + \frac { 1 } { b } ) } = \frac { 2 a b } { a + b }
200923-1556-255 i X
126_danilo | x - \frac { p _ { n } } { q _ { n } } | \leq \frac { 1 } { q _ { n } q _ { n + 1 } } < \frac { 1 } { q _ { n } ^ { 2 } }
formulaire029-equation074 5 , 1 \times 1 0 ^ { 1 8 }
formulaire018-equation069 t _ { \gamma } ^ { k }
2009213-137-185 1 . 3
200923-1253-156 \frac { \cdots - H } { V \sum T }
200926-1550-110 \sqrt { Y }
formulaire015-equation053 x = - \sqrt { y - 3 }
formulaire036-equation068 1 + 0 i
MfrDB1501 \lim _ { n \rightarrow \infty } \frac { n ^ { 2 } + 3 n } { 2 n ^ { 2 } + 1 } = \frac { 1 } { 2 }
94_danilo \frac { a } { \sin A } = \frac { b } { \sin B } = \frac { c } { \sin C }
formulaire037-equation072 X _ { i , j }
MfrDB1959 \int \limits _ { 0 } ^ { 1 } \int \limits _ { 0 } ^ { 1 } x ^ { 2 } y ^ { 2 } d x d y
200926-131-44 \sin ( \frac { \pi } { 4 } ) = \frac { 1 } { \sqrt { 2 } }
formulaire030-equation041 \frac { a } { 4 }
200922-949-30 \frac { - b + \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
131_alfonso f ( x ) = a _ { n } x ^ { n } + a _ { n - 1 } x ^ { n - 1 } + \cdots + a _ { 1 } x + a _ { 0 }
KME2G3_28_sub_65 [ \frac { 2 } { 3 } x ^ { \frac { 3 } { 2 } } ] _ { 0 } ^ { 1 }
MfrDB0050 1 = \sin ^ { 2 } x + \cos ^ { 2 } x
MfrDB1176 1 + 2
200924-1331-43 \frac { \pi r ^ { 2 } h } { 3 }
200926-131-93 - 7 z
200926-131-101 k
200926-1550-32 a x ^ { 4 } + b x + c = 0
200923-131-227 y _ { \phi }
formulaire023-equation047 m \leq m - r
MfrDB1302 1 + \tan ^ { 2 } y = \frac { 1 } { \cos ^ { 2 } y }
2009212-1031-121 6 . 7
200923-1254-287 [ P ]
200923-1556-215 - \sum N
200923-1556-83 \frac { \cdots + Y _ { P } } { p ^ { I } }
2009210-947-199 \sqrt { \sqrt { y } }
200922-947-117 ( F ) ^ { \pi } Y
formulaire009-equation068 \frac { x ^ { 2 } } { n _ { x } ^ { 2 } } + \frac { y ^ { 2 } } { n _ { y } ^ { 2 } } + \frac { z ^ { 2 } } { n _ { z } ^ { 2 } } = 1
200924-1312-6 \sum _ { n = 1 } ^ { N } ( - 1 ) ^ { n } \sin ( n x )
89_leissi x ^ { \prime } = x \cos \theta + y \sin \theta
formulaire014-equation023 \frac { x ^ { 2 } + y ^ { 2 } } { a ^ { 2 } } - \frac { z ^ { 2 } } { c ^ { 2 } } + 1 = 0
200924-1331-29 \sqrt { 1 }
126_Fabricio | x - \frac { p _ { n } } { q _ { n } } | \leq \frac { 1 } { q _ { n } q _ { n + 1 } } < \frac { 1 } { q _ { n } ^ { 2 } }
MfrDB0194 2 + 1 = 3
formulaire009-equation067 x = \alpha _ { 1 } y _ { 1 } + \ldots + \alpha _ { i - 1 } y _ { i - 1 } + \alpha _ { i + 1 } y _ { i + 1 } + \ldots \alpha _ { x n + 1 } y _ { n + 1 }
200924-1312-85 \sqrt { \frac { 2 z ^ { 3 } } { \sqrt { \frac { 3 z ^ { 2 } } { \sqrt { 4 z } } } } }
formulaire036-equation005 1 0 7 - 1 1 0 - 6 0 \geq - 6 3
formulaire002-equation010 ( 2 9 - 2 4 + 1 6 9 ) \times 8 8 \leq - 1 4 4 3 1
2009213-137-38 \frac { 4 } { 3 } \pi r ^ { 3 }
127_edwin n ! - 1
formulaire005-equation046 \frac { 1 } { 3 } \frac { 1 } { 3 } \gamma
200923-131-268 \frac { 0 s } { 5 . 7 }
200923-1251-144 P - \sqrt { 4 } < [ k ]
200923-1556-80 e ^ { \int x ^ { 2 } d x }
200923-131-147 \frac { z } { i _ { m } }
KME2G3_12_sub_28 z _ { 1 } ^ { 2 } + 1 ^ { z } - z _ { 2 } ^ { 2 } + 2 ^ { z }
formulaire019-equation005 1 3 9 \pm ( 1 8 4 \times ( 5 4 + 1 0 2 ) ) + ( ( 1 7 8 \div 1 6 9 ) + 2 7 )
200926-1617-102 \sum _ { \beta > d } C + E
formulaire007-equation010 1 4 6 \times ( 1 0 1 + 1 5 7 - 1 8 1 ) = 1 1 2 4 2
200926-1550-0 \sin ^ { 2 } ( x ) + \cos ^ { 2 } ( x ) = 1
formulaire001-equation019 v , u _ { 1 } , u _ { 2 }
200926-1617-48 \sin ( \frac { \pi } { 3 } ) = \frac { 1 } { 2 }
200926-1617-22 d _ { G }
MfrDB0097 ( - 1 ) ^ { \frac { p - 1 } { 2 } } = 1
200924-1331-0 \sin ^ { 2 } ( x ) + \cos ^ { 2 } ( x ) = 1
200924-1312-188 \int _ { \sqrt { \sigma } } ^ { - b } - A d M _ { s }
200923-131-206 \sum _ { h > \pi } I - q
MfrDB1292 \lim _ { n \rightarrow \infty } | x _ { n + 1 } - x _ { n } |
131_Fabricio f ( x ) = a _ { n } x ^ { n } + a _ { n - 1 } x ^ { n - 1 } + \cdots + a _ { 1 } x + a _ { 0 }
200923-1251-103 \sum t - \lambda
200926-131-175 \frac { x + \lambda } { \sqrt { L } }
formulaire011-equation042 p ^ { 2 } \neq 0
MfrDB2157 \sin \frac { \pi } { 4 } = \cos \frac { \pi } { 4 } = \frac { \sqrt { 2 } } { 2 }
200922-1017-122 7 . 4
formulaire038-equation057 a = 0 , 1
MfrDB2061 7 + 5
200923-1253-48 \sin ( \frac { \pi } { 3 } ) = \frac { 1 } { 2 }
formulaire034-equation018 5 + 9 + 5 = 1 9
formulaire035-equation043 d s ^ { 2 } = d r ^ { 2 } + r ^ { 2 } d \theta ^ { 2 } + r ^ { 2 } \sin ^ { 2 } \theta d \phi ^ { 2 }
200923-1253-241 - q - z
formulaire031-equation011 e _ { 1 } = 0
MfrDB2682 1 1 + 1 2 = 3
formulaire037-equation019 u = \cos ( t )
2009213-139-41 u = a
200922-947-136 \sqrt { l }
200923-1254-15 \frac { A - h } { N }
200924-1331-247 \frac { h } { I }
200922-949-263 a ^ { P } ( h )
formulaire014-equation068 - \frac { 1 0 1 } { 1 0 0 }
MfrDB1666 \sqrt [ 5 ] { 5 5 }
formulaire013-equation063 \frac { 1 } { g ( y ) } \frac { d y } { d x } = f ( x )
MfrDB2486 ( 1 2 - x ) ^ { 2 }
formulaire002-equation006 x ^ { 3 } + 3 x ^ { 2 } \sqrt { 3 } - 3 x - \sqrt { 3 }
2009210-947-42 \frac { 1 } { 3 } \pi r ^ { 2 } h
KME2G3_4_sub_26 x _ { 1 } \times x _ { 2 } \times x _ { 3 } \times x _ { 4 } = X
200926-131-142 H
2009213-137-93 \sin ^ { \gamma } 7
MfrDB3013 \sum _ { n = 1 } ^ { \infty } ( b _ { n } - b _ { n + 1 } )
MfrDB1712 \int \cos t d t = \sin t
2009210-947-26 a + \frac { \sqrt { b + c } } { 2 }
MfrDB2583 V = a \cdot b \cdot c
formulaire025-equation023 \pi = \frac { 2 \pi } { 2 }
formulaire036-equation043 a X ^ { 2 } - b X - a
200925-1126-200 \int \sin ^ { f } i d R _ { H }
formulaire036-equation014 o ( ( x - x _ { 0 } ) ^ { n } )
MfrDB2900 3 a ^ { 2 } b ^ { 3 } + 5 a ^ { 3 } b ^ { 2 } - \frac { a ^ { 5 } b ^ { 8 } } { 2 }
2009213-137-226 \cos m
formulaire018-equation015 ( ( 7 2 \times 1 1 3 ) \times 5 6 ) - ( 8 2 \times 9 6 ) \geq 4 4 7 7 4 3
formulaire004-equation038 n - i
formulaire006-equation061 ( 2 + 3 i )
200922-1017-145 t
200923-1556-213 \sum B \neq \sum 2
200923-1253-193 \int \gamma ^ { f } d m
2009212-952-77 v
formulaire028-equation058 s = 3
200922-1017-144 \int ^ { H } _ { \sqrt { L } } \frac { z } { z } d N
200923-1253-19 x ^ { 2 } + y ^ { 2 } = z ^ { 2 }
KME2G3_15_sub_65 [ \frac { 2 } { 3 } x ^ { \frac { 3 } { 2 } } ] _ { 0 } ^ { 1 }
200923-1254-32 a x ^ { 4 } + b x + c = 0
200923-131-58 \sum q
200925-1126-55 \frac { 1 } { \sin ( x ) + 1 }
82_carlos q = \sqrt { ( \frac { B - A } { C } ) ^ { 2 } + 1 } + \frac { B - A } { C }
130_Fabricio \frac { 1 } { 4 } + ( \frac { 1 } { 4 } ) ^ { 2 } + ( \frac { 1 } { 4 } ) ^ { 3 } + \cdots = \frac { 1 } { 3 }
formulaire037-equation011 6 0 = 2 \times 2 \times 3 \times 5
200923-131-32 a x ^ { 4 } + b x + c = 0
200926-1617-216 6
formulaire021-equation068 ( x ^ { 2 } + 1 ) ( x + 1 ) ( x - 1 ) ^ { 2 } = 0
2009210-947-16 3 1
formulaire017-equation020 ( ( 1 3 \times 1 4 6 ) - 1 2 4 ) - 1 9 \geq 1 7 5 4
formulaire025-equation031 x = 2 \times 7 0 + 3 \times 2 1 + 2 \times 1 5 = 2 3 3
MfrDB1107 x + y = 1 6
formulaire024-equation040 0 \pm 1 8 6 + 3 3 - 1 7 0 - 6 3
formulaire029-equation062 a _ { n } x ^ { n } + a _ { n - 1 } x ^ { n - 1 } + \ldots + a _ { 1 } x ^ { 1 } + a _ { 0 } = 0
formulaire004-equation030 0 \pm 5 2 \times ( 1 6 9 + 1 9 6 - 5 8 )
200924-1312-132 1
MfrDB2422 \int \limits _ { 0 } ^ { R } \frac { 2 x } { 1 + x ^ { 2 } } d x = \log ( 1 + R ^ { 2 } )
2009213-137-23 9 . 2
93_edwin r ( r _ { 0 } \sin ( \theta - \theta _ { 0 } ) - r _ { 1 } \sin ( \theta - \theta _ { 1 } ) ) = r _ { 0 } r _ { 1 } \sin ( \theta _ { 1 } - \theta _ { 0 } )
formulaire002-equation051 \frac { 1 } { n ^ { k + 2 } }
200926-1550-143 L X
formulaire011-equation005 1 7 0 \pm 8 \times 1 0 9
2009213-137-74 e _ { f _ { g _ { h } } }
111_david \sqrt [ n ] { 1 } = \cos \frac { 2 k \pi } { n } + i \sin \frac { 2 k \pi } { n }
200923-1251-131 I V
formulaire031-equation061 \sin ^ { 2 } \phi = 1 - n _ { x } ^ { 2 } - n _ { y } ^ { 2 }
200926-1550-84 \frac { x } { a + \frac { x } { b - \frac { x } { c } } }
200926-1617-150 s
formulaire016-equation055 ( 1 3 2 + 1 2 9 - 4 4 ) \div 1 0 2 \neq - 2
KME2G3_23_sub_81 \pi \int _ { c } ^ { d } \{ g ( y ) \} ^ { 2 } d y
2009213-137-73 a ^ { b ^ { c ^ { d } } }
200922-947-131 \sin ^ { A } j
formulaire035-equation027 a , b , c , d , e
formulaire035-equation064 d _ { 1 , 0 } ^ { 1 } = \frac { - \sin \theta } { \sqrt { 2 } }
200924-1331-239 x
200922-947-53 c ^ { c }
200922-947-87 p
formulaire009-equation040 1 0 8 - ( 2 2 \times ( 1 7 + 1 3 5 ) ) = - 3 2 3 6
formulaire022-equation058 X ^ { 2 } - 2 \times \frac { 5 } { 4 } X + 1 = 0
200922-949-191 p
formulaire020-equation018 a b c d
200923-1556-103 t
formulaire015-equation044 X _ { 1 } , X _ { 2 } , \ldots
KME2G3_29_sub_30 \sum _ { i = 2 n + 3 m } ^ { 1 0 } i x
200923-131-171 \int _ { \sum 5 } ^ { 2 - S } q d z _ { n }
MfrDB0022 \frac { 1 - 2 + \frac { 3 } { 4 } } { ( 5 - 6 ) ^ { 7 } }
formulaire021-equation013 x ^ { 3 } + x ^ { 2 } - x - 1
2009213-139-228 1
107_carlos a ^ { 2 } + b ^ { 2 } = ( a + b i ) ( a - b i )
2009212-1031-110 d = \sqrt { x }
formulaire039-equation034 x ^ { a } ( p )
200923-1553-220 T
200924-1312-32 a x ^ { 4 } + b x + c = 0
200923-1556-166 \sqrt { H }
200923-1254-104 \sum 3 - \int B d V
200922-1017-89 z _ { y }
formulaire023-equation020 1 8 1 \times ( ( 4 7 / 1 8 4 ) - 1 2 6 ) \neq 1 0 3 9
formulaire007-equation037 \sum _ { i = 1 } ^ { n } k _ { i } = \sum _ { j = 1 } ^ { m } q _ { j }
2009212-1031-102 9 . 3
MfrDB1310 \sqrt { \frac { 1 } { n } \sum _ { k = 1 } ^ { n } ( a _ { k } ) ^ { 2 } } \geq \frac { 1 } { n } \sum _ { k = 1 } ^ { n } a _ { k }
2009213-137-141 \sqrt { \tan B }
200926-1550-64 \beta - L ^ { k } ( t )
KME1G3_4_sub_21 A = \sqrt { a + \frac { 1 } { \sqrt { a + \frac { 1 } { \sqrt { a } } } } } + \sqrt { b }
94_leo \frac { a } { \sin A } = \frac { b } { \sin B } = \frac { c } { \sin C }
200926-131-79 \frac { \frac { \frac { x _ { 4 } } { x _ { 3 } } } { x _ { 2 } } } { x _ { 1 } }
formulaire032-equation014 \frac { \pi ^ { 2 } } { 8 } = \frac { 1 } { 1 ^ { 2 } } + \frac { 1 } { 3 ^ { 2 } } + \frac { 1 } { 5 ^ { 2 } } + \ldots + \frac { 1 } { ( 2 n + 1 ) ^ { 2 } } + \ldots = \sum _ { k = 0 } ^ { \infty } \frac { 1 } { ( 2 k + 1 ) ^ { 2 } }
200922-949-7 \sum _ { m } f ( m + 3 )
MfrDB2952 g ( x , y ) = \sqrt [ 3 ] { x - y } + \sqrt { | x + y | }
2009213-137-245 \frac { M } { \frac { H } { y } }
200923-1253-34 \frac { \cdots + 0 . 3 } { \int F d j }
MfrDB1495 E = E _ { k } + E _ { p }
formulaire020-equation048 ( n \times n )
formulaire016-equation022 ( 1 - t ^ { n } ) a _ { n } ( t ) = \frac { 1 - t ^ { n } } { n ( 1 - t ) } - t ^ { n }
200923-1254-31 \frac { - b - \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
90_carlos y = r \sin \theta
MfrDB1472 \int \limits _ { 0 } ^ { \infty } \sqrt { x } e ^ { - x } d x = \frac { 1 } { 2 } \sqrt { \pi }
formulaire008-equation066 c _ { 1 } = g ^ { k }
2009220-1327-70 \cos \sqrt { \beta } ^ { M }
200926-1617-135 0 . 7
formulaire022-equation043 1 0 ^ { - n }
formulaire018-equation007 t ^ { \frac { 2 } { 3 } }
KME1G3_7_sub_21 A = \sqrt { a + \frac { 1 } { \sqrt { a + \frac { 1 } { \sqrt { a } } } } } + \sqrt { b }
KME2G3_30_sub_38 \frac { 2 } { \frac { 3 m - 2 n \times 9 ^ { n } - 9 ^ { m } } { 2 n - 1 } }
2009210-947-14 a + \sqrt { \frac { b + c } { d + f } }
MfrDB2916 \lim _ { y \rightarrow \infty } y \sin ( \frac { c } { y } ) = c
MfrDB2117 \int \limits _ { 0 } ^ { + \infty } x ^ { n } e ^ { - x } d x = n !
formulaire030-equation022 m _ { g } d _ { g }
MfrDB2208 \sqrt { x ^ { 2 } } = | x |
70_hirata \cos \theta = \frac { x } { \sqrt { x ^ { 2 } + y ^ { 2 } } }
200926-1617-197 \int \sqrt { c } d I
200923-1553-27 9 . 9 E
MfrDB2009 \sqrt { x y z } = \sqrt { x } \sqrt { y } \sqrt { z }
formulaire005-equation004 t ^ { 5 } + t - a
MfrDB1941 f ^ { ' } ( x ) = \frac { 1 } { 2 \sqrt { x } }
9_em_71 T ^ { \mu } _ { \mu }
200922-947-167 \beta ^ { E + e } + 0 < \int \beta d k
formulaire036-equation044 a = \frac { ( d _ { 1 } + d _ { 2 } ) } { 2 } = \frac { m ( z _ { 1 } + z _ { 2 } ) } { 2 }
200923-131-201 \frac { j } { u }
2009210-947-214 2 . 9 g
formulaire011-equation028 \frac { 7 } { 1 0 }
formulaire039-equation038 X - x _ { 0 }
MfrDB1984 \sin x = \sin ( x + 2 \pi k )
200922-949-98 \frac { n } { u }
MfrDB2972 m ( b - a ) \leq \int \limits _ { a } ^ { b } f ( x ) d x \leq M ( b - a )
200922-1017-84 \frac { x } { a + \frac { x } { b - \frac { x } { c } } }
200923-1254-222 t X
formulaire022-equation020 1 1 5 \pm 1 7 0 / ( 8 7 - 1 4 9 - 1 5 8 )
200926-1550-161 5 . 2
formulaire024-equation072 q _ { 1 } + q _ { 2 } + q _ { 3 } = 1
81_hirata A _ { 2 k } = \frac { 2 R A _ { k } } { 2 R + \sqrt { 4 R ^ { 2 } + A ^ { 2 } _ { k } } }
KME2G3_4_sub_74 \int _ { \log 3 } ^ { 0 } \frac { 1 } { e ^ { t } + 1 } d t
MfrDB2803 A ( x ) = \frac { 1 } { x } + \frac { 1 } { x ^ { 2 } } + B ( x )
MfrDB2971 | \int \limits _ { a } ^ { b } f ( x ) d x | \leq \int \limits _ { a } ^ { b } | f ( x ) | d x
200922-949-26 a + \frac { \sqrt { b + c } } { 2 }
2009213-139-178 ( 2 )
formulaire019-equation070 2 4 - 4 3 \neq 1 8
MfrDB1587 t = \frac { t _ { 0 } } { \sqrt { 1 - \frac { v ^ { 2 } } { c ^ { 2 } } } }
200924-1331-32 a x ^ { 4 } + b x + c = 0
formulaire005-equation056 x - n
MfrDB3065 h ( x , y ) = x ^ { y + \frac { 1 } { y } }
200926-1550-54 \log _ { 2 } ( 2 ^ { 5 } ) = 5
200926-1550-124 - P
formulaire010-equation072 \cos ( \alpha )
2009213-137-221 w
107_bruno a ^ { 2 } + b ^ { 2 } = ( a + b i ) ( a - b i )
formulaire038-equation016 \sum d ( s ) = 2 a
111_Nina \sqrt [ n ] { 1 } = \cos \frac { 2 k \pi } { n } + i \sin \frac { 2 k \pi } { n }
formulaire013-equation008 x \leq y
formulaire022-equation046 x ^ { 3 } - x ^ { 2 } \sqrt { 7 } + x + \frac { 1 } { \sqrt { 7 } }
MfrDB2186 a ^ { 2 } + b ^ { 2 } = c ^ { 2 }
MfrDB2021 \cos ^ { 3 } y = \frac { 1 } { 4 } ( \cos 3 y + 3 \cos y )
formulaire007-equation014 f ( h )
81_leissi A _ { 2 k } = \frac { 2 R A _ { k } } { 2 R + \sqrt { 4 R ^ { 2 } + A ^ { 2 } _ { k } } }
200924-1312-118 [ Y - f ]
200925-1126-116 2 . 9
formulaire015-equation066 n ^ { 2 } + n
formulaire033-equation054 f _ { 0 } , \ldots , f _ { p }
formulaire034-equation037 s _ { 1 } , \ldots , s _ { n }
2009210-947-156 B ^ { B + 4 }
formulaire004-equation037 x _ { 0 } , y _ { 0 } , z _ { 0 }
200926-1550-112 \sigma + \sum n
81_carlos A _ { 2 k } = \frac { 2 R A _ { k } } { 2 R + \sqrt { 4 R ^ { 2 } + A ^ { 2 } _ { k } } }
formulaire036-equation022 s ^ { 2 } + s t = 1
89_leo x ^ { \prime } = x \cos \theta + y \sin \theta
200923-1254-60 \frac { \beta + \gamma } { \theta }
formulaire031-equation067 \gamma ( t )
200924-1331-242 ( \int h d z )
KME1G3_3_sub_22 \lim _ { x \rightarrow \infty } \int _ { 0 } ^ { x } e ^ { - y ^ { 2 } } d y = \frac { \sqrt { \pi } } { 2 }
MfrDB1870 t = \frac { t _ { 0 } } { \sqrt { 1 - \frac { v ^ { 2 } } { c ^ { 2 } } } }
MfrDB1750 a _ { 1 } + a _ { 2 }
200925-1126-156 8 0
MfrDB3077 \sqrt [ n ] { \frac { n + 1 } { ( n - 1 ) ^ { 2 } } }
MfrDB1957 \int \cos t d t = \sin t
MfrDB3015 \lim _ { y \rightarrow \infty } y \sin ( \frac { c } { y } ) = c
formulaire023-equation036 a k b = - b ( y - y _ { 0 } )
91_leissi \sin \theta = \frac { y } { \sqrt { x ^ { 2 } + y ^ { 2 } } }
formulaire031-equation000 1 4 3 \pm ( 1 2 4 \times ( 3 1 - 3 5 ) ) \div 1 3 5
formulaire034-equation056 x ^ { 3 } - 3 a x ^ { 2 } + ( 3 a ^ { 2 } - 3 b c ) x + 3 a b c - a ^ { 3 } - b ^ { 3 } - c ^ { 3 } = 0
118_carlos P ( x ) = \sum _ { i = 0 } ^ { n } a _ { j } x ^ { j }
200922-949-72 \sqrt { n - \gamma }
formulaire033-equation065 ( 1 9 8 + 1 8 8 ) \times 1 5 8 \neq 2 5 1 2
90_alfonso y = r \sin \theta
formulaire038-equation048 c _ { 0 } ( f )
200926-131-244 ( s )
MfrDB3000 \int \limits _ { 3 } ^ { 6 } \int \limits _ { 2 } ^ { 4 } 2 d x d y = 2 \cdot ( 6 - 3 ) \cdot ( 4 - 2 ) = 1 2
formulaire007-equation001 f ( x ) = \frac { x _ { b } - x } { x _ { b } - x _ { a } } y _ { a } + \frac { x - x _ { a } } { x _ { b } - x _ { a } } y _ { b }
formulaire003-equation060 ( ( 1 1 7 \times 5 4 ) \div ( 1 4 1 \times 1 2 4 ) ) - ( ( 7 0 \div 1 9 3 ) \div 1 5 9 ) \geq 0
KME2G3_28_sub_35 \log _ { 2 } \frac { 1 } { 2 } + \log _ { 4 } \frac { 2 } { 4 }
200924-1312-237 6 . 7
2009213-137-136 \sqrt { m - h + I }
2009212-1031-16 \sin 5
formulaire006-equation051 n \log ( n )
formulaire038-equation004 d _ { q 2 }
KME2G3_9_sub_22 x _ { x } ^ { x } + y _ { y } ^ { y } + z _ { z } ^ { z } - x - y - z
MfrDB1739 g ( 2 , 3 , 4 ) = 3 4 ^ { - 3 }
formulaire025-equation026 c _ { i } ^ { 0 }
200923-1253-38 \frac { 4 } { 3 } \pi r ^ { 3 }
110_user0 \frac { 1 } { \frac { 1 } { 2 } ( \frac { 1 } { a } + \frac { 1 } { b } ) } = \frac { 2 a b } { a + b }
KME2G3_0_sub_95 \sqrt { 1 + \sqrt { 2 + \sqrt { 3 + \sqrt { 4 } } } }
MfrDB0081 f ( x ) + g ( x ) = 0
formulaire039-equation013 2 ^ { 1 7 7 }
200923-131-242 \alpha
MfrDB2850 \lim _ { n \rightarrow \infty } \frac { n ! } { \sqrt { 2 \pi n } ( \frac { n } { e } ) } = 1
formulaire038-equation046 ( x + 3 ) x
MfrDB1846 a _ { n } = a _ { 1 } \cdot q ^ { n - 1 }
MfrDB2975 g ( x , y ) = \sqrt [ 3 ] { x - y } + \sqrt { | x + y | }
200923-1253-72 \sqrt { 1 + \sqrt { 1 + \sqrt { 1 + \sqrt { x } } } }
MfrDB1892 \sin x = \sin ( x + 2 \pi k )
200922-949-78 \sqrt { g } ^ { ( 1 . 1 ) }
MfrDB0807 e = m c ^ { 2 }
MfrDB1529 x ^ { 2 } - x - 6 < 0
formulaire027-equation020 2 + 1 1 1 + 4 0 - 1 8 5 + 4 7 \neq 1 2
formulaire003-equation001 - \frac { 1 } { \pi }
200923-1254-42 \frac { 1 } { 3 } \pi r ^ { 2 } h
KME2G3_26_sub_30 \sum _ { i = 2 n + 3 m } ^ { 1 0 } i x
MfrDB1550 ( y ^ { 4 } - 1 ) / ( y ^ { 2 } - 1 )
90_daniel y = r \sin \theta
200923-1254-324 ( \gamma + z )
75_rosario c ^ { 2 } = a ^ { 2 } + b ^ { 2 } - 2 a b \cos C
MfrDB0145 a = b + c
200923-1251-141 0 e
200925-1126-1 \int _ { 0 } ^ { \infty } \frac { z } { \sqrt { z ^ { 3 } + 1 4 } } d z
2009210-947-74 e _ { f _ { g _ { h } } }
MfrDB2238 x - 3 = 2
200926-1550-144 t
200923-1251-252 o
80_hirata \frac { 1 } { r ^ { 2 } } = \frac { 1 } { ( R - m ) ^ { 2 } } + \frac { 1 } { ( R + m ) ^ { 2 } }
2009220-1327-37 1 3 + \pi r ^ { 2 }
formulaire014-equation002 \frac { 3 h } { 8 } ( f _ { 0 } + 3 f _ { 1 } + 3 f _ { 2 } + f _ { 3 } )
MfrDB2970 3 a ^ { 2 } b ^ { 3 } + 5 a ^ { 3 } b ^ { 2 } - \frac { a ^ { 5 } b ^ { 8 } } { 2 }
formulaire020-equation015 ( ( 4 3 / 1 8 2 ) \times 6 ) \times 6 \geq 8
200926-131-36 1 + \frac { \sqrt { a ^ { 2 } + 1 + b } } { 3 }
MfrDB0369 x + 1
formulaire011-equation068 e ^ { X + Y } - e ^ { X } e ^ { Y }
KME2G3_26_sub_65 [ \frac { 2 } { 3 } x ^ { \frac { 3 } { 2 } } ] _ { 0 } ^ { 1 }
MfrDB2958 ( x + 1 ) ^ { n + 1 } = ( x + 1 ) ( x + 1 ) ^ { n }
MfrDB0692 4 + 3
formulaire031-equation068 2 + 2 = 4
formulaire006-equation031 6 = 2 ^ { 1 } ( 2 ^ { 2 } - 1 )
formulaire022-equation037 t = ( 2 n + 1 ) x
2009213-137-71 \phi n
formulaire006-equation027 d _ { t c } = d _ { a } + t _ { b r }
formulaire023-equation053 ( ( - 1 ) ^ { n } n + n )
MfrDB1842 6 ^ { 6 } \cdot 6 ^ { 2 } = ( 6 ^ { x } ) ^ { 4 }
200923-131-349 v
formulaire001-equation052 p = \frac { 1 } { \theta + 1 }
2009213-139-74 e _ { f _ { g _ { h } } }
formulaire035-equation061 a _ { i } = a _ { i + n }
200926-1617-167 \sum y - I
formulaire018-equation017 \alpha , - \alpha
MfrDB1875 F _ { g } = k \cdot \frac { m \cdot M _ { z } } { r ^ { 2 } }
formulaire012-equation038 \alpha x ^ { \alpha - 1 }
200924-1312-42 \frac { 1 } { 3 } \pi r ^ { 2 } h
91_carlos \sin \theta = \frac { y } { \sqrt { x ^ { 2 } + y ^ { 2 } } }
formulaire012-equation022 s _ { i } s _ { j } = s _ { j } s _ { i }
117_carlos y ^ { 2 } \pm \sqrt { u - p } ( y - \frac { q } { 2 ( u - p ) } ) + \frac { u } { 2 } = 0
200923-1251-288 z \leq R
85_Fabricio ( a \frac { 1 - t ^ { 2 } } { 1 + t ^ { 2 } } , \frac { 2 b t } { 1 + t ^ { 2 } } )
2009213-137-210 R
MfrDB2064 \alpha + b = c
MfrDB1685 ( y - 3 ) ( y + 3 ) + y ( y + 3 ) = 0
formulaire032-equation069 \alpha _ { m i n }
MfrDB2090 \frac { \sqrt { 9 9 x ^ { 7 } } } { 1 1 x ^ { 3 } }
127_alfonso n ! - 1
2009213-139-88 0 . 7
formulaire039-equation012 e ^ { a t }
200923-131-150 t N
formulaire029-equation054 h = - r
formulaire029-equation009 \lim _ { X \rightarrow + \infty } \int _ { 0 } ^ { X } f ( x ) d x
KME2G3_19_sub_74 \int _ { \log 3 } ^ { 0 } \frac { 1 } { e ^ { t } + 1 } d t
formulaire006-equation037 - a ^ { n } = - a \times a \times a \times \ldots \times a
90_rosario y = r \sin \theta
200922-1017-124 i
formulaire004-equation029 ( p , l )
MfrDB2447 F ( x , y , z ) = G ( x , y ) + H ( y , z ) + 2 1
2009213-137-54 \log _ { 2 } ( 2 ^ { 5 } ) = 5
200924-1331-266 G _ { h } ^ { Y - v }
200923-1553-74 \theta < \sqrt { z }
200922-949-196 v - \sqrt { o }
200923-131-70 o P
MfrDB2439 \lim _ { n \rightarrow \infty } n ^ { \frac { 1 } { n } } = 1
92_lucelia y = \frac { x \prime \sin \theta + y \prime \sin ( w \prime + \theta ) } { \sin w }
118_leo P ( x ) = \sum _ { i = 0 } ^ { n } a _ { j } x ^ { j }
formulaire011-equation039 g _ { a } ( r ) = m - 1
2009220-1327-74 e _ { f _ { g _ { h } } }
formulaire029-equation006 n = 5
76_carlos a = b \cos C + c \cos B
MfrDB2292 3 x - 5 < - 2
2009213-139-232 4
2009210-947-53 - j _ { y _ { b } }
formulaire033-equation016 3 - \alpha
200924-1312-61 k ^ { 3 } + 1 4 k ^ { 2 } - 1 3 2 k + 1 7 8 9
116_hirata x = \frac { - b \pm \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
formulaire012-equation037 \lim _ { x \rightarrow - \infty } f ( x ) = - \infty
formulaire021-equation067 p ( z )
formulaire020-equation069 r = \frac { p } { 1 + e } = a - c
formulaire033-equation002 ( x ^ { 0 } , x ^ { 1 } , x ^ { 2 } , x ^ { 3 } ) = ( t , r , \theta , \phi )
formulaire034-equation029 ( b , a , a )
2009212-1031-86 t
200926-1617-252 C
200923-1251-137 R
formulaire004-equation018 - 9 0 a _ { 6 } a _ { 5 } a _ { 4 } + 1 3 5 a _ { 6 } ^ { 2 } a _ { 3 } = 0
formulaire018-equation061 \alpha + \gamma = \beta
200923-1251-225 0 . 4
formulaire038-equation072 w = x y z
formulaire010-equation012 f ( z ) = ( z - z _ { j } ) ^ { n _ { j } } g ( z )
200922-1017-54 \log _ { 2 } ( 2 ^ { 5 } ) = 5
126_edwin | x - \frac { p _ { n } } { q _ { n } } | \leq \frac { 1 } { q _ { n } q _ { n + 1 } } < \frac { 1 } { q _ { n } ^ { 2 } }
MfrDB0166 2 x + 1 = 5
131_rosario f ( x ) = a _ { n } x ^ { n } + a _ { n - 1 } x ^ { n - 1 } + \cdots + a _ { 1 } x + a _ { 0 }
76_leissi a = b \cos C + c \cos B
MfrDB2079 1 2 3 4 + 5 6 7 8 > 9 0
MfrDB2895 \sqrt [ n ] { \frac { n + 1 } { ( n - 1 ) ^ { 2 } } }
106_Nina y ^ { 4 } + y + 1 = 0
2009213-137-52 z
200926-131-52 - y E
2009213-137-200 h v
formulaire016-equation040 1 7 8 / 4 1 \geq 3
formulaire028-equation009 ( x _ { 1 } , \ldots , x _ { p } )
formulaire036-equation073 Y = \frac { 1 } { 1 + e ^ { - X } }
formulaire002-equation031 f _ { i } ( x ^ { a } )
2009213-137-116 \sqrt { w + v }
formulaire030-equation072 z ^ { 1 } ( X ) = \sum _ { i = 1 } ^ { n } x _ { i } p _ { i } ^ { 1 }
MfrDB1245 \frac { 1 0 0 ! } { 9 7 ! \cdot 6 ! }
200923-1253-2 \int e ^ { x ^ { 2 } } x ^ { 3 } d x
formulaire017-equation005 ( ( 8 6 - 9 1 ) / 1 2 0 ) - ( 3 0 / 7 1 ) \leq 0
formulaire003-equation031 2 ^ { 1 8 }
200923-1254-65 \sqrt { x - X }
formulaire015-equation001 c = 1 3
formulaire032-equation049 \frac { p } { 2 }
formulaire013-equation046 \frac { \sin x } { x } = \frac { \sin x - \sin 0 } { x - 0 }
200926-1550-42 \frac { 1 } { 3 } \pi r ^ { 2 } h
200926-1617-82 \lambda + 6
formulaire006-equation071 d g _ { \beta } = d g _ { \alpha }
formulaire023-equation029 x \rightarrow e ^ { s x }
formulaire020-equation067 a = 0 , 8 4
200924-1331-112 s
200922-947-177 t
2009213-139-192 z _ { N }
200922-947-155 \sqrt { \cdots + N }
formulaire022-equation003 \frac { 1 } { r ^ { d } }
formulaire029-equation025 1 7 7 + 1 5 3 - 1 7 2 \leq 1 5 8
200923-131-101 u _ { x }
4_em_26 G \neq \{ e \}
formulaire001-equation051 \beta ( s )
200923-1553-84 P k
MfrDB0742 3 \times 3
200924-1312-239 \sqrt { \beta - Y _ { k } }
200923-1553-261 - d + y
200923-1251-13 \sqrt { 1 + \sqrt { 1 + z ^ { 2 } } }
formulaire006-equation026 ( x + 1 ) ( 8 x ^ { 3 } - 4 x ^ { 2 } - 4 x + 1 ) = 0
200923-1253-226 [ y + s ]
200923-1253-168 Y
MfrDB2870 \frac { 1 } { n ^ { 2 } } \leq \frac { 1 } { n - 1 } - \frac { 1 } { n }
MfrDB1843 2 \log ( x - 3 ) = \log ( 5 - x )
90_herbert y = r \sin \theta
200923-131-1 \int _ { 0 } ^ { \infty } \frac { z } { \sqrt { z ^ { 3 } + 1 4 } } d z
200924-1312-263 \sum _ { Y > S } m + p
formulaire004-equation049 ( p , g , h )
200923-1254-229 - i
formulaire020-equation055 ( 8 9 - ( 8 6 \times 4 ) ) / ( ( 1 9 6 / 1 6 8 ) + 1 2 5 ) \leq - 1
2009220-1327-13 \sqrt { 1 + \sqrt { 1 + z ^ { 2 } } }
200923-1254-130 A
formulaire010-equation059 a ^ { i j } = g ^ { i k } g ^ { j l } a _ { k l }
formulaire015-equation058 x = 1
formulaire034-equation049 u _ { n + 1 } = ( n + 1 ) u _ { n }
200923-131-254 P
MfrDB2957 | \int \limits _ { a } ^ { b } f ( x ) d x | \leq \int \limits _ { a } ^ { b } | f ( x ) | d x
MfrDB0131 x = 3 ^ { 2 }
MfrDB2047 \sqrt { a ^ { 3 } } + a ^ { 4 }
formulaire036-equation023 g ( z ) = z ^ { 2 } f ( z )
MfrDB2991 \sum _ { n = 1 } ^ { \infty } ( \frac { \sum _ { i = 1 } ^ { n } a _ { i } } { n } ) ^ { p } < ( \frac { p } { p - 1 } ) ^ { p } \sum _ { n = 1 } ^ { \infty } a _ { n } ^ { p }
2009220-1327-85 \sqrt { \frac { 2 z ^ { 3 } } { \sqrt { \frac { 3 z ^ { 2 } } { \sqrt { 4 z } } } } }
2009213-137-48 \sin ( \frac { \pi } { 3 } ) = \frac { 1 } { 2 }
KME2G3_30_sub_30 \sum _ { i = 2 n + 3 m } ^ { 1 0 } i x
200923-1254-141 X
200923-1254-185 - 5 A
formulaire004-equation000 ( ( 5 6 \times 5 2 ) \div 1 3 5 ) + ( 3 4 - ( 7 4 \times 9 2 ) ) \geq - 6 7 5 2
formulaire022-equation064 ( 5 , 7 )
2009210-947-132 - \int _ { z } ^ { j } n d X
formulaire019-equation058 \frac { 2 } { 1 5 } \times 7 \times \frac { 1 } { 1 1 } = \frac { 2 \times 7 } { 1 5 } \times \frac { 1 } { 1 1 }
formulaire026-equation026 n ( n ^ { 2 } + 2 )
MfrDB1621 \int 2 x d x = x ^ { 2 } + C
formulaire021-equation052 a ^ { i j }
200926-1617-210 2 . 4
MfrDB1524 | a - b | \leq | a - c | + | c - b |
MfrDB2842 \sqrt { a } = 2 ^ { - n } \sqrt { 4 ^ { n } a }
200923-1254-123 [ P + \beta ]
formulaire033-equation037 u ^ { n } = \sum _ { i = 0 } ^ { n - 1 } ( - 1 ) ^ { i } \beta ^ { n - 1 - i } \gamma ^ { i }
200926-1550-60 \frac { \beta + \gamma } { \theta }
formulaire022-equation036 \cos ( 3 a ) = 4 \cos ^ { 3 } ( a ) - 3 \cos ( a )
formulaire005-equation057 z = f ( u ) + g ( v )
200923-1553-42 \frac { 1 } { 3 } \pi r ^ { 2 } h
formulaire011-equation051 r \sqrt { \pi }
200925-1126-210 6 4 . 4
formulaire038-equation023 y = \sqrt { x }
formulaire032-equation033 r ( 0 )
2009210-947-7 \sum _ { m } f ( m + 3 )
200922-949-206 - 7 . 0
200923-1251-26 a + \frac { \sqrt { b + c } } { 2 }
formulaire018-equation052 ( n _ { 1 } , n _ { 2 } )
formulaire005-equation028 x ^ { 2 } + 2 x + 1 = 0
107_daniel a ^ { 2 } + b ^ { 2 } = ( a + b i ) ( a - b i )
formulaire024-equation055 9 5 \pm 1 1 9 \times ( 1 8 7 \div ( 3 9 + 2 4 ) )
200926-1550-66 \frac { \sqrt { 1 + \cos ^ { 2 } ( \theta ) } } { 2 } = \cos ( 2 \theta )
200924-1331-47 t
formulaire009-equation063 \sin ^ { 2 } ( x ) ( 1 - \sin ^ { 2 } ( y ) ) = \sin ^ { 2 } ( y ) ( 1 - \sin ^ { 2 } ( x ) )
formulaire012-equation064 \frac { s ^ { 2 } } { l ^ { 2 } }
MfrDB1747 | \sin z | = \sqrt { 1 - \cos ^ { 2 } z }
200923-1553-150 \lambda
KME2G3_5_sub_96 [ b ^ { x } \{ ( \frac { a } { b } ) ^ { x } + 1 \} ] ^ { \frac { 1 } { x } }
200923-1253-176 \cdots - \sum i
131_maira f ( x ) = a _ { n } x ^ { n } + a _ { n - 1 } x ^ { n - 1 } + \cdots + a _ { 1 } x + a _ { 0 }
formulaire032-equation038 1 - x ^ { 2 }
2009213-137-42 \frac { 1 } { 3 } \pi r ^ { 2 } h
formulaire005-equation060 3 2 \pm 1 2 \times 1 5
200923-1253-211 9 6
KME2G3_12_sub_65 [ \frac { 2 } { 3 } x ^ { \frac { 3 } { 2 } } ] _ { 0 } ^ { 1 }
200923-1553-258 [ \sqrt { \sin ^ { r } v } ^ { u + B E } ]
200923-1253-112 \sum _ { 4 = y } ^ { - d } z - c
MfrDB3033 ( \frac { 1 + x ^ { 2 } } { 1 + y ^ { 2 } } ) ^ { t } \leq 2 ^ { | t | } ( 1 + ( x + y ) ^ { 2 } ) ^ { | t | }
formulaire029-equation065 ( ( 0 \div 5 ) - ( 4 0 \div 2 7 ) ) - 4 8 = - 4 9 . 4 8
200923-1556-137 - \sum m - T
200923-1251-229 \sigma
formulaire039-equation027 \theta _ { m i n }
200924-1312-129 - 0 . 4 \gamma
200923-1251-177 \sqrt { h - X }
formulaire032-equation074 y = p g c d ( x _ { a } - x _ { b } , n )
MfrDB0656 x ^ { 2 } - 4 = 0
KME1G3_6_sub_21 A = \sqrt { a + \frac { 1 } { \sqrt { a + \frac { 1 } { \sqrt { a } } } } } + \sqrt { b }
formulaire003-equation040 6 5 + ( ( 1 2 8 \times 7 7 ) + ( 1 9 / 5 9 ) ) \neq 5 5 6
200924-1331-78 - a
200922-949-174 e
MfrDB2546 f ( x , y ) = \frac { x } { y } + x y
2009213-137-84 \frac { x } { a + \frac { x } { b - \frac { x } { c } } }
200922-949-115 \cdots + H
200923-1556-74 e _ { f _ { g _ { h } } }
200924-1331-148 3 . 2
73_fujita | \frac { a x _ { 0 } + b y _ { 0 } + c } { \sqrt { a ^ { 2 } + b ^ { 2 } } } |
200926-1617-180 \int ^ { S } _ { d - h } \sqrt { g } d E
MfrDB1067 \sqrt { 4 } = 2
formulaire011-equation066 g ( X ) = \sqrt { \sum _ { i = 1 } ^ { n } f _ { i } ( x _ { i } - X ) ^ { 2 } }
200923-1254-105 \sqrt { 8 + l }
2009212-952-80 e ^ { \int x ^ { 2 } d x }
formulaire025-equation071 x ^ { n - 1 }
200926-1617-192 - x
200923-1553-269 5
MfrDB2483 3 ^ { 2 } - 1 = 8
200922-949-121 \alpha _ { z }
formulaire020-equation054 \frac { a _ { 1 } + \ldots + a _ { n } } { b _ { 1 } + \ldots + b _ { n } }
200923-1253-128 \sum _ { v \geq l } X
formulaire002-equation015 8 9 \times ( ( 1 5 5 \times 5 0 ) \div 1 3 2 ) \neq - 1 3 7 2
KME2G3_26_sub_28 z _ { 1 } ^ { 2 } + 1 ^ { z } - z _ { 2 } ^ { 2 } + 2 ^ { z }
KME2G3_22_sub_30 \sum _ { i = 2 n + 3 m } ^ { 1 0 } i x
formulaire011-equation033 x ( 6 - x ) \leq 2 x - 5
MfrDB1800 a _ { 1 } + a _ { 2 }
formulaire001-equation036 \cos x + i \sin x = e ^ { i x }
formulaire025-equation002 ( x _ { b } , y _ { a } )
200924-1331-172 g _ { w }
KME2G3_13_sub_96 [ b ^ { x } \{ ( \frac { a } { b } ) ^ { x } + 1 \} ] ^ { \frac { 1 } { x } }
formulaire011-equation047 Y = X ^ { 2 }
89_alfonso x ^ { \prime } = x \cos \theta + y \sin \theta
MfrDB1576 \int \limits _ { 0 } ^ { 1 } \frac { x ^ { 3 } } { e ^ { x } - 1 } d x = \frac { \pi ^ { 4 } } { 1 5 }
200926-131-122 F
formulaire025-equation004 d t _ { 0 } = \frac { d s } { c }
108_Nina a ^ { x } a ^ { y } = a ^ { x + y }
89_Nina x ^ { \prime } = x \cos \theta + y \sin \theta
200924-1331-192 \mu ( l - I )
200926-1550-108 M < 4 8
2009220-1327-52 t
2009210-947-162 \int s _ { \sigma } d z
MfrDB0005 \lim _ { n \rightarrow \infty } \frac { ( n ! ) ^ { \frac { 1 } { n } } } { n } = e
MfrDB1475 \int \limits _ { 0 } ^ { 1 } \frac { x ^ { 3 } } { e ^ { x } - 1 } d x = \frac { \pi ^ { 4 } } { 1 5 }
2009213-137-78 \frac { x _ { 1 } } { \frac { x _ { 2 } } { \frac { x _ { 3 } } { x _ { 4 } } } }
formulaire011-equation060 ( 1 4 3 - 1 3 5 - 1 9 1 ) / 5 3 \neq 1
MfrDB0524 a = 1 + 2
MfrDB0892 a = b + 1
formulaire002-equation032 n _ { 1 } + \ldots + n _ { j }
200923-131-193 ( - C )
formulaire003-equation000 1 2 \div 7 5 \geq 0
124_miguel \sum _ { i = 1 } ^ { k } \frac { x ^ { a _ { i } } } { 1 - x ^ { b _ { i } } } = \frac { 1 } { 1 - x }
formulaire025-equation068 ( y + z ) \times x = ( y \times x ) + ( z \times x )
200926-1617-118 H - \sum n
200922-949-101 - v + \frac { L } { j }
formulaire012-equation001 \beta ( x )
200924-1331-38 \frac { 4 } { 3 } \pi r ^ { 3 }
MfrDB3027 \sum _ { n = 1 } ^ { \infty } ( b _ { n } - b _ { n + 1 } )
200926-131-228 B P z
MfrDB3045 f ( x , y ) = f _ { 1 } ( x y ) + f _ { 2 } ( \frac { x } { y } )
200925-1126-114 p
formulaire002-equation060 ( 1 3 9 - 5 2 ) / 1 7 2 \leq 1
2009220-1327-115 \pi
MfrDB1503 f ( x , y ) = \frac { x } { y } + x y
200925-1126-160 \sqrt { z }
MfrDB2202 | a - b | \leq | a - c | + | c - b |
formulaire013-equation016 3 \times ( 4 \times x + 1 ) \times ( 5 \times x \times y - 2 ) \times z
formulaire037-equation037 \sum _ { i = 1 } ^ { p } n _ { i } = n
2009213-139-198 I E
200926-131-106 ( ( \int [ o ] d G ) )
8_em_62 \sigma \in G
formulaire023-equation018 \frac { a } { b }
MfrDB2935 \sum _ { n = 0 } ^ { \infty } f _ { n } ( x )
formulaire010-equation056 x ^ { 3 } - 1 = 0
200923-1254-41 H
200923-131-67 \tan ( \frac { \pi } { 4 } ) = 1
KME2G3_14_sub_28 z _ { 1 } ^ { 2 } + 1 ^ { z } - z _ { 2 } ^ { 2 } + 2 ^ { z }
200926-1617-37 1 3 + \pi r ^ { 2 }
200923-1254-78 \frac { x _ { 1 } } { \frac { x _ { 2 } } { \frac { x _ { 3 } } { x _ { 4 } } } }
200924-1331-288 - \sigma
formulaire003-equation046 x ^ { 5 } + x + a
200923-1251-123 \sqrt { 4 - C }
93_leissi r ( r _ { 0 } \sin ( \theta - \theta _ { 0 } ) - r _ { 1 } \sin ( \theta - \theta _ { 1 } ) ) = r _ { 0 } r _ { 1 } \sin ( \theta _ { 1 } - \theta _ { 0 } )
formulaire008-equation070 1 9 9 - 1 5 1 = 4 8
200922-1017-73 a ^ { b ^ { c ^ { d } } }
2009210-947-201 h
MfrDB1780 \sqrt [ 5 ] { 5 5 }
200925-1126-82 - \theta n _ { Y }
formulaire003-equation073 2 ^ { 5 } + 2 + 1
200925-1126-64 y
131_caue f ( x ) = a _ { n } x ^ { n } + a _ { n - 1 } x ^ { n - 1 } + \cdots + a _ { 1 } x + a _ { 0 }
2009213-137-203 3 - \alpha G
92_leissi y = \frac { x \prime \sin \theta + y \prime \sin ( w \prime + \theta ) } { \sin w }
MfrDB1187 1 + 1 = 2
MfrDB0117 k = \frac { n \pi } { L }
formulaire016-equation049 \forall x , y
formulaire024-equation025 1 5 0 - ( ( 6 9 / 7 7 ) / 2 6 ) \neq - 1 0 7
formulaire038-equation001 a _ { 2 } x ^ { 2 } + b _ { 2 } x + c _ { 2 }
formulaire039-equation065 ( 1 3 0 \times ( 1 2 5 \times 8 5 ) ) + 1 5 2 = 1 3 8 1 4 0 2
200926-1617-176 \sum I
MfrDB2775 \cos ^ { 3 } y = \frac { 1 } { 4 } ( \cos 3 y + 3 \cos y )
76_alfonso a = b \cos C + c \cos B
2009213-137-195 ( [ X ] )
formulaire022-equation069 \lim _ { n } \frac { 1 } { n } \sum _ { k = 0 } ^ { n - 1 } f ( X _ { k } )
200923-1556-38 \frac { 4 } { 3 } \pi r ^ { 3 }
2009212-1031-53 X \neq F
formulaire010-equation044 \frac { d x } { d t } = f ( x )
MfrDB0158 1 + 1
2009210-947-235 w a \leq \sum S
200922-949-262 n ^ { B }
200923-1254-21 4
200923-1556-114 \sqrt { G }
116_Frank x = \frac { - b \pm \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
formulaire035-equation049 ( \gamma _ { x } ( t ) , \gamma _ { y } ( t ) )
2009210-947-30 \frac { - b + \sqrt { b ^ { 2 } - 4 a c } } { 2 a }
MfrDB2158 1 + \tan ^ { 2 } y = \frac { 1 } { \cos ^ { 2 } y }
200923-131-156 i z a
200923-1251-107 9 5 9
formulaire007-equation018 y ^ { 2 } = \frac { x ^ { 3 } } { 2 a - x }
93_herbert r ( r _ { 0 } \sin ( \theta - \theta _ { 0 } ) - r _ { 1 } \sin ( \theta - \theta _ { 1 } ) ) = r _ { 0 } r _ { 1 } \sin ( \theta _ { 1 } - \theta _ { 0 } )
MfrDB1257 \sqrt [ 3 ] { \frac { z ^ { 3 } + 2 } { \sqrt { z } + 1 } }
200926-1617-138 - M
200923-1251-19 x ^ { 2 } + y ^ { 2 } = z ^ { 2 }
formulaire038-equation032 a _ { i } , a _ { j }
200923-1251-216 \frac { \cdots + \sum H } { f }
formulaire024-equation022 ( u _ { i } ^ { n } )
200923-131-130 a
MfrDB2048 \sin x ^ { 2 }
MfrDB2432 E _ { k } = \frac { 1 } { 2 } m _ { 1 } v _ { 1 } ^ { 2 } + \frac { 1 } { 2 } m _ { 2 } v _ { 2 } ^ { 2 }
200923-131-350 m
formulaire028-equation067 f _ { 2 } , g _ { 2 }
2009212-952-22 \cdots - \sum T
200923-1253-190 \sqrt { - x - \int M d T }
formulaire010-equation022 2 ^ { m ^ { p } }
130_hirata \frac { 1 } { 4 } + ( \frac { 1 } { 4 } ) ^ { 2 } + ( \frac { 1 } { 4 } ) ^ { 3 } + \cdots = \frac { 1 } { 3 }
200923-1553-297 - v + [ l ]
126_Nina | x - \frac { p _ { n } } { q _ { n } } | \leq \frac { 1 } { q _ { n } q _ { n + 1 } } < \frac { 1 } { q _ { n } ^ { 2 } }
200922-947-7 \sum _ { m } f ( m + 3 )
KME2G3_25_sub_38 \frac { 2 } { \frac { 3 m - 2 n \times 9 ^ { n } - 9 ^ { m } } { 2 n - 1 } }
200924-1331-35 u _ { z _ { o } }
formulaire039-equation063 ( x ^ { 2 } + 1 ) \sin ( x )
70_Frank \cos \theta = \frac { x } { \sqrt { x ^ { 2 } + y ^ { 2 } } }
2009212-952-49 \cos ( 0 ) = 1
formulaire037-equation013 a _ { n } = \sin ( 2 n x )
2009213-139-248 w X
200923-1553-164 l - 5
200923-1556-0 \sin ^ { 2 } ( x ) + \cos ^ { 2 } ( x ) = 1
2009213-139-179 ( 5 . 0 )
formulaire031-equation027 m - g + 1
formulaire031-equation018 5 x - \frac { 1 } { 4 } x + \frac { 1 } { 4 } = 1
200925-1126-208 \frac { \sqrt { x } } { \frac { \mu } { \sqrt { r } } }
2009210-947-192 z ^ { \Delta } \mu
200923-1556-59 9 . 8
formulaire013-equation023 2 e _ { 1 }
200924-1312-121 \cdots - c ^ { m - M E }
formulaire021-equation035 ( ( 1 5 1 + 2 3 ) - ( 1 8 3 \times 1 2 6 ) ) + 1 5 3 = - 2 2 7 3 1
formulaire001-equation023 e ^ { - 1 }
MfrDB3017 | \int \limits _ { a } ^ { b } f ( x ) d x | \leq \int \limits _ { a } ^ { b } | f ( x ) | d x
200923-131-107 \pi
formulaire034-equation039 d ( p ^ { 2 } - q ^ { 2 } ) , 2 p d q , d ( p ^ { 2 } + q ^ { 2 } )
200922-1017-33 t + Y _ { d }
formulaire024-equation041 \frac { 1 } { 4 } a a + b b
MfrDB1667 a _ { 1 } + a _ { 2 }
131_Nina f ( x ) = a _ { n } x ^ { n } + a _ { n - 1 } x ^ { n - 1 } + \cdots + a _ { 1 } x + a _ { 0 }
formulaire004-equation003 \theta _ { 2 } = \theta
formulaire021-equation002 y _ { 1 } + \ldots + y _ { n + 1 } = 0
2009210-947-224 7 . 5
KME2G3_25_sub_35 \log _ { 2 } \frac { 1 } { 2 } + \log _ { 4 } \frac { 2 } { 4 }
MfrDB1265 \int \limits _ { 0 } ^ { \infty } \sqrt { x } e ^ { - x } d x = \frac { 1 } { 2 } \sqrt { \pi }
formulaire017-equation021 5 \times 1 0 ^ { 1 9 }
200924-1331-238 \frac { a } { \phi } \frac { s } { V }
KME2G3_27_sub_22 x _ { x } ^ { x } + y _ { y } ^ { y } + z _ { z } ^ { z } - x - y - z
formulaire007-equation038 ( a + c ) ^ { 2 } = 1 2
formulaire034-equation051 2 k + 1
200924-1312-307 \beta
formulaire015-equation006 1 0 ^ { 1 5 }
MfrDB2520 \int \limits _ { 0 } ^ { 1 } \sqrt { x } d x
200922-1017-104 4 . 7
formulaire026-equation058 a _ { 0 } = a
200922-949-227 \frac { p } { \sqrt { o - d + 4 } }
formulaire039-equation008 ( 5 n ^ { 2 } - n ) + 1
2009220-1327-68 \tan ( \frac { \pi } { 2 } ) = \infty