import math
def fun_mat_1(x):
    if x <= -1.0:
        y = (5*x-1)/math.sqrt(abs(x-1))
    else:
        y = 2**x
    return float(y)
