Questions   
Sort: 
 #1
avatar+9476 
+4

To use the sum and difference formulas, we need to find  cos(a),  cos(B),  sin(a),  sin(B),  tan(a)  and  tan(B).

Using the information given, we can find these values with the Pythagorean theorem.

 

 

\(\text{1)}\qquad\sin(a+B)\,=\,\sin( a)\cos (B)+\cos(a)\sin(B)\\~\\ \phantom{\text{1)}\qquad\sin(a+B)\,}=\,(\frac{5}{13})(-\frac12)+(-\frac{12}{13})(\frac{\sqrt3}{2})\\~\\ \phantom{\text{1)}\qquad\sin(a+B)\,}=\,-\frac{5}{26}-\frac{12\sqrt3}{26}\\~\\ \phantom{\text{1)}\qquad\sin(a+B)\,}=\,\frac{-5-12\sqrt3}{26}\\~\\ \text{2)}\qquad\cos(a+B)\,=\,\cos(a)\cos(B)-\sin(a)\sin(B)\\~\\ \phantom{\text{2)}\qquad\cos(a+B)\,}=\,(-\frac{12}{13})(-\frac{1}{2})-(\frac{5}{13})(\frac{\sqrt3}{2})\\~\\ \phantom{\text{2)}\qquad\cos(a+B)\,}=\,\frac{12}{26}-\frac{5\sqrt3}{26}\\~\\ \phantom{\text{2)}\qquad\cos(a+B)\,}=\,\frac{12-5\sqrt3}{26}\\~\\ \text{3)}\qquad\sin(a-B)\,=\,\sin(a)\cos(B)-\cos(a)\sin(B)\\~\\ \phantom{\text{3)}\qquad\sin(a-B)\,}=\,(\frac{5}{13})(-\frac12)-(-\frac{12}{13})(\frac{\sqrt3}{2})\\~\\ \phantom{\text{3)}\qquad\sin(a-B)\,}=\,-\frac{5}{26}+\frac{12\sqrt3}{26}\\~\\ \phantom{\text{3)}\qquad\sin(a-B)\,}=\,\frac{12\sqrt3-5}{26}\\~\\ \text{4)}\qquad\tan(a-B)\,=\,\frac{\tan(a)-\tan(B)}{1+\tan(a)\tan(B)}\\~\\ \phantom{\text{4)}\qquad\tan(a-B)\,}=\,\frac{-\frac{5}{12}--\frac{\sqrt3}{1}}{1+(-\frac{5}{12})(-\frac{\sqrt3}{1})}\\~\\ \phantom{\text{4)}\qquad\tan(a-B)\,}=\,\frac{-\frac{5}{12}+\sqrt3}{1+\frac{5\sqrt3}{12}}\\~\\ \phantom{\text{4)}\qquad\tan(a-B)\,}=\,\frac{-\frac{5}{12}+\sqrt3}{1+\frac{5\sqrt3}{12}}\cdot\frac{12}{12}\\~\\ \phantom{\text{4)}\qquad\tan(a-B)\,}=\,\frac{-5+12\sqrt3}{12+5\sqrt3}\)

.
May 10, 2019
 #6
avatar+2489 
+3

In this post, https://web2.0calc.com/questions/how-to-find-a-if-i-know-b-and-a-2-a-1-b#r1

Alan presents two (2) solution methods (Lambert W function and Newton-Raphson) to solve for an unknown variable that appears both inside and outside an exponential function.  Very Cool!

 

 

GA

May 10, 2019
 #5
avatar+2489 
+3

Here, a well-presented solution by Anthrax.

https://web2.0calc.com/questions/help_82659#r2

By adapting the logical and mathematical equivalence of the Floor Function to an inequality, Anthrax demonstrates with details how to solve for integers in a range. A praise-worthy solution presentation by a gifted and practiced mathematician –quickly recognized as such by Hectictar.  

 

 

GA

May 10, 2019
 #4
avatar+2489 
+3

Here is an excellent presentation for a solution by Hectictar.

https://web2.0calc.com/questions/help_97441#r1

The elements of the collective problem and equation are dissembled into key points, each with a detailed explanation for its derivation. When combined, the narrative presents as a textbook-worthy, expository solution for a potentially confusing problem.

 

 

GA

May 10, 2019
 #2
avatar+315 
+1
May 10, 2019
 #2
avatar+315 
+1
May 10, 2019
 #1
avatar
+1

%%time c=0 for n in range(1,1001): if((n ** 100) - 1) % 1000==0: c=c+1 print(n, end=", ") print("Total = ", c)

n=1, 3, 7, 9, 11, 13, 17, 19, 21, 23, 27, 29, 31, 33, 37, 39, 41, 43, 47, 49, 51, 53, 57, 59, 61, 63, 67, 69, 71, 73, 77, 79, 81, 83, 87, 89, 91, 93, 97, 99, 101, 103, 107, 109, 111, 113, 117, 119, 121, 123, 127, 129, 131, 133, 137, 139, 141, 143, 147, 149, 151, 153, 157, 159, 161, 163, 167, 169, 171, 173, 177, 179, 181, 183, 187, 189, 191, 193, 197, 199, 201, 203, 207, 209, 211, 213, 217, 219, 221, 223, 227, 229, 231, 233, 237, 239, 241, 243, 247, 249, 251, 253, 257, 259, 261, 263, 267, 269, 271, 273, 277, 279, 281, 283, 287, 289, 291, 293, 297, 299, 301, 303, 307, 309, 311, 313, 317, 319, 321, 323, 327, 329, 331, 333, 337, 339, 341, 343, 347, 349, 351, 353, 357, 359, 361, 363, 367, 369, 371, 373, 377, 379, 381, 383, 387, 389, 391, 393, 397, 399, 401, 403, 407, 409, 411, 413, 417, 419, 421, 423, 427, 429, 431, 433, 437, 439, 441, 443, 447, 449, 451, 453, 457, 459, 461, 463, 467, 469, 471, 473, 477, 479, 481, 483, 487, 489, 491, 493, 497, 499, 501, 503, 507, 509, 511, 513, 517, 519, 521, 523, 527, 529, 531, 533, 537, 539, 541, 543, 547, 549, 551, 553, 557, 559, 561, 563, 567, 569, 571, 573, 577, 579, 581, 583, 587, 589, 591, 593, 597, 599, 601, 603, 607, 609, 611, 613, 617, 619, 621, 623, 627, 629, 631, 633, 637, 639, 641, 643, 647, 649, 651, 653, 657, 659, 661, 663, 667, 669, 671, 673, 677, 679, 681, 683, 687, 689, 691, 693, 697, 699, 701, 703, 707, 709, 711, 713, 717, 719, 721, 723, 727, 729, 731, 733, 737, 739, 741, 743, 747, 749, 751, 753, 757, 759, 761, 763, 767, 769, 771, 773, 777, 779, 781, 783, 787, 789, 791, 793, 797, 799, 801, 803, 807, 809, 811, 813, 817, 819, 821, 823, 827, 829, 831, 833, 837, 839, 841, 843, 847, 849, 851, 853, 857, 859, 861, 863, 867, 869, 871, 873, 877, 879, 881, 883, 887, 889, 891, 893, 897, 899, 901, 903, 907, 909, 911, 913, 917, 919, 921, 923, 927, 929, 931, 933, 937, 939, 941, 943, 947, 949, 951, 953, 957, 959, 961, 963, 967, 969, 971, 973, 977, 979, 981, 983, 987, 989, 991, 993, 997, 999, Total = 400 >>Wall time: 11 ms

May 10, 2019

3 Online Users

avatar
avatar