Question

In: Nursing

Use this drug Dayvigo (lemborexant) and create a brochure includes the following elements: • Drug Class...

Use this drug Dayvigo (lemborexant) and create a brochure includes the following elements: • Drug Class • Mechanism of Action • Drug Administration and Dosage • Drug Interactions • Lab effects/interference • Special Considerations • Potential Side Effects/Adverse Effects/Toxicities Highest Performance Includes all elements High Performance Includes six elements Includes five elements Needs Improvement Includes four-element This criterion is linked to a Learning OutcomeBrochure: Patient Education Considerations Presentation of information on the brochure is accurate and includes the following elements: • Nursing Management • Patient Education Considerations • Patient Assessment • Potential Side Effects/Adverse Effects/Toxicities • Special considerations pts Highest Performance Includes all elements. High Performance Includes four elements 15.0 pts Satisfactory Performance Includes three elements. Needs Improvement This criterion is linked to a Learning OutcomeBrochure: Visual Effects/Creativity Presentation of information on the brochure is accurate and includes the following elements: • Developed per the required standard • Appropriate for the intended audience Visually appealing

Solutions

Expert Solution

DAYVIGO (LEMBOREXANT )

It contains lemborexant an orexin receptor antagonist.

MECHANISM OF ACTION

The orexin neuropeptide signaling system plays a role in wakefullness.Blocking the binding of wake-promoting neuropeptides orexin A and orexin B to receptors OX!R and OX2R is thought to supress wake drive.

DRUG ADMINISTRATION AND DOSAGE

This tablets are intended for oral administration .Each filim coated tablet contains 5mg or 10 mg of lemborexant.The inactive ingredients are hydroxypropyl cellulose ,lactose monohydrate ,low substituted hydroxypropyl cellulose and magnesium stearate.

The recommended dosage of DAYVIGO is 5 mg taken no more than per night,immediatly before going to bed with at least 7 hours remaining before the planned time of awakening .The dose may be increased to the maximum recommended dose 10mg based on clinical response and tolerability.

LAB EFFECTS

In clinical studies this drug helped people with insomnia fall asleep faster and stay asllep longer compared to placebo.The effects of DAYVIGO at first use were generally consistent with later timepoints.

POTENTIAL SIDE EFFECTS.

DAYVIGO may cause serious side effects including decressed daytime alertness and impaired ability to operate avechicle.

  • CNS Depressent effects and daytime impairement
  • Sleep paralysis,Hypnagogic Hallucinations and Cataplexy like symptoms.
  • Complex sleep behaviours

Special precautions.

DAYVIGO is a central nervous system depressent thta can impair daytime weakfulness even when used as prescribedd.

Driving ability was impaired ,

DRUG INTERACTIONS

Lemborexant co adminsterd with alcohol produced a numerically greater negative impact on postural stability and memory as compared with alcohol alone at approxximately 2 hours post dose.


Related Solutions

Simple Java class. Create a class Sportscar that inherits from the Car class includes the following:...
Simple Java class. Create a class Sportscar that inherits from the Car class includes the following: a variable roof that holds type of roof (ex: convertible, hard-top,softtop) a variable doors that holds the car's number of doors(ex: 2,4) implement the changespeed method to add 20 to the speed each time its called add exception handling to the changespeed method to keep soeed under 65 implement the sound method to print "brooom" to the screen. create one constructor that accepts the...
You receive a brochure from a large university. The brochure indicates that the mean class size...
You receive a brochure from a large university. The brochure indicates that the mean class size for​ full-time faculty is fewer than 33 students. You want to test this claim. You randomly select 18 classes taught by​ full-time faculty and determine the class size of each. The results are shown in the table below. At alphaequals0.10​, can you support the​ university's claim? Complete parts​ (a) through​ (d) below. Assume the population is normally distributed. 38 29 27 35 35 37...
You receive a brochure from a large university. The brochure indicates that the mean class size...
You receive a brochure from a large university. The brochure indicates that the mean class size for​ full-time faculty is fewer than 3333 students. You want to test this claim. You randomly select 1818 classes taught by​ full-time faculty and determine the class size of each. The results are shown in the table below. At alphaαequals=0.100.10​, can you support the​ university's claim? Complete parts​ (a) through​ (d) below. Assume the population is normally distributed. 3737 3030 2828 3535 3535 3838...
Java Project Tasks: Create a Coin.java class that includes the following:             Takes in a coin...
Java Project Tasks: Create a Coin.java class that includes the following:             Takes in a coin name as part of the constructor and stores it in a private string             Has a method that returns the coins name             Has an abstract getvalue method Create four children classes of Coin.java with the names Penny, Nickle, Dime, and Quarter that includes the following:             A constructor that passes the coins name to the parent             A private variable that defines the...
Create a C# Application. Create a class object called “Employee” which includes the following private variables:...
Create a C# Application. Create a class object called “Employee” which includes the following private variables: firstN lastN idNum wage: holds how much the person makes per hour weekHrsWkd: holds how many total hours the person worked each week regHrsAmt: initialize to a fixed amount of 40 using constructor. regPay otPay After going over the regular hours, the employee gets 1.5x the wage for each additional hour worked. Methods: constructor properties CalcPay(): Calculate the regular pay and overtime pay. Create...
Create a class named CollegeCourse that includes the following data fields: dept (String) - holds the...
Create a class named CollegeCourse that includes the following data fields: dept (String) - holds the department (for example, ENG) id (int) - the course number (for example, 101) credits (double) - the credits (for example, 3) price (double) - the fee for the course (for example, $360). All of the fields are required as arguments to the constructor, except for the fee, which is calculated at $120 per credit hour. Include a display() method that displays the course data....
java Objective: Create a class. Create objects. Use methods of a class. Create a class BankAccount...
java Objective: Create a class. Create objects. Use methods of a class. Create a class BankAccount to represent a bank account according to the following requirements: A bank account has three attributes: accountnumber, balance and customer name. Add a constructor without parameters. In the initialization of the attributes, set the number and the balance to zero and the customer name to an empty string. Add a constructor with three parameters to initialize all the attributes by specific values. Add a...
Exercise #1: Create an abstract class called GameTester. The GameTester class includes a name for the...
Exercise #1: Create an abstract class called GameTester. The GameTester class includes a name for the game tester and a boolean value representing the status (full-time, part-time). Include an abstract method to determine the salary, with full-time game testers getting a base salary of $3000 and part-time game testers getting $20 per hour. Create two subclasses called FullTimeGameTester, PartTimeGameTester. Create a console application that demonstrates how to create objects of both subclasses. Allow the user to choose game tester type...
Complete the following tasks: a. Create a class named Trip that includes four string variables: destination...
Complete the following tasks: a. Create a class named Trip that includes four string variables: destination (for example, “London”), means of transportation (for example, “air”), departure date (for example, “12/15/2015”), and trip's purpose (for example, “business”). Include two overloaded constructors. The default constructor sets each field to “XXX”. The nondefault constructor accepts four parameters—one for each field. Include two overloaded display() methods. The parameterless version displays all the Trip details. The second version accepts a string that represents a destination...
Java (a) Create a class Router which stores the information of a router. It includes the...
Java (a) Create a class Router which stores the information of a router. It includes the brand, the model number (String) and the price (double, in dollars). Write a constructor of the class to so that the information mentioned is initialized when a Router object is created. Also write the getter methods for those variables. Finally add a method toString() to return the router information in the following string form. "brand: Linksys, model number: RVS4000, price: 1080.0" Copy the content...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT