help me please, thank youu!

Help Me Please, Thank Youu!

Answers

Answer 1

Answer:

1. Cannot be side lengths

2. Can be side lengths

3. Can be side lengths

4. Cannot be side

Step-by-step explanation:

it can be side lengths when the largest side is equal to the sum of the two other


Related Questions

Can someone help me with this?

Answers

Answer:

Step-by-step explanation:

Something to those numbers equals 90 degrees so I think plug in 36 divided by 90 and then you will get your answer I did this before but it has been a while if you get it wrong my apologies.

x = 33*

explanation:
you would use supplementary and linear pair relationships to solve

once you have 2 angle measures, you can find the third by subtracting it from 180 bc the sum of a triangle = 180 degrees
Other Questions
Imagine you have to explain what the Bureau of Linguistical Reality is to a friend who has never heard of it --what would you say?Please Help 100 Points How effective do you think courts are in finding out the truth? you have just won the lottery and will receive a lump sum payment of $23.49 million after taxes. instead of immediately spending your money, you plan to deposit all of the money into an account that will earn 5.53 percent. if you make equal annual withdrawals for the next 35 years, how much can you withdraw each year starting exactly one year from now? Objective: 1. To apply programming using while loops 2. To determine roots of functions using the bisection method Problem 1 Write a function taylorcosi ne that takes two arguments: the first argument is the angle in radians, and the second argument the relative percentage error, and has two return values: first return value is the Taylor approximation for the cosine of the angle entered and the second is the number of terms required in the Taylor series to reach this level of error. You must use while loops. The Taylor expansion off(x)=cosxaboutx=0is given bycosx=1 2!x 2+ 4!x 4 6!x 6+Suppose we want to find the approximate value of the function atx= 3with an error tolerance of0.1%. We should be able to call the function as follows:{val, nsteps]=taylorcosine( 3,1e3). Note relative error is defined a: To find percentage relative error, multiply by 100. Write a function myBi section that takes three arguments: the first argument is a function handie, the second argument is an array containing the lower and upper limits of the starting interval, and the third argument is the maximum allowable relative error. The return value of the function is the estimate of the root. Error here is defined is the absolute value of the ratio of the difference between the old and the new estimates of the root and the new estimate of the root. i.e. error= x newx nnwx eld Test this function on examples we have done in class. For example,f(x)=x 23x+2with an initial bracket of[1.33.0]and an error tolerance of1% When businesses employ social networking a part of their culture, employees should take which of the following steps? in ms. q's deck of cards, every card is one of four colors (red, green, blue, and yellow), and is labeled with one of seven numbers (1,2, 3, 4, 5 6, and 7). among all the cards of each color, there is exactly one card labeled with each number. the cards in ms. q's deck are shown below. professor grok draws two cards from ms. q's deck at random without replacement. what is the probability that the first card grok draws has an even number, and the second card grok draws has an odd number? HELPPPP PLSSSSStop & Shop is having a sale on paper towels: 5 rolls for $3. How much will 1 roll(s) cost? 3(w-2) 10 3w 212 w24 Tort is a French word meaning ______. Wrong. if you had to make a 5 mm solution of nacl in water and you needed 250 ml, how many grams of nacl would you need? (the molecular weight of nacl is 58.44 g/mole. which of the following is a term that can be used instead of dorsal? view available hint(s)for part e which of the following is a term that can be used instead of dorsal? distal ventral posterior lateral describe one time where your god/goddess interacts with another god/goddess or describe one time where your god/goddess interacts with a mortal.artemis symbol greek mythology 1.3 descriptive and possessive adjectives actividades los posesivos listen to each phrase or sentence, then select the possessive adjective that agrees with the noun mentioned in the phrase. amanda and steve smith are married and file jointly. during 2020 they paid state property taxes of $15,000 and state income taxes of $2,000. if they decided to itemize their deductions what amount of combined property and state income taxes can amanda and steve claim on their schedule a - itemized deductions? when methanol dissolves in water, what IMFs are overcome in the solvent? he nurse instructs a client on foods to increase total fiber intake to 25 grams/day. which breakfast choice indicate that teaching has been effective? Which topics are likely to be critiqued in Southern gothic literature? Check all that apply. if the data show that 63% of respondents favor capital punishment (63.2% favor capital punishment; gss, 2018), what will be your best estimate of the percentage(s) of adult americans who feel this way? last year's simplified financial statements for adeyemi cycles are shown below. assume there are no income taxes. the firm is forecasting a sales increase of 11 percent. assets and expenses are proportional to sales, but debt and equity are not. the firm does not plan to pay dividends. how much external financing will adeyemi need to support its growth? Step 7 - Descriptive Statistics - Points Scored By Your Time in Away Games The management also wants you to run descriptive statistics on the points scored by your team in games played at opponent's venue (Away) in 2013-2015. They want you to analyze measures of central tendency (e.g. mean, median) and measures of spread (e.g. standard deviation) in explaining if the team is doing better in Home games compared to Away games. Calculate descriptive statistics including the mean, median, variance, and standard deviation for points scored by your team played in opponent's venue (Away). Make the following edits to the code block below: You are to write this code block yourself. Use Step 6 to help you write this code block. Here is some information that will help you write this code block. 1. Since you are calculating statistics for games played at opponent's venue, game_location variable should be set to 'A'. 2. Functions for all statistics are the same as those in step 6. 3. Your statistics should be rounded to two decimal places. Write your code in the code block section below. After you are done, click this block of code and hit the Run button above. Reach out to your instructor if you need more help with this step. [ ]: # Write your code in this code block. Step 6: Descriptive Statistics: Points Scored By Your Time in Home Games The management of your team wants you to run descriptive statistics on the points scored by your team in the games played at your team's venue in 2013-2015. Calculate descriptive statistics including the mean, median, variance, and standard deviation for points scored by your team played at Home. Make the following edits to the code block below: 1. Replace ??MEAN_FUNCTION?? with the name of Python function that calculates the mean. 2. Replace ??MEDIAN_FUNCTION?? with the name of Python function that calculates the median. 3. Replace ??VAR_FUNCTION?? with the name of Python function that calculates the variance. 4. Replace ??STD_FUNCTION?? with the name of Python function that calculates the standard deviation. After you are done with your edits, click the block of code below and hit the Run button above. In [ ]: print("Points Scored by Your Team in Home Games (2013 to 2015)") print("-- --") your_team_home_df = your_team_df [your_team_df [ 'game_location'] == 'H']. copy() #---- TODO: make your edits here mean = your_team_home_df['pts'].??MEAN_FUNCTION?? () median = your_team_home_df['pts'].??MEDIAN_FUNCTION?? () your_team_home_df['pts'].??VAR_FUNCTION?? () your_team_home_df['pts'].??STD_FUNCTION?? () variance stdeviation = = print('Mean =', round (mean, 2)) print('Median =', round (median, 2)) print('Variance =', round(variance, 2)) print('Standard Deviation =', round(stdeviation, 2))